VTK/Examples/Cxx/SimpleOperations/ProjectPointPlane: Revision history

From KitwarePublic
Jump to navigationJump to search

There is no edit history for this page.

This page does not exist. The deletion, protection, and move log for the page are provided below for reference.

  • 03:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/SimpleOperations/ProjectPointPlane (content was: "This example projects a point onto a plane. To use this example, you must have the CVSHEAD version of VTK (as of 2/2/2010). ==ProjectPointPlane.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPlane.h> int main(int, char *[]) { vtkSmartPointer<vtkPlane> plane = vtkSmartPointer<vtkPlane>::New(); plane->SetOrigin(0.0, 0.0, 0.0); plane->SetNormal(0.0, 0.0, 1.0); double p[3] = {23.1, 54.6, 9.2}; double origin[3] = {0.0, 0.0, 0.0}; double n...")