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:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PointLocator (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestPointLocator.png</div> Create a point locator for a set of points. The 'n' (next) and 'p' (previous) keys change the resolution of the cells. ==PointLocator.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkObjectFactory.h> #include <vtkPointSource.h> #include <vtkPolyData.h> #include <vtkPointLocator.h> #include <vtkInteractorStyleTrackb...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PointLocatorRadius (content was: "==PointLocatorRadius.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkIdList.h> #include <vtkPolyDataMapper.h> #include <vtkObjectFactory.h> #include <vtkPointSource.h> #include <vtkPolyData.h> #include <vtkPointLocator.h> int main(int, char *[]) { vtkSmartPointer<vtkPointSource> pointSource = vtkSmartPointer<vtkPointSource>::New(); pointSource->SetNumberOfPoints(400); pointSource->Update(); // Create the tree vtkSmartPointer<vtkPointLocato...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PointLocatorVisualization (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestPointLocatorVisualization.png</div> The idea of this example is to navigate levels of a uniform spatial tree (vtkPointLocator) using a slider. Note: it is not desirable to have PointsPerBucket set "too small". This is because at some point, refining a bucket will result in each cell in that bucket to also be in the bucket's children. This only wastes memory and computation. The value that is "too small" is...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PointSource (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestPointSource.png</div> ==PointSource.cxx== <source lang="cpp"> #include <vtkPointSource.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 point cloud vtkSmartPointer<vtkPointSource> pointSource = vtkSmartPointer<vtk...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PointsProjectedHull (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestPointsProjectedHull.png</div> This example demonstrates how to find the 2D convex hull of a point set projected onto any of the coordinate planes (in this case, we choose the YZ plane (projection along the x axis) ). ==PointsProjectedHull.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkCamera.h> #include <vtkCellArray.h> #include <vtkPointSourc...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataCellNormals (content was: "This example shows how to add normals to vertices. This is identical to adding normals to any type of cells. The only difference from Add/Get Normals to/from a Polydata is <source lang="cpp"> polydata->GetPointData()->SetNormals(PointNormalsArray); </source> <source lang="cpp"> vtkSmartPointer<vtkDoubleArray> PointNormalsRetrieved = vtkDoubleArray::SafeDownCast(polydata->GetPointData()->GetNormals()); </source> are changed to <source lang="cpp"> polydata->GetCellData(...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataConnectivityFilter LargestRegion (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestConnectivity.png</div> This example keeps the largest connected region of a mesh. Note that this is based on the number of points, not the actual area of the region. * Contributed by: Jinyoung Hwang ==PolyDataConnectivityFilter_LargestRegion.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkPolyDataConnectivityFilter.h> #include <vtkPolyDataMapper.h> #include <vt...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataConnectivityFilter SpecifiedRegion (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestConnectivity.png</div> This example creates two spheres and combines them together into one polydata. The vtkPolyDataConnectivityFilter is used to find the two spheres as they are separate regions (disconnected). If region 0 is selected, the small sphere is extracted. If region 1 is selected, the large sphere is extracted. ==PolyDataConnectivityFilter_SpecifiedRegion.cxx== <source lang="cpp"> #include <vtkSmar...")
- 03:13, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataContourToImageData (content was: "* Contributed by: Lars Friedrich == Brief Description == This example generates a sphere, cuts it with a plane and, therefore, generates a circlular contour (vtkPolyData). Subsequently a binary image representation (vtkImageData) is extracted from it. Internally vtkPolyDataToImageStencil and vtkLinearExtrusionFilter are utilized. Both the circular poly data (circle.vtp) and the resultant image (labelImage.mhd) are saved to disk. '''NOTE''': Similarily to example VTK/Exampl...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataExtractNormals (content was: "This demo looks for multiple types of normals in a polydata and generates them if they do not exist. ==PolyDataExtractNormals.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkCellData.h> #include <vtkDoubleArray.h> #include <vtkFloatArray.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPolyDataNormals.h> #include <vtkPointData.h> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkXMLPolyDataReader.h> void TestPointNormals(vtkP...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataGetPoint (content was: "This example demonstrates how to obtain the coordinates of a point in a vtkPolyData object. * Suggested by Sara Rolfe ==PolyDataGetPoint.cxx== <source lang="cpp"> #include <vtkSphereSource.h> #include <vtkSmartPointer.h> #include <vtkPolyData.h> int main(int, char*[]) { // Create a sphere vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); vtkPolyData* polydata = sphereSource->GetOutput(); // Write...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataIsoLines (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_PolyData_TestPolyDataIsoLines.png</div> ==PolyDataIsoLines.cxx== <source lang="cpp"> #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 <vtkXMLPolyDataReader.h> #include <vtkXMLPolyDataWriter.h> #include <vtkCamera...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataPointNormals (content was: "#REDIRECT [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/PolyDataPointNormals/ PolyDataPointNormals]")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataPointSampler (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/PolyData/PolyDataPointSampler PolyDataPointSampler] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataToImageData (content was: "* Contributed by: Lars Friedrich == Brief Description == This example generates a sphere (prerequisite: closed surface of type vtkPolyData) and converts it into volume representation (vtkImageData) where the foreground voxels are 255 (inside) and the background voxels are 0 (outside). Internally vtkPolyDataToImageStencil is utilized. The resultant image is saved to disk in metaimage file format (SphereVolume.mhd). Image:SphereAndImageDataOverlay3D.png ==PolyDataToImageD...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolyDataToUnstructuredGrid (content was: "There is not a filter whose sole purpose is converting a vtkPolyData to a vtkUnstructuredGrid. However, the append filter can accept any type of input, and produces a vtkUnstructuredGrid, so we can use it for this purpose. ==PolyDataToUnstructuredGrid.cxx== <source lang="cpp"> #include <vtkAppendFilter.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include...", and the only contributor was "Daviddoria" (talk))
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolygonalSurfaceContourLineInterpolator (content was: "<div class="floatright">300px</div> ==PolygonalSurfaceContourLineInterpolator.cxx== <source lang="cpp" highlight=86-106> #include <vtkVersion.h> #include "vtkSmartPointer.h" #include "vtkActor.h" #include "vtkCamera.h" #include "vtkCellArray.h" #include "vtkImageDataGeometryFilter.h" #include "vtkPoints.h" #include "vtkPolyData.h" #include "vtkPolyDataCollection.h" #include "vtkPolyDataMapper.h" #includ...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/PolygonalSurfacePointPlacer (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestPointPlacer.png</div> This example demonstrates how to draw curves on a surface. ==PolygonalSurfacePointPlacer.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCommand.h> #include <vtkProperty.h> #include <vtkContourWidget.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInterac...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/ProcrustesAlignmentFilter (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestProcrustesAlignmentFilter.png</div> This example aligns three objects (deformed spheres) using the Procrustes algorithm. The original shapes are shown on the left. The alignment using a rigid transform is shown in the middle, and the alignment using a similarity transform is shown on the right. ==ProcrustesAlignmentFilter.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/QuantizePolyDataPoints (content was: "<div class="floatright">300px</div> This example demonstrates how to "snap" points onto a discrete grid. This example rounds the coordinates of each point the the nearest .1 ==QuantizePolyDataPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkQuantizePolyDataPoints.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPointSource.h> #include <vtkPolyDataMapper.h> #include <...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/Reflection (content was: "<div class="floatright">File:VTK_Examples_Baseline_PolyData_TestReflectionFilter.png</div> '''Note:''' This example uses {{class|vtkReflectionFilter}}, which outputs a {{class|vtkDataObject}}. For an example that returns a {{class|vtkPolyData}}, see ''[[../../Filtering/TransformPolyData|TransformPolyData]]''. ==Reflection.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkDataSetMapper.h> #include <vtkProperty.h> #include <vtkReflectionFilter.h> #include <...")
- 03:12, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/RemoveVertices (content was: "==RemoveVertices.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkXMLPolyDataReader.h> #include <vtkXMLPolyDataWriter.h> #include <vtkSmartPointer.h> #include <vtkCellData.h> #include <vtkCellArray.h> #include <vtkPolyData.h> int main ( int argc, char *argv[] ) { if (argc < 2) { std::cout << "Usage: " << argv[0] << " filename.vtp" << std::endl; return EXIT_FAILURE; } std::string filename = argv[1]; // Read all the data from the file vtkSm...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Images/StaticImage (content was: "<div class="floatright">300px</div> This example displays an image in a non-interact-able window. ==StaticImage.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageViewer2.h> #include <vtkJPEGReader.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> int main(int argc, char* argv[]) { // Verify input arguments if ( argc != 2 ) { std::cout <<...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/NormalizeVector (content was: "==NormalizeVector.cxx== <source lang="cpp"> #include "vtkMath.h" int main(int, char*[]) { double a[3] = {100.0, 2.0, 1.0}; std::cout << a[0] << " " << a[1] << " " << a[2] << std::endl; vtkMath::Normalize(a); std::cout << a[0] << " " << a[1] << " " << a[2] << std::endl; return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/PerpendicularVector (content was: "==PerpendicularVector.cxx== This example finds a vector perpendicular to the x axis (1,0,0). Since theta is specified as 0, the negative z axis (0, 0, -1) is returned. <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMath.h> int main(int, char *[]) { double x[3] = {1,0,0}; double y[3]; vtkMath::Perpendiculars(x, y, NULL, 0); std::cout << "y: " << y[0] << " " << y[1] << " " << y[2] << std::endl; return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SU...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/VectorDot (content was: "Note that the filter maps the values to a scalar range. In the example, the values of the dot products are 1, .707, 0 The filter outputs 1, .414, -1 because the default scalar range that the filter maps the values to is [-1,1]. ==VectorDot.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkFloatArray.h> #include <vtkPointData.h> #include <vtkVectorDot.h> // For compatibility with new...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/VectorNorm (content was: "==VectorNorm.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkFloatArray.h> #include <vtkPointData.h> #include <vtkVectorNorm.h> // For compatibility with new VTK generic data arrays #ifdef vtkGenericDataArray_h #define InsertNextTupleValue InsertNextTypedTuple #endif int main(int, char *[]) { vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New(); points->Insert...")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Matlab/MatlabEngineFilter (content was: "This example currently does nothing. ==MatlabEngineFilter.cxx== <source lang="cpp"> //need to set VTK_USE_MATLAB_MEX ON #include <vtkSmartPointer.h> #include <vtkMatlabEngineFilter.h> int main(int argc, char *argv[]) { vtkSmartPointer<vtkMatlabEngineFilter> matlabFilter = vtkSmartPointer<vtkMatlabEngineFilter>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
- 03:10, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/GenerateCubesFromLabels (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/GenerateCubesFromLabels GenerateCubesFromLabels] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/GenerateModelsFromLabels (content was: "Link title= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/GenerateModelsFromLabels GenerateModelsFromLabels] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo1 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo1 MedicalDemo1] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo2 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo2 MedicalDemo2] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo3 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo3 MedicalDemo3] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/MedicalDemo4 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/MedicalDemo4 MedicalDemo4] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Medical/TissueLens (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Medical/TissueLens TissueLens] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/AddCell (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/AddCell AddCell] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/BoundaryEdges (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/BoundaryEdges BoundaryEdges] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/CapClip (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/CapClip CapClip] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/CellEdges (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/CellEdges CellEdges] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ClipClosedSurface (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ClipClosedSurface ClipClosedSurface] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ClipDataSetWithPolyData (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ClipDataSetWithPolyData ClipDataSetWithPolyData] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ClipFrustum (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ClipFrustum ClipFrustum] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ColoredElevationMap (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ColoredElevationMap ColoredElevationMap] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/Decimation (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/Decimation Decimation] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/DeformPointSet (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/DeformPointSet DeformPointSet] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ElevationFilter (content was: "<div class="floatright">File:VTK_Examples_Baseline_Meshes_TestElevationFilter.png</div> ==ElevationFilter.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPointData.h> #include <vtkSmartPointer.h> #include <vtkDelaunay2D.h> #include <vtkXMLPolyDataWriter.h> #include <vtkLookupTable.h> #include <vtkFloatArray.h> #include <vtkElevationFilter.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRende...")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/ExtractEdges (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/ExtractEdges ExtractEdges] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/FillHoles (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/FillHoles FillHoles] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/FitToHeightMap (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/FitToHeightMap FitToHeightMap] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 03:09, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Meshes/IdentifyHoles (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Meshes/IdentifyHoles IdentifyHoles] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))