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:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/ProgGlyph (content was: "File:VTK_Examples_Python_Visualization_ProgGlyph.png ==ProgrammableGlyphs.py== <source lang="python"> #!/usr/bin/env python import vtk # Python example translated directly from Tcl test # [vtk_source]/Graphics/Testing/Tcl/progGlyphs.tcl res = 6 plane = vtk.vtkPlaneSource() plane.SetResolution(res, res) colors = vtk.vtkElevationFilter() colors.SetInputConnection(plane.GetOutputPort()) colors.SetLowPoint(-0.25, -0.25, -0.25) colors.SetHighPoint(0.25, 0.25, 0.25) planeMa...")
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/PointSize (content was: "==PointSize.py== <source lang="python"> import vtk # create a rendering window and renderer ren = vtk.vtkRenderer() renWin = vtk.vtkRenderWindow() renWin.AddRenderer(ren) # create a renderwindowinteractor iren = vtk.vtkRenderWindowInteractor() iren.SetRenderWindow(renWin) # create source src = vtk.vtkPointSource() src.SetCenter(0,0,0) src.SetNumberOfPoints(50) src.SetRadius(5) src.Update() # mapper mapper = vtk.vtkPolyDataMapper() mapper.SetInput(src.GetOutput()) # acto...")
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/NamedColors (content was: "==Description== This example demonstrates the usage of the vtkNamedColors class. Some helper functions are also implemented. A cone is created and contoured using the BandedPolyDataContourFilter, it is then colored using a lookup table where the colors have been assigned using color names. A list of available color names and any synonyms are also output. ==NamedColors.py=...", and the only contributor was "Amaclean" (talk))
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/NamedColorPatches (content was: "==Description== This example shows how to produce a HTML page called VTKNamedColorPatches.html showing the available colors in {{VTKDoxygenURL|vtkNamedColors}}. It also shows how to select the text color based on luminance. In this case Digital CCIR601 is used which gives less weight to the red and blue compon...", and the only contributor was "Amaclean" (talk))
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Images/ImageViewer2 (content was: "This example is currently broken. Shouldn't the image stay facing the camera? ==ImageViewer2.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkImageViewer2.h> #include <vtkImageCanvasSource2D.h> int main(int argc, char* argv[]) { vtkSmartPointer<vtkImageCanvasSource2D> drawing = vtkSmartPointer<vtkImageCanvasSource2D>::New(); drawing->SetScalarTypeToUnsigned...")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Implicit/MarchingContourFilter (content was: "==MarchingContourFilter.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkXMLPolyDataWriter.h> #include <vtkCellData.h> #include <vtkDoubleArray.h> #include <vtkPointData.h> #include <vtkPolyLine.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRendere...", and the only contributor was "Daviddoria" (talk))
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/KdTreeSelector (content was: "==KdTreeSelector.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkKdTreeSelector.h> int main(int, char *[]) { vtkSmartPointer<vtkKdTreeSelector> selector = vtkSmartPointer<vtkKdTreeSelector>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Math/DiagonalMatrixSource (content was: "==DiagonalMatrixSource.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkDiagonalMatrixSource.h> int main(int, char *[]) { vtkSmartPointer<vtkDiagonalMatrixSource> diagonalMatrixSource = vtkSmartPointer<vtkDiagonalMatrixSource>::New(); diagonalMatrixSource->SetExtents(5); diagonalMatrixSource->Update(); diagonalMatrixSource->Print(std::cout); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Medical/GenerateCubesFromLabels (content before blanking was: "#REDIRECT VTK/Examples/Cxx/Medical/GenerateCubesFromLabels")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/PolyData/DeleteCell (content was: "This example currently crashes. I tried this with lines and it doesn't work (crashes). The documentation says only works with polys - so wait for this functionality to be added? ==DeleteCell.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <vtkPoints.h> #include <vtkVertexGlyphFilter.h> #include <vtkXMLPolyDataWriter.h> #include <vtkCellArray.h> #include <vtkLine.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRende...")
- 02:33, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/PolyData/DeletePoints (content was: "==DeletePoints.cxx== <source lang="cpp"> #include <vtkActor.h> #include <vtkCellArray.h> #include <vtkLine.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> int main(int, char *[]) { vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); points->InsertNextPoint(0,0,0); points->InsertNextPoint(1,0,0)...")
- 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].''' =")