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: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].''' =")
- 01:46, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/ApplyColors (content was: "#REDIRECT VTK/Examples/Broken/ApplyColors", and the only contributor was "Lorensen" (talk))
- 01:46, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Broken/ApplyColors (content was: "How is this different than just using SetArray with a colors array? ==ApplyColors.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkProperty.h> #include <vtkPointSource.h> #include <vtkApplyColors.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int argc, char *argv[]) { vtkSmartPointer<vtkPointSource> pointSource = vtkSmartPointer<vtkPointSo...")
- 23:32, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/AppendPoints (content was: "#REDIRECT VTK/Examples/PolyData/AppendPoints", and the only contributor was "Lorensen" (talk))
- 23:31, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/PolyData/AppendPoints (content was: "#REDIRECT VTK/Examples/InfoVis/AppendPoints", and the only contributor was "Lorensen" (talk))
- 23:31, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/InfoVis/AppendPoints (content was: "#REDIRECT VTK/Examples/Cxx/InfoVis/AppendPoints", and the only contributor was "Daviddoria" (talk))
- 23:31, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/InfoVis/AppendPoints (content was: "#REDIRECT VTK/Examples/Cxx/Broken/InfoVis/AppendPoints", and the only contributor was "Daviddoria" (talk))
- 23:31, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/InfoVis/AppendPoints (content was: "This example is currently broken. The data sets seem to have been combined (there are 10 points and 10 cells in the output), but nothing is displayed. ==AppendPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPointSource.h> #include <vtkPolyData.h> #include <vtkPoints.h> #include <vtkAppendPoints.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main...")
- 23:31, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/AppendFilter (content was: "#REDIRECT VTK/Examples/Filters/AppendFilter", and the only contributor was "Lorensen" (talk))
- 23:30, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Filters/AppendFilter (content was: "#REDIRECT VTK/Examples/Cxx/Filters/AppendFilter", and the only contributor was "Daviddoria" (talk))
- 23:30, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Filtering/AppendFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Filtering/AppendFilter AppendFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 23:30, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Animation/AnimateActors (content was: "#REDIRECT VTK/Examples/Cxx/Animation/AnimateActors", and the only contributor was "Daviddoria" (talk))
- 23:30, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Animation/AnimateActors (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Animation/AnimateActors AnimateActors] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 23:30, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Add Miscellaneous Data to Points in a Polydata (content was: "#REDIRECT VTK/Examples/MiscPointData", and the only contributor was "Daviddoria" (talk))
- 23:29, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/MiscPointData (content was: "#REDIRECT VTK/Examples/PolyData/MiscPointData", and the only contributor was "Lorensen" (talk))
- 23:29, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/PolyData/MiscPointData (content was: "#REDIRECT VTK/Examples/Cxx/PolyData/MiscPointData", and the only contributor was "Daviddoria" (talk))
- 23:29, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/PolyData/MiscPointData (content was: "This demo attaches a vector (in this case a float vector of length 1) to each point in a polydata. ==MiscPointData.cxx== <source lang="cpp"> #include <vtkCellData.h> #include <vtkDoubleArray.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPointData.h> #include <vtkSmartPointer.h> #include <vtkXMLPolyDataReader.h> #include <vtkPolyDataNormals.h> #include <vtkFloatArray.h> #include <vtkMath.h> #include <string> int main(int argc, char *argv[]) { // Parse comma...")
- 23:29, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/Add Miscellaneous Data to Cells in a Polydata (content was: "#REDIRECT VTK/Examples/MiscCellData", and the only contributor was "Daviddoria" (talk))
- 23:28, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/MiscCellData (content was: "#REDIRECT VTK/Examples/PolyData/MiscCellData", and the only contributor was "Lorensen" (talk))
- 23:28, 27 April 2021 Cquammen talk contribs deleted page VTK/Examples/PolyData/MiscCellData (content was: "#REDIRECT VTK/Examples/Cxx/PolyData/MiscCellData", and the only contributor was "Daviddoria" (talk))