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)- 01:59, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Visualization/ScalarBarActor (content was: "This example demonstrates how to make a color bar to that reflects the range of values associated with a data set. ==ScalarBarActor.cxx== <source lang="cpp"> #include <vtkActor.h> #include <vtkFloatArray.h> #include <vtkLookupTable.h> #include <vtkPointData.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkScalarBarActor.h> #include <vtkSmartPointer.h> #include <...")
- 01:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/RectangularButtonSource (content was: "==RectangularButtonSource.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkWeakPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkTextActor.h> #include <vtkTextProperty.h> #include <vtkRectangularButtonSource.h> #include <vtkInteractorStyleTrackballActor.h> #include <vtkObjectFactory.h> #i...")
- 01:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/QuadricSurfaceFitting (content was: "This example currently does not work. This example finds the best fit quadric surface through a set of points. [http://www.vtk.org/Wiki/images/1/18/QuadricSurface_InputPoints.vtp Here] is an example data set. ==QuadricSurfaceFitting.cxx== <source lang="cpp"> #include <vtkPolyData.h> #include <vtkImageData.h> #include <vtkXMLPolyDataWriter.h> #include <vtkXMLPolyDataReader.h> #include <vtkSmartPointer.h> #include <vtkMath.h> #include <vtkQuadric.h> #include <vtkContourFilter.h...")
- 01:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/PCAAnalysisFilter (content was: "The eigenvalues vector doesn't seem to be valid. It seems like the eigenvector corresponding to the smallest value is stored as the normal of the cell in the output - how do you get the other two eigen vectors? ==PCAAnalysisFilter.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkFloatArray.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataWriter.h> #include <vtkPlaneSource.h> #include <vtkPCAAnalysisFilter.h> int main(int argc, char *argv[]) { //create...")
- 01:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/Colored2DImageFusion (content was: "<div class="floatright">File:VTK_Examples_Baseline_Images_TestColored2DImageFusion.png</div> This example use the vtkImageBlend class for a simple fusion of two 2D images with different color maps for each of the images. * Contributed by: Tim Hutz ==Colored2DImageFusion.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkDataSet.h> #include <vtkDataSetMapper.h> #include <vtkImageBlend.h> #include <vtkImageData.h> #include <vtkImageMa...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Interaction/RecordEvents (content was: "Record mouse and keyboard events. ==RecordEvents.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorEventRecorder.h> int main(int argc, char*argv[]) { vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); vtkSm...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Interaction/PlayBackEvents (content was: "This example plays back events that have been recorded to a file. ==PlayBackEvents.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorEventRecorder.h> int main(int argc, char*argv[]) { vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New();...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Interaction/Flight (content was: "This example is currently broken. The sphere disappears if you click the left mouse button. The arrow keys do nothing. Left mouse button press produces forward motion. Right mouse button press produces reverse motion. Moving mouse during motion steers user in desired direction. Keyboard controls are: Left/Right/Up/Down Arrows for steering direction 'A' forward, 'Z' reverse motion Ctrl Key causes sidestep instead of steering in mouse and key modes Shift key is accelerator in mo...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/GridPointCloud (content was: "This example is currently broken. We can determine which cell a point is in, but how to determine which points are in a particular cell? This example demonstrates how to overlay a grid structure (vtkImageData) over a set of points (in this case, vtkPolyData). This allows queries such as "Which cell (grid voxel) is a particular point in?" and "Which points are in a particular grid voxel?". ==GridPointCloud.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoi...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Geovis/GeoView (content was: "==GeoView.cxx== <source lang="cpp"> #include <vtkGeoFileTerrainSource.h> #include <vtkGeoView.h> #include <vtkGeoTerrain.h> #include <vtkGeoGlobeSource.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkSmartPointer.h> int main(int argc, char* argv[]) { // Create the geo view. vtkSmartPointer<vtkGeoView> view = vtkSmartPointer<vtkGeoView>::New(); view->DisplayHoverTextOff(); view->GetRenderWindow()->SetMultiSam...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Geovis/GeoGlobeSource (content was: "==GeoGlobeSource.cxx== <source lang="cpp"> #include <vtkGeoGlobeSource.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 argc, char *argv[]) { //Create a sphere vtkSmartPointer<vtkGeoGlobeSource> geoGlobeSource = vtkSmartPointer<vtkGeoGlobeSource>::New(); #if 0 //Create a mapper and actor vtkSmartPoi...")
- 01:57, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/DistanceToCamera (content was: "This example is currently broken. ==DistanceToCamera.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkXMLPolyDataWriter.h> #include <vtkPolyData.h> #include <vtkCellArray.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleTrackballCamera.h> #include <vtkInteractorStyleTrackball.h> #include <vtkDistanceToCamera.h...")
- 01:56, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/DataObjectToTable (content was: "How to get point coordinates into the table? ==DataObjectToTable.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkPolyData.h> #include <vtkDataObjectToTable.h> #include <vtkTable.h> int main(int argc, char *argv[]) { //Create a sphere vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); vtkSmartPointer<vtkDataObjectToTable> dataObjectToTable =...")
- 01:56, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/Cxx/InfoVis/LayoutStrategyComparison (content was: "<div class="floatright">600px</div> For the time being, this won't work properly unless you use the VTK-SideBySideGraphs branch from here: git@github.com:daviddoria/daviddoria-vtk.git ==LayoutStrategyComparison.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkGraphToPolyData.h> #include <vtkDataSetAttributes.h> #include <vtkMutableUndirectedGraph.h> #include <vtkGraphLayoutView.h> #inclu...")
- 01:56, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/CellLinks (content was: "How to use vtkCellLinks::Links class? How to know how many cells GetCells returns? ==CellLinks.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkProperty.h> #include <vtkCellLinks.h> int main(int, char *[]) { //create an image data vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); vtkSmartPointer<vtkCellLinks> cellLinksFilter = vtkSmartPointe...")
- 01:56, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/BoneyardCxx/PolyData/ConvexHullRealData (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestConvexHullReadData.png</div> ==ConvexHullRealData.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkDelaunay3D.h> #include <vtkUnstructuredGrid.h> #include <vtkXMLPolyDataReader.h> #include <vtkXMLPolyDataWriter.h> #include <vtkXMLUnstructuredGridWriter.h> #include <vtkCellArray.h> #include <vtkDataSetSurfaceFilter.h>...")
- 01:56, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/BonePile/ImageThreshold (content was: "Bad page", and the only contributor was "Lorensen" (talk))
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Point (content before blanking was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjectsDisplay_TestDisplayPoint.png</div> ==DisplayPoint.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkCellArray.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkProperty.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { //Create the geo...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Plane (content before blanking was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjectsDisplay_TestDisplayPlane.png</div> ==DisplayPlane.cxx== <source lang="cpp"> #include <vtkPlaneSource.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 plane vtkSmartPointer<vtkPlaneSource> planeSource...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Line (content before blanking was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjectsDisplay_TestDisplayLine.png</div> ==DisplayLine.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkLineSource.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkProperty.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { //create two points, P0 and P1 double...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/KWWidgets/SideBySideRenderWindows (content was: "Not supporting KWWidgets on the VTK examples wiki. ==SideBySideRenderWindows.cxx== <source lang="cpp"> #include <vtkKWApplication.h> #include <vtkKWRenderWidget.h> #include <vtkKWWindow.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkRenderWindow.h> #include <vtkSphereSource.h> #include <vtkCubeSource.h> #include <vtkActor.h> int main(int argc, char *argv[]) { // Initialize Tcl Tcl_Interp *interp = vtkKWApplication::InitializeTcl(argc, argv, &...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Frustum (content before blanking was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjectsDisplay_TestDisplayFrustum.png</div> This example gets the frustum from a camera and displays it on the screen. ==CMakeLists.txt== <source lang="cmake"> cmake_minimum_required(VERSION 2.6) PROJECT(Frustum) FIND_PACKAGE(VTK REQUIRED) INCLUDE(${VTK_USE_FILE}) ADD_EXECUTABLE(DisplayFrustum DisplayFrustum.cxx) TARGET_LINK_LIBRARIES(DisplayFrustum vtkHybrid) </source>")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Cylinder (content was: "This example creates a minimal visualization program, demonstrating VTK's basic rendering and pipeline creation. See also the Java, Python and Tcl versions of this example. ==Cylinder.cxx== <source lang="cpp"> #include "vtkCylinderSource.h" #include "vtkPolyDataMapper.h" #include "vtkActor.h" #include "vtkRenderer.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h"...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Cxx/PolyData/ConvexHullDelaunay3D (content was: "This example shows how to compute the convex hull of a point cloud. It computes the volumetric tessellation using Delaunay3D and saves this result delaunay.vtu. This output contains tetrahedron, where we are interested in the bounding surface of the points. vtkDataSetSurfaceFilter is then used to get the surfaces on the outside of this volume. This result is written to output.vtp. The example data set is created in the code. It consists of 5 points, 4 of which should lie on th...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Cxx/Modelling/Delaunay3DAlpha (content was: "== Create a solid mesh from unorganized points Delaunay3D with Alpha) == This example creates a tetrahedral mesh from unorganized points. The example uses the vtkDelaunay3D filter with a non-zero Alpha. Only tetrahedra, triangles, edges and vertices that lie within the alpha radius are output. The resulting mesh is an unstructured grid that contains tetrahedra, triangles, edges and vertices. The example takes the points from a XML PolyData file (.vtp) and produces an XML Unstru...")
- 01:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Cxx/Interaction/ClickWorldCoordinates (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestClickWorldCoordinates.png</div> This should display the value of the world coordinates of the left mouse click. Currently the values are incorrect. ==ClickWorldCoordinates.cxx== <source lang="cpp"> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkSmartPointer.h> #inclu...")
- 01:54, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Cxx/GeometricObjects/Cell3DDemo (content was: "==Cell3DDemo.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkCellArray.h> #include <vtkUnstructuredGrid.h> #include <vtkDataSetMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkCamera.h> #include <vtkHexagonalPrism.h> #include <vtkHexahedron.h> #include <vtkPentagonalPrism.h> #include <vtkPolyhedron.h> #include <vtkPyramid.h> #include <vtkTetra.h>...")
- 01:54, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Boneyard/Cxx/Filters/ICPRealData (content was: "==ICPRealData.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkVertexGlyphFilter.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkCellArray.h> #include <vtkIterativeClosestPointTransform.h> #include <vtkTransformPolyDataFilter.h> #include <vtkLandmarkTransform.h> #include <vtkMath.h> #include <vtkMatrix4x4.h> #include <vtkXMLPolyDataWriter.h> #include <vtkXMLPolyDataReader.h> int main(int argc, char *argv[]) { // Ensure a filename was specif...")
- 01:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/BandedPolyDataContourFilter (content was: "#REDIRECT VTK/Examples/VisualizationAlgorithms/BandedPolyDataContourFilter", and the only contributor was "Lorensen" (talk))
- 01:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/BackgroundImage (content was: "#REDIRECT VTK/Examples/Images/BackgroundImage", and the only contributor was "Lorensen" (talk))
- 01:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/BackgroundColor (content was: "#REDIRECT VTK/Examples/Visualization/BackgroundColor", and the only contributor was "Lorensen" (talk))
- 01:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Visualization/BackgroundColor (content was: "#REDIRECT VTK/Examples/Cxx/Visualization/BackgroundColor", and the only contributor was "Daviddoria" (talk))
- 01:52, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/VisualizationAlgorithms/BandedPolyDataContourFilter (content was: "#REDIRECT VTK/Examples/Cxx/VisualizationAlgorithms/BandedPolyDataContourFilter", and the only contributor was "Daviddoria" (talk))
- 01:51, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/VisualizationAlgorithms/BandedPolyDataContourFilter (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_VisualizationAlgorithms_TestBandedPolyDataContourFilter.png</div> ==BandedPolyDataContourFilter.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkCellArray.h> #include <vtkFloatArray.h> #include <vtkPointData.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkCamera.h> #in...")
- 01:51, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Images/BackgroundImage (content was: "#REDIRECT VTK/Examples/Cxx/Images/BackgroundImage", and the only contributor was "Daviddoria" (talk))
- 01:51, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Visualization/BackgroundColor (content was: "<div class="floatright">File:VTK_Examples_Baseline_Visualization_TestBackgroundColor.png</div> This example demonstrates how to change the background color of the render window. ==BackgroundColor.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> int main (int, char *[])...")
- 01:49, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Arrow (content was: "#REDIRECT VTK/Examples/GeometricObjects/Display/Arrow", and the only contributor was "Lorensen" (talk))
- 01:49, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/ArrayRange (content was: "#REDIRECT VTK/Examples/Utilities/ArrayRange", and the only contributor was "Lorensen" (talk))
- 01:49, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/ArrayCalculator (content was: "#REDIRECT VTK/Examples/Broken/ArrayCalculator", and the only contributor was "Lorensen" (talk))
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/GeometricObjects/Display/Arrow (content was: "#REDIRECT VTK/Examples/Cxx/GeometricObjects/Display/Arrow", and the only contributor was "Daviddoria" (talk))
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Display/Arrow (content was: "#REDIRECT VTK/Examples/Cxx/GeometricObjects/Arrow", and the only contributor was "Daviddoria" (talk))
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Arrow (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Arrow Arrow] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Utilities/ArrayRange (content was: "#REDIRECT VTK/Examples/Cxx/Utilities/ArrayRange", and the only contributor was "Daviddoria" (talk))
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Utilities/ArrayRange (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Utilities/ArrayRange ArrayRange] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/ArrayCalculator (content was: "#REDIRECT VTK/Examples/Utilities/ArrayCalculator", and the only contributor was "Daviddoria" (talk))
- 01:48, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Utilities/ArrayCalculator (content was: "#REDIRECT VTK/Examples/Cxx/Utilities/ArrayCalculator", and the only contributor was "Daviddoria" (talk))
- 01:47, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Utilities/ArrayCalculator (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Utilities/ArrayCalculator ArrayCalculator] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 01:47, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/AreaPicking (content was: "#REDIRECT VTK/Examples/Picking/AreaPicking", and the only contributor was "Lorensen" (talk))
- 01:47, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Picking/AreaPicking (content was: "#REDIRECT VTK/Examples/Cxx/Picking/AreaPicking", and the only contributor was "Daviddoria" (talk))
- 01:46, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Picking/AreaPicking (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Picking/AreaPicking AreaPicking] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")