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:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/Conversions/TreeToMutableDirectedGraph (content was: "==TreeToMutableDirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkDirectedGraph.h> #include <vtkTree.h> int main (int, char *[]) { //create a graph vtkSmartPointer<vtkMutableDirectedGraph> mdg = vtkSmartPointer<vtkMutableDirectedGraph>::New(); //add 4 vertices to the graph vtkIdType v1 = mdg->AddVertex(); vtkIdType v2 = mdg->AddVertex(); vtkIdType v3 = mdg->AddVertex();...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/Conversions/MutableDirectedGraphToDirectedGraph (content was: "==MutableDirectedGraphToDirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkDirectedGraph.h> int main (int, char *[]) { //create a graph vtkSmartPointer<vtkMutableDirectedGraph> mdg = vtkSmartPointer<vtkMutableDirectedGraph>::New(); //add 4 vertices to the graph vtkIdType v1 = mdg->AddVertex(); vtkIdType v2 = mdg->AddVertex(); vtkIdType v3 = mdg->AddVertex(); vtkIdTy...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/Conversions/DirectedGraphToMutableDirectedGraph (content was: "==DirectedGraphToMutableDirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkDirectedGraph.h> int main (int, char *[]) { //create a graph vtkSmartPointer<vtkMutableDirectedGraph> mdg = vtkSmartPointer<vtkMutableDirectedGraph>::New(); //add 4 vertices to the graph vtkIdType v1 = mdg->AddVertex(); vtkIdType v2 = mdg->AddVertex(); vtkIdType v3 = mdg->AddVertex(); vtkIdType...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/ConstructTree (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestTree.png</div> ==ConstructTree.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkGraphLayoutView.h> #include <vtkMutableDirectedGraph.h> #include <vtkRenderWindowInteractor.h> #include <vtkTree.h> int main (int, char *[] ) { vtkSmartPointer<vtkMutableDirectedGraph> graph = vtkSmartPointer<vtkMutableDirectedGraph>::New(); vtkIdType v1 = graph->AddVertex(); vtkIdType v2 = graph->A...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/ConstructGraph (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestConstructGraph.png</div> This example shows how to construct a simple graph. ==ConstructGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMutableUndirectedGraph.h> #include <vtkCircularLayoutStrategy.h> #include <vtkDataSetAttributes.h> #include <vtkDoubleArray.h> #include <vtkGraphLayoutView.h> #include <vtkIntArray.h> #include <vtkMutableUndirectedGraph.h> #include <vtkRenderWindowInter...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/ConnectedComponents (content was: "This example constructs a graph with 4 vertices and 2 edges. V1 and V2 are not connected to V3 or V4. We wish to obtain all of the connected components of the graph. The output of the example is a list of component IDs. All vertices with the same ID can be reached from any vertex with the same ID. ==ConnectedComponents.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkBoostConnectedComponents.h> #include <vtkDataArray.h> #include <vtkDataSetAttributes.h> #in...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/ColorVerticesLookupTable (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestColorVerticesLookupTable.png</div> ==ColorVerticesLookupTable.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkDataSetAttributes.h> #include <vtkGraphLayoutView.h> #include <vtkIntArray.h> #include <vtkLookupTable.h> #include <vtkMutableDirectedGraph.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkViewTheme.h> #include <vtkRenderer.h> #...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/ColorVertexLabels (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestColorVertexLabels.png</div> ==ColorVertexLabels.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkIntArray.h> #include <vtkDataSetAttributes.h> #include <vtkGraphLayoutView.h> #include <vtkMutableDirectedGraph.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderWindow.h> #include <vtkRenderedGraphRepresentation.h> #include <vtkTextProperty.h> int main(int, char *[]) { // Create a gra...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/ColorEdges (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestColorEdges.png</div> ==ColorEdges.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkDataSetAttributes.h> #include <vtkGraphLayoutView.h> #include <vtkIntArray.h> #include <vtkLookupTable.h> #include <vtkMutableDirectedGraph.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkViewTheme.h> int main(int, char *[]) { vtkSmartPointer<vtkMutableDirectedGraph> graph...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/BreadthFirstDistance (content was: "This example shows how to get the distance from a vertex to the root vertex. ==BreadthFirstDistance.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkBoostBreadthFirstSearch.h> #include <vtkDataSetAttributes.h> #include <vtkDoubleArray.h> #include <vtkIntArray.h> #include <vtkMutableUndirectedGraph.h> #include <vtkTree.h> int main(int, char *[]) { vtkSmartPointer<vtkMutableUndirectedGraph> g = vtkSmartPointer<vtkMutableUndirectedGraph>::New(); /...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/BoostBreadthFirstSearchTree (content was: "<div class="floatright">File:VTK_Examples_Baseline_Graphs_TestBoostBreadthFirstSearchTree.png</div> ==BoostBreadthFirstSearchTree.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkBoostBreadthFirstSearchTree.h> #include <vtkDataSetAttributes.h> #include <vtkDoubleArray.h> #include <vtkGraphLayoutView.h> #include <vtkIntArray.h> #include <vtkMutableUndirectedGraph.h> #include <vtkRenderWindowInteractor.h> #include <vtkTree.h> int main(int, char *[]) { v...")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/AdjacentVertexIterator (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Graphs/AdjacencyMatrixToEdgeTable AdjacencyMatrixToEdgeTable] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Graphs/AdjacencyMatrixToEdgeTable (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Graphs/AdjacencyMatrixToEdgeTable AdjacencyMatrixToEdgeTable] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Geovis/GeoGraticle (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Geovis/GeoGraticle GeoGraticle] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Geovis/GeoAssignCoordinates (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Geovis/GeoAssignCoordinates GeoAssignCoordinates] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Geovis/EarthSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Geovis/EarthSource EarthSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Geovis/CompassWidget (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Geovis/CompassWidget CompassWidget] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Vertex (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Vertex Vertex] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/TriangleStrip (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/TriangleStrip TriangleStrip] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:17, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Triangle (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Triangle Triangle] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/TextActor (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/TextActor TextActor] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Tetrahedron (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Tetrahedron Tetrahedron] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/TessellatedBoxSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/TessellatedBoxSource TessellatedBoxSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Sphere (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Sphere Sphere] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/SourceObjectsDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/SourceObjectsDemo SourceObjectsDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ShrinkCube (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/ShrinkCube ShrinkCube] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/RegularPolygonSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/RegularPolygonSource RegularPolygonSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/QuadraticTetraDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/QuadraticTetraDemo QuadraticTetraDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/QuadraticTetra (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/QuadraticTetra QuadraticTetra] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/QuadraticHexahedronDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/QuadraticHexahedronDemo QuadraticHexahedronDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/QuadraticHexahedron (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/QuadraticHexahedron QuadraticHexahedron] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Quad (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Quad Quad] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Pyramid (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Pyramid Pyramid] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Polyhedron (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Polyhedron Polyhedron] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PolygonIntersection (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/PolygonIntersection PolygonIntersection] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Polygon (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Polygon Polygon] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PolyLine1 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/PolyLine1 PolyLine1] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PolyLine (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/PolyLine PolyLine] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Point (content was: " = '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Point Point] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PlatonicSolids (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/PlatonicSolids PlatonicSolids] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PlatonicSolid (content was: "<div class="floatright">300px</div> ==PlatonicSolid.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPlatonicSolidSource.h> #include <vtkLookupTable.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> int main(int, char *[]) { vtkSmartPointer<vtkPlatonicSolidSource> platonicSolidSourc...")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PlanesIntersection (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/PlanesIntersection PlanesIntersection] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Planes (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Planes Planes] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/PlaneSourceDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/PlaneSourceDemo PlaneSourceDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/Plane (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/Plane Plane] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ParametricSuperToroidDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/ParametricSuperToroidDemo ParametricSuperToroidDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ParametricSuperEllipsoidDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/ParametricSuperEllipsoidDemo ParametricSuperEllipsoidDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ParametricObjectsDemo2 (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/ParametricObjectsDemo ParametricObjectsDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ParametricObjectsDemo (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/GeometricObjects/ParametricObjectsDemo ParametricObjectsDemo] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:16, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/GeometricObjects/ParametricObjects (content was: "<div class="floatright">File:VTK_Examples_Baseline_GeometricObjects_TestParametricObjects.png</div> ==Description== See [http://www.vtk.org/VTK/img/ParametricSurfaces.pdf Parametric Equations for Surfaces] by Andrew Maclean for an excellent description of these beautiful parametric surfaces. You can edit the following code by selecting any one of the functions and the corresponding object will be displayed. ==ParametricObjects.cxx== <source lang="cpp"> #include <vtkSmartP...")