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).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/SpherePuzzle (content was: "Seems to work, but what is the point? It looks like a beach ball... ==SpherePuzzle.cxx== <source lang="cpp"> #include <vtkSpherePuzzle.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { //Create a sphere vtkSmartPointer<vtkSpherePuzzle> spherePuzzle = vtkSmartPointer<vtkSpherePuzzle>::New();...")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/TextExtraction (content was: "VTK must be built with VTK_USE_TEXTANALYSIS turned ON. ==TextExtraction.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkTextExtraction.h> int main(int, char*[]) { vtkSmartPointer<vtkTextExtraction> textExtraction = vtkSmartPointer<vtkTextExtraction>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/ThreadedExample (content was: "==ThreadedExample.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> int main(int, char *[]) { return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/TransposeMatrix (content was: "==TransposeMatrix.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkTransposeMatrix.h> int main(int, char *[]) { vtkSmartPointer<vtkTransposeMatrix> transposeMatrix = vtkSmartPointer<vtkTransposeMatrix>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Visualization/GlyphTable (content was: "How to specify which values get which glyphs? ==GlyphTable.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPointData.h> #include <vtkCubeSource.h> #include <vtkConeSource.h> #include <vtkSphereSource.h> #include <vtkGlyph3D.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkFloatArray.h> int main(int, char *[]) { vtkSmartPointer<vtkSphereSource>...")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Visualization/ViewOrder (content was: "The BuildLocator() method in vtkKdTree can be used to order cells from a viewing direction. The vtkKdTree region Ids are returned from the ViewOrderAllRegions() method sorted from front to back in the specified direction. The visualization for this example is currently broken. vtkKdTree is returning an incorrect number of regions. ==ViewOrder.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkProperty.h> #include <vtkPointData.h> #include <vtkLookupTable.h>...")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/VolumeRendering/FixedPointRayCastImage (content was: "==FixedPointRayCastImage.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkFixedPointRayCastImage.h> int main(int, char *[]) { vtkSmartPointer<vtkFixedPointRayCastImage> image = vtkSmartPointer<vtkFixedPointRayCastImage>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Widgets/ContinuousValueWidget (content was: "==ContinuousValueWidget.cxx== <source lang="cpp"> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkContinuousValueWidget.h> #include <vtkCommand.h> int main(int, char *[]) { vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); // Create a...")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Widgets/PlaybackWidget (content was: "==PlaybackWidget.cxx== <source lang="cpp"> #include "vtkSmartPointer.h" #include "vtkPlaybackWidget.h" #include "vtkPlaybackRepresentation.h" #include "vtkSphereSource.h" #include "vtkPolyDataMapper.h" #include "vtkActor.h" #include "vtkRenderer.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkCommand.h" #include "vtkInteractorEventRecorder.h" class vtkSubclassPlaybackRepresentation : public vtkPlaybackRepresentation { public: static vtkSub...")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/CMakeTechniques/CheckForModule (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/CMakeTechniques/CheckForModule CheckForModule] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/CompositeData/CompositePolyDataMapper (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/CompositeData/CompositePolyDataMapper CompositePolyDataMapper] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/CompositeData/Generate2DAMRDataSetWithPulse (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/CompositeData/Generate2DAMRDataSetWithPulse Generate2DAMRDataSetWithPulse] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/CompositeData/Generate3DAMRDataSetWithPulse (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/CompositeData/Generate3DAMRDataSetWithPulse Generate3DAMRDataSetWithPulse] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/CompositeData/MultiBlockDataSet (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_CompositeData_TestMultiBlockDataSet.png</div> ==MultiBlockDataSet.cxx== <source lang="cpp"> // Demonstrates how to make and use VTK's MultiBlock type data #include <vtkActor.h> #include <vtkCompositeDataGeometryFilter.h> #include <vtkExtractEdges.h> #include <vtkMultiBlockDataSet.h> #include <vtkPolyDataMapper.h> #inc...", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/CompositeData/OverlappingAMR (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/CompositeData/OverlappingAMR OverlappingAMR] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/BuildLocatorFromKClosestPoints (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/BuildLocatorFromKClosestPoints BuildLocatorFromKClosestPoints] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/BuildOctree (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/BuildOctree BuildOctree] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/ClosestNPoints (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/ClosestNPoints ClosestNPoints] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/DataStructureComparison (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/DataStructureComparison DataStructureComparison] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/IncrementalOctreePointLocator (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/IncrementalOctreePointLocator IncrementalOctreePointLocator] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/KDTreeAccessPoints (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KDTreeAccessPoints KDTreeAccessPoints] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/KDTreeFindPointsWithinRadius (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KDTreeFindPointsWithinRadius KDTreeFindPointsWithinRadius] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/KDTreeTimingDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KDTreeTimingDemo KDTreeTimingDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/KdTree (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KdTree KdTree] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/KdTreePointLocator/ClosestNPoints (content was: "==ClosestNPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkPointSource.h> #include <vtkPolyData.h> #include <vtkCellArray.h> #include <vtkIdList.h> #include <vtkKdTreePointLocator.h> int main(int, char *[]) { //Create some random points vtkSmartPointer<vtkPointSource> pointSource = vtkSmartPointer<vtkPointSource>::New(); pointSource->SetNumberOfPoints(10); pointSource->Update(); //Create the tree vtkSmartPo...")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/KdTreePointLocatorClosestPoint (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KdTreePointLocatorClosestPoint KdTreePointLocatorClosestPoint] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/ModifiedBSPTree/VisualizeModifiedBSPTree (content was: "<div class="floatright">File:VTK_Examples_Baseline_DataStructuresModifiedBSPTree_TestVisualizeModifiedBSPTree.png</div> Prior to August 20, 2010, the vtkModifiedBSPTree.cxx did not produce a proper data representation. To operate properly, update your vtk source tree. ==VisualizeModifiedBSPTree.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkPointSource.h> #include <vtkSphereSource.h> #include <vtkModifiedBSPTree.h> #include <vtkSmartPointer.h> #include <vtkP...")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/ModifiedBSPTreeExtractCells (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/ModifiedBSPTreeExtractCells ModifiedBSPTreeExtractCells] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/ModifiedBSPTreeIntersectWithLine (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/ModifiedBSPTreeIntersectWithLine ModifiedBSPTreeIntersectWithLine] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/ModifiedBSPTreeTimingDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/ModifiedBSPTreeTimingDemo ModifiedBSPTreeTimingDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OBBTreeExtractCells (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OBBTreeExtractCells OBBTreeExtractCells] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OBBTreeIntersectWithLine (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OBBTreeIntersectWithLine OBBTreeIntersectWithLine] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OBBTreeTimingDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OBBTreeTimingDemo OBBTreeTimingDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OctreeClosestPoint (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeClosestPoint OctreeClosestPoint] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OctreeFindPointsWithinRadius (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeFindPointsWithinRadius OctreeFindPointsWithinRadius] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OctreeKClosestPoints (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeFindPointsWithinRadius OctreeFindPointsWithinRadius] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OctreeVisualize (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeTimingDemo OctreeTimingDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/OctreeTimingDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeKClosestPoints OctreeKClosestPoints] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/VisualizeKDTree (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeVisualize OctreeVisualize] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/VisualizeModifiedBSPTree (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/VisualizeKDTree VisualizeKDTree] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:32, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/DataStructures/VisualizeOBBTree (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/VisualizeOBBTree VisualizeOBBTree] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Annotation/MultiLineText (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Annotation/MultiLineText MultiLineText] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Annotation/TextOrigin (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Annotation/TextOrigin TextOrigin] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Annotation/XYPlot (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Annotation/XYPlot XYPlot] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/ColoredLines (content was: "This example creates two lines and colors one red and one green. Be sure to changed "Color by" to "Colors" and uncheck "Map Scalars" to see these lines correctly in Paraview! ===ColoredLines.cxx=== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCellArray.h> #include <vtkCellData.h> #include <vtkDoubleArray.h> #include <vtkPoints.h> #include <vtkLine.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataWriter.h> int main(int, char *[]) { //create three points....")
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Cube (content was: "This example creates a cube and writes it to a file. ==Cube.cxx== <source lang="cpp"> #include <vtkCubeSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkXMLPolyDataWriter.h> int main(int, char *[]) { //Create a cube. vtkSmartPointer<vtkCubeSource> cubeSource = vtkSmartPointer<vtkCubeSource>::New(); cubeSource->SetCenter(0.0, 0.0, 0.0); cubeSource->SetXLength(.5); cubeSource->SetYLength(.5); cubeSource->SetZLength(.5); cubeSource->...")
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Frustum (content was: "This example gets the frustum of a camera and converts it to a PolyData. ==Frustum.cxx== <source lang="cpp"> #include <vtkFrustumSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkXMLPolyDataWriter.h> #include <vtkCamera.h> #include <vtkPlanes.h> int main(int, char *[]) { //Create a camera. vtkSmartPointer<vtkCamera> camera = vtkSmartPointer<vtkCamera>::New(); double planesArray[24]; //Get the data from the camera describing the frustum pl...")
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Line (content was: "This example creates a line. ==Line.cxx== <source lang="cpp"> #include <vtkCellArray.h> #include <vtkPoints.h> #include <vtkLine.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataWriter.h> #include <vtkSmartPointer.h> int main(int, char *[]) { //create two points, P0 and P1 double P0[3] = {1.0, 0.0, 0.0}; double P1[3] = {0.0, 1.0, 0.0}; //add the two poitns to a vtkPoints object vtkSmartPointer<vtkPoints> pts = vtkSmartPointer<vtkPoints>::New(); pts->Inse...")
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Plane (content was: "This example creates a plane. ==Plane.cxx== <source lang="cpp"> #include <vtkXMLPolyDataWriter.h> #include <vtkPlaneSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> int main(int, char *[]) { vtkSmartPointer<vtkPlaneSource> plane = vtkSmartPointer<vtkPlaneSource>::New(); plane->SetCenter(1.0, 0.0, 0.0); plane->SetNormal(1.0, 0.0, 0.0); vtkPolyData* pdata = plane->GetOutput(); //write the file vtkSmartPointer<vtkXMLPolyDataWriter> writer...")
- 02:30, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/PlatonicSolid (content was: "==PlatonicSolidSource.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPlatonicSolidSource.h> #include <vtkXMLPolyDataWriter.h> int main(int, char *[]) { vtkSmartPointer<vtkPlatonicSolidSource> platonicSolidSource = vtkSmartPointer<vtkPlatonicSolidSource>::New(); platonicSolidSource->SetSolidTypeToOctahedron(); platonicSolidSource->Update(); vtkSmartPointer<vtkXMLPolyDataWriter> writer = vtkSmartPointer<vtkXMLPolyDataWriter>::New();...")