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
  • 04:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Tutorials/TriangleGeometryPolygon (content was: "==TrianglePolygon.cxx== <source lang="cpp"> #include <vtkCellArray.h> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkXMLPolyDataWriter.h> #include <vtkPolyData.h> #include <vtkTriangle.h> int main(int argc, char *argv[]) { //setup points (geometry) vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); points->InsertNextPoint ( 1.0, 0.0, 0.0 ); points->InsertNextPoint ( 0.0, 0.0, 0.0 ); points->InsertNextPoint ( 0.0, 1.0, 0.0 ); v...")