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/Widgets/CompassWidget (content was: "File:VTK_Examples_Python_Widgets_CompassWidget.png Draws an interactive compass. * Contributed by Jothy ==Build Requirements== VTK_USE_GEOVIS:BOOL=ON (For VTK < VTK 5.4). ==CompassWidget.py== <source lang="python"> #!/usr/bin/env python import vtk # sphere sphereSource = vtk.vtkSphereSource() sphereSource.SetCenter(0.0, 0.0, 0.0) sphereSource.SetRadius(4.0) mapper = vtk.vtkPolyDataMapper() if vtk.VTK_MAJOR_VERSION <= 5: mapper.SetInput(sphereSource.GetOutput())...")
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Widgets/BoxWidget (content was: "File:VTK_Examples_Python_Widgets_BoxWidget.png An example that shows how to use the BoxWidget to interactively scale and rotate and object. ==BoxWidget.py== <source lang="python"> import vtk # Call back function to resize the cone def boxCallback(obj, event): t = vtk.vtkTransform() obj.GetTransform(t) obj.GetProp3D().SetUserTransform( t ) # Create a Cone...", and the only contributor was "Onlyjus" (talk))
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Widgets/BalloonWidget (content was: "File:VTK_Examples_Python_Widgets_BalloonWidget-1.png File:VTK_Examples_Python_Widgets_BalloonWidget-2.png ==BalloonWidget.py== <source lang="python"> #!/usr/bin/env python import vtk # Sphere sphereSource = vtk.vtkSphereSource() sphereSource.SetCenter(-4.0, 0.0, 0.0) sphereSource.SetRadius(4.0) sphereMapper = vtk.vtkPolyDataMapper() sphereMapper.SetInputConnection(sphereSource.GetOutputPort()) sphereActor = vtk.vtkActor() sphereActor.SetMapper(sphereMapper)...")
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Web/vtk-js (content was: "File:WarpScalar.jpgFile:HttpSceneLoader.jpg [http://kitware.github.io/vtk-js/ vtk.js] is an ES6 JavaScript class library which can be integrated into any web application. The toolkit leverages WebGL and supports a wide variety of visualization algorithms including scalar, vector, tensor, texture, and volumetric methods. The [http://kitware.github.io/vtk-...", and the only contributor was "Aron.helser" (talk))
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Web/RemoteRenderer (content was: "VTK can be used as a remote renderer for a web page. Each user connecting to a web page starts a VTK process on the server, which renders into a VTK window, captures the result, and pushes the images to the client web page. This example server is taken from the ParaViewWeb [https://kitware.github.io/paraviewweb/examples/RemoteRenderer.html RemoteRender example]....", and the only contributor was "Aron.helser" (talk))
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/VTKNamedColorPatches html (content was: "==Colors available in vtkNamedColors== <p>The class vtkNamedColors provides color names and their values for the convenience of the user.</p> <p>The following tables show the available colors along with their red, green and blue values.</p> ==Web color Names== These colors correspond to those in [http://en.wikipedia.org/wiki/Web_colors Web Colors]. <table style="font-size...", and the only contributor was "Amaclean" (talk))
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/Streamlines (content was: "<div class="floatright">File:VTK_Examples_Baseline_Visualization_TestStreamLines.png</div> *Translated to python from the .cxx examples ==Streamlines.py== <source lang="python"> #!/usr/bin/env python # import os # os.chdir("VTKData/Data") import vtk pl3d = vtk.vtkMultiBlockPLOT3DReader() xyx_file = "combxyz.bin" q_file = "combq.bin" pl3d.SetXYZFileName(xyx_fil...", and the only contributor was "Diego0020" (talk))
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/SphereTexture (content was: "File:VTK_Examples_Python_Visualization_SphereTexture.png This example shows how to apply an vtkImageData texture to an sphere vtkPolyData object. There is a sample data file [http://public.kitware.com/cgi-bin/viewcvs.cgi/Data/masonry-wide.jpg?root=VTKData&view=log here] ==SphereTexture.py== <source lang="python"> #!/usr/bin/env python ## # This example shows how to apply an vtkImageData texture to an sphere # vtkPolyData object. # Note: Input jpg file can be located in...")
- 02:35, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Python/Visualization/QuadraticSurface (content was: "* Converted from c++ by Jim McCusker ==QuadraticSurface.py== <source lang="python"> #!/usr/bin/python from vtk import * def Sphere(): # create the quadric function definition quadric = vtkQuadric() quadric.SetCoefficients(1,1,1,0,0,0,0,0,0,0) # F(x,y,z) = a0*x^2 + a1*y^2 + a2*z^2 + a3*x*y + a4*y*z + a5*x*z + a6*x + a7*y + a8*z + a9 # F(x,y,...", and the only contributor was "Daviddoria" (talk))
- 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].''' =")