Deletion log

From KitwarePublic
Jump to navigationJump to search

Below is a list of the most recent deletions.

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] << ", "...")