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)- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/DotProduct (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestDotProduct.png</div> This example demonstrates how to take the pixel-wise dot product of two vector images. The output is a scalar image. Two images, each 2x2x1, are created and filled with 3-vectors. The dot product of each pair of corresponding pixels is produced by the vtkImageDotProduct filter and output to the screen. ==DotProduct.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer....")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/DrawOnAnImage (content was: "<div class="floatright">300px</div> This example draws a circle in the center of the input image using {{class|vtkImageCanvasSource2D}}'s <code>DrawCircle</code> method. ==DrawOnAnImage.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkJPEGReader.h> #include <vtkImageData.h> #include <vtkImageMapper3D.h> #include...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/DrawShapes (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestDrawingShapes.png</div> ==DrawShapes.cxx== <source lang="cpp"> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkImageData.h> #include <vtkSmartPointer.h> #include <vtkImageViewer2.h> #include <vtkImageCanvasSource2D.h> int main(int, char *[]) { // Create a blank, black image vtkSmartPointer<vtkImageCanvasSource2D> drawing = vtkSmartPointer<vtkIma...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ExtractComponents (content was: "<div class="floatright">600px</div> This example separates an image into the red channel, the green channel, and the blue channel using {{class|vtkImageExtractComponents}}. For the reverse operation, see [[../CombiningRGBChannels]]. ==ExtractComponents.cxx== <source lang="cpp" highlight="4,32-36,55-57,70,82-87,108"> #include <vtkImageData.h> #include <vtkJPEGReader.h> #include <vtkSmartPointer.h> #include <vtkIma...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/FillWindow (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Images_TestFillWindow.png</div> ==FillWindow.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkCamera.h> #include <vtkImageMandelbrotSource.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageSlice.h> #include <vtkImageSliceMapper.h> #include <vtkImageCast.h> #include <vtkImageMappe...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/Flip (content was: "<div class="floatright">600px</div> This example demonstrates how to flip an image over an axis. Need a better source image (non-symmetrical!). ==Flip.cxx== <source lang="cpp"> #include <vtkImageData.h> #include <vtkImageCast.h> #include <vtkSmartPointer.h> #include <vtkImageMapper3D.h> #include <vtkImageFlip.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/Gradient (content was: "<div class="floatcenter">600px</div> Find the gradient vector of an image at every pixel. Display the original image, the x component of the gradient, the y component of the gradient, and the gradient itself. The example takes an optional .jpeg image file. * Thanks to Eric Monson. ==Gradient.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkVersion.h> #include <vtkImageData.h> #include <vtkDoubleArray....")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageAccumulate (content was: "==ImageAccumulate.cxx== <source lang="cpp"> * In this example, the resulting histogram has 6 pixels (all of them) in the 3rd bin (value = 2) and zero in the rest of the bins: #include <vtkVersion.h> #include <vtkImageAccumulate.h> #include <vtkImageData.h> #include <vtkSmartPointer.h> static void CreateImage(vtkSmartPointer<vtkImageData> image); int main(int, char *[] ) { vtkSmartPointer<vtkImageData> image = vtkSmartPointer<vtkImageData>::New(); CreateImage(image)...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/ImageAccumulateGreyscale (content was: "<div class="floatright">300px</div> ==ImageAccumulateGreyscale.cxx== <source lang="cpp"> #include <vtkActor.h> #include <vtkBarChartActor.h> #include <vtkFieldData.h> #include <vtkImageAccumulate.h> #include <vtkImageData.h> #include <vtkImageExtractComponents.h> #include <vtkIntArray.h> #include <vtkJPEGReader.h> #include <vtkLegendBoxActor.h> #include <vtkProperty2D.h> #include <vtkRenderer.h> #include <vt...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/PointOccupancy (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestPointOccupancy.png</div> '''NOTE: The classes used in this example require vtk 7.1 or later.''' ==PointOccupancy.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPointSource.h> #include <vtkPLYReader.h> #include <vtkSTLReader.h> #include <vtkXMLPolyDataReader.h> #include <vtkOBJReader.h>...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/NormalEstimation (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestNormalEstimation.png</div> ==NormalEstimation.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPCANormalEstimation.h> #include <vtkPointSource.h> #include <vtkSphereSource.h> #include <vtkArrowSource.h> #include <vtkGlyph3D.h> #include <vtkMath.h> #include <vtkPolyDataMapper.h> #include <...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/MaskPointsFilter (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestMaskPointsFilter.png</div> '''NOTE: The classes used in this example require vtk 7.1 or later.''' ==MaskPointsFilter.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMaskPointsFilter.h> #include <vtkBoundedPointSource.h> #include <vtkImageData.h> #include <vtkCone.h> #include <vtkSampleI...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/FitImplicitFunction (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestFitImplicitFunction.png</div> ==FitImplicitFunction.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkFitImplicitFunction.h> #include <vtkBoundedPointSource.h> #include <vtkSphere.h> #include <vtkSphereSource.h> #include <vtkGlyph3D.h> #include <vtkMath.h> #include <vtkPolyDataMapper.h> #i...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/ExtractSurfaceDemo (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Filters_TestExtractSurfaceDemo.png</div> This example loosely follows the most excellent paper by Curless and Levoy: [https://graphics.stanford.edu/papers/volrange "A Volumetric Method for Building Complex Models from Range Images."] First it estimates normals from the points, then creates a signed distance field, fol...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/ExtractSurface (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Filters_TestExtractSurface.png</div> This example loosely follows the most excellent paper by Curless and Levoy: [https://graphics.stanford.edu/papers/volrange "A Volumetric Method for Building Complex Models from Range Images."] First it estimates normals from the points, then creates a signed distance field, followe...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/ExtractPointsDemo (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestExtractPoints.png</div> Demonstrates point extraction from four implicit functions: sphere, cone, cylinder and superquadric. '''NOTE: The classes used in this example require vtk 7.1 or later.''' ==ExtractPointsDemo.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkExtractPoints.h> #inclu...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/ExtractCluster (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Points_TestExtractClusters.png</div> This example extracts clusters of points. The points lie on spheres that are randomly placed. Each cluster has a different color. The number of extracted clusters may be less that the number of random spheres, if the points on one sphere are within the specified distance of points o...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Points/DensifyPoints (content was: "<div class="floatright">File:VTK_Examples_Baseline_Points_TestDensifyPoints.png</div> In this example, the original points are yellow and the added points are red. The image was produced using [https://github.com/lorensen/VTKWikiExamples/raw/master/Testing/Data/Torso.vtp this torso dataset] ==DensifyPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/StackedPlot (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestStackedPlot.png</div> ==StackedPlot.cxx== <source lang="cpp"> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkSmartPointer.h> #include <vtkChartXY.h> #include <vtkPlot.h> #include <vtkAxis.h> #include <vtkPlotStacked.h> #include <vtkColor.h> #include <vtkColorSeries.h> #include <vtkTable.h> #include <vtkIntArray.h> #include <vtkDoubleArray.h> #include <vtkStringArray.h> #include <vtkContextVi...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/StackedBar (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestStackedBar.png</div> ==StackedBar.cxx== <source lang="cpp"> #include "vtkSmartPointer.h" #include "vtkRenderer.h" #include "vtkRenderWindow.h" #include "vtkChartXY.h" #include "vtkChartLegend.h" #include "vtkPlotBar.h" #include "vtkAxis.h" #include "vtkTable.h" #include "vtkIntArray.h" #include "vtkDoubleA...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/ScatterPlot (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestScatterPlot.png</div> ==ScatterPlot.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkChartXY.h> #include <vtkContextScene.h> #include <vtkContextView.h> #include <vtkFloatArray.h> #include <vtkPlotPoints.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkTable.h> int main(int, char*[]) { // Set up a 2D scene...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/PieChart (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestPieChart.png</div> ==PieChart.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkSmartPointer.h> #include <vtkChartPie.h> #include <vtkPlot.h> #include <vtkPlotPie.h> #include <vtkTable.h> #include <vtkIntArray.h> #include <vtkStringArray.h> #include <vtkContextView.h> #include <vtkContextScene.h> #include <vtkRenderWindowInteractor.h> #include <...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/ParallelCoordinates (content was: "<div class="floatright">300px</div> ==ParallelCoordinates.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkSmartPointer.h> #include <vtkChartParallelCoordinates.h> #include <vtkPlot.h> #include <vtkTable.h> #include <vtkFloatArray.h> #include <vtkContextView.h> #include <vtkContextScene.h> #include <vtkRenderWindowInteractor.h> int main(int, c...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/LinePlot (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestChart.png</div> This example demonstrates how to plot XY data. ==LinePlot.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderWindow.h> #include <vtkSmartPointer.h> #include <vtkChartXY.h> #include <vtkTable.h> #include <vtkPlot.h> #include <vtkFloatArray.h> #include <vtkContextView.h> #include <vtkContextScene.h> #include <vtkPen...")
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/Diagram (content was: "<div class="floatright">300px</div> ==Diagram.cxx== <source lang="cpp"> #include "vtkRenderer.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkSmartPointer.h" #include "vtkObjectFactory.h" #include "vtkContext2D.h" #include "vtkContextItem.h" #include "vtkContextActor.h" #include "vtk...", and the only contributor was "Lorensen" (talk))
- 03:03, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/BarChart (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestBarChart.png</div> ==BarChart.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkSmartPointer.h> #include <vtkChartXY.h> #include <vtkPlot.h> #include <vtkTable.h> #include <vtkIntArray.h> #include <vtkContextView.h> #include <vtkContextScene.h> #include <vtkRenderWindowInteractor.h> #define VTK_CREATE(type, name) \ vtkSmartPointer<type> name...")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Plotting/BoxChart (content was: "<div class="floatright">File:VTK_Examples_Baseline_Plotting_TestBoxChart.png</div> This example demonstrates how to generate a [https://en.wikipedia.org/wiki/Box_plot box plot]. The example uses data from [https://en.wikipedia.org/wiki/Michelson%E2%80%93Morley_experiment the Michelson Morley experiment]. Compare the wiki example output with the [https://upload.wikimedi...", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Picking/HighlightSelection (content was: "This example demonstrates how to select and highlight cells using a rubber band. Press 'r' to enter selection mode. <div class="floatcenter">File:VTK_Examples_Baseline_Picking_TestHighlightSelection.png</div> ==HighlightSelection.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkActor.h> #include <vtkAreaPicker.h> #include <vtkDataSetMapper.h> #include <vtkDataSetSurfaceFilter.h> #include <vtkExtractPolyDataGeometry.h> #include <vtkIdFilter.h> #include <vtkIdT...")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Picking/HighlightSelectedPoints (content was: "<div class="floatright">File:VTK_Examples_Baseline_Picking_TestHighlightPoints.png</div> This example demonstrates how to select and highlight points using a rubber band. Press 'r' to enter selection mode. Selected points are shown in red. The ids of the selected points are output. ==HighlightSelectedPoints.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPointData.h> #include <vtkIdTypeArray.h> #include <vtkDataSetSurfaceFilter.h...")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Picking/HighlightPickedActor (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Picking/HighlightPickedActor HighlightPickedActor] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Picking/CellPicking (content was: "<div class="floatright">File:VTK_Examples_Baseline_Picking_TestCellPicking.png</div> This example demonstrates how to get the coordinates of the point on an actor that is clicked with the left mouse button. It also indicates which cell the selected point belongs to by highlighting the edges of that cell. ==CellPicking.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkRendererCollection.h> #include <vtkDataSetMapper.h> #include <vtk...")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Parallel/ExodusIIWriter (content was: "Requires VTK to be built with VTK_USE_PARALLEL. ==ExodusIIWriter.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <vtkExodusIIWriter.h> #include <vtkTimeSourceExample.h> int main(int, char *[]) { vtkSmartPointer<vtkTimeSourceExample> timeSource = vtkSmartPointer<vtkTimeSourceExample>::New(); vtkSmartPointer<vtkExodusIIWriter> exodusWriter = vtkSmartPointer<vtkExodusIIWriter>::New(); exodusW...")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Modelling/MarchingSquares (content was: " <div class="floatcenter">File:VTK_Examples_Baseline_Modelling_TestMarchingSquares.png</div> ==MarchingSquares.cxx== <source lang="cpp"> #include "vtkMarchingSquares.h" #include "vtkSmartPointer.h" #include "vtkActor.h" #include "vtkRenderer.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkPNGReader.h" #include "vtkDataSetMapper.h" #...", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Modelling/MarchingCubes (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Modelling/MarchingCubes/ MarchingCubes] on the new VTKExamples website.''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Modelling/ExtractLargestIsosurface (content was: "<div class="floatright">File:VTK_Examples_Baseline_Modelling_TestExtractLargestIsosurface.png</div> * Contributed by: Jinyoung Hwang This example reads a structured points dataset stored in a .vtk file and constructs a 3D model using vtkMarchingCubes. vtkPolyDataConnectivityFilter is used to extract the largest isosurface. Data is available at: 1. test.vtk: http://web.kaist.ac.kr/~hjy/test.vtk 2. brainweb.img: http://web.kaist.ac.kr/~hjy/brainweb.img 3. brainweb.hdr: h...")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Modelling/Delaunay3D (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Modelling/Delaunay3D Delaunay3D] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Modelling/ContourTriangulator (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Modelling/ContourTriangulator ContourTriangulator] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Modelling/Bottle (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Modelling/Bottle Bottle] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/WindowedSincPolyDataFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/WindowedSincPolyDataFilter WindowedSincPolyDataFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/Triangulate (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/Triangulate Triangulate] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/TableBasedClipDataSetWithPolyData (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/TableBasedClipDataSetWithPolyData TableBasedClipDataSetWithPolyData] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/TableBasedClipDataSetWithPolyData2 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/TableBasedClipDataSetWithPolyData2 TableBasedClipDataSetWithPolyData2] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/SubdivisionDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/SubdivisionDemo SubdivisionDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/SplitPolyData (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/SplitPolyData SplitPolyData] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/SolidClip (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/SolidClip SolidClip] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/SimpleElevationFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/SimpleElevationFilter SimpleElevationFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/QuadricDecimation (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/QuadricDecimation QuadricDecimation] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/QuadricClustering (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/QuadricClustering QuadricClustering] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/PointInterpolator (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/PointInterpolator PointInterpolator] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:02, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/OBBDicer (content was: "<div class="floatright">File:VTK_Examples_Baseline_Meshes_TestOBBDicer.png</div> The vtkOBBDicer filter breaks up an input mesh into a number of pieces. The resulting mesh contains scalar point data that can be used to extract the individual pieces with a filter like vtkThresholdFilter. This examples displays the output of vtkOBBDicer with a different color for each piece. ==OBBDicer.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <v...")