All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Utilities/BoundingBox (content was: ":''See also: [[../../PolyData/Outline]] and [[../../Visualization/CubeAxesActor2D]]'' ==BoundingBox.cxx== <source lang="cpp"> #include <vtkBoundingBox.h> int main(int, char *[]) { double p0[3] = {0,0,0}; double p1[3] = {0.5,0.5,0.5}; double p2[3] = {1.0,1.0,1.0}; vtkBoundingBox boundingBox; boundingBox.AddPoint(p0); double bounds[6]; boundingBox.GetBounds(bounds); std::cout << "Bounds: " << bounds[0] << ", " << bounds[1] << ", " << bounds[2] << ", "...")