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).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Quad (content was: "This example creates four points and creates a quad on the points. The points MUST be specified in counter-clockwise order. ==Quad.cxx== <source lang="cpp"> #include <vtkCellArray.h> #include <vtkPoints.h> #include <vtkQuad.h> #include <vtkPolyData.h> #include <vtkXMLPolyDataWriter.h> #include <vtkSmartPointer.h> int main(int, char *[]) { //Setup the coordinates of four points //(must be in counter clockwise order) double P0[3] = {0.0, 0.0, 0.0}; double P1[3] = {1.0,...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Sphere (content was: "This example creates a sphere and writes it to a file. ==Sphere.cxx== <source lang="cpp"> #include <vtkSphereSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkXMLPolyDataWriter.h> int main(int, char *[]) { //Create a sphere. vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->SetCenter(0.0, 0.0, 0.0); sphereSource->SetRadius(5.0); sphereSource->Update(); vtkSmartPointer<vtkPolyData>...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/Triangle (content was: "This example creates a "self contained" triangle. This means the geometry is stored such that the triangle itself contains the geometry and can therefore be passed to a function and operated on without any other arrays present. Unfortunately, there is then no way to add this triangle to a polydata object, as the triangles for a polydata must simply be indexed to points in the polydatas point array. ==Triangle.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtk...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Boneyard/GeometricObjects/WriteFile/TriangleOnData (content was: "This example creates a triangle whose points are stored in an "external" array. This is how you must create triangles which will be added to a polydata (as the "external" array in this case is the polydata's Points array). This method, however, does not allow the triangles to exist alone, as they do not actually contain their geometry. This means that if you pass this triangle to a function, you will not be able to access its points in the function unless you also pass its exte...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/AssignAttribute (content was: "==AssignAttribute.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkAssignAttribute.h> #include <vtkSphereSource.h> int main(int, char *[]) { vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); vtkSmartPointer<vtkAssignAttribute> vectors = vtkSmartPointer<vtkAssignAttribute>::New(); vectors->SetInputConnection(sphereSource->GetOutputPort()); vectors->Assign("Gradients", vtkDataSetAttributes::VECTORS,...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/CoincidentPoints (content was: "==CoincidentPoints.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCoincidentPoints.h> int main(int, char *[]) { vtkSmartPointer<vtkCoincidentPoints> coincidentPoints = vtkSmartPointer<vtkCoincidentPoints>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Databases/ODBCDatabase (content was: "“Could not execute statement" error. ==ODBCDatabase.cxx== <source lang="cpp"> //This is the format for using the Microsoft Access ODBC Driver connection string. //DRIVER={Microsoft Access Driver (*.mdb)};Dbq=C:\mydatabase.mdb;Uid=Admin;Pwd=; //The keyword DRIVER must be in all caps for vtkODBCDatabase to work with any data source with the word "Driver" in it. //Many odbc examples online have it in lower case. //Create Database object vtkODBCDatabase* db = vtkOD...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Databases/ODBCDatabases (content before blanking was: " //This is the format for using the Microsoft Access ODBC Driver connection string. //DRIVER={Microsoft Access Driver (*.mdb)};Dbq=C:\mydatabase.mdb;Uid=Admin;Pwd=; //The keyword DRIVER must be in all caps for vtkODBCDatabase to work with any data source with the word "Driver" in it. //Many odbc examples online have it in lower case. //Create Database object vtkODBCDatabase* db = vtkODBCDatabase::New(); //Set the data source name. Do...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/ExtractSelectedThresholds (content was: "This example uses vtkSelectEnclosedPoints to generate a mask (0 or 1) if points from one sphere are inside the other. We then try to use vtkExtractSelectedThresholds to extract only points that have an associated "1" in the "SelectPoints" array. ==ExtractSelectedThresholds.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <vtkSelection.h> #include <vtkSelectionNode.h> #include <vtkPointData.h> #include <vtkSphereSource.h> #include <vtkFlo...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/FrustumCoverageCuller (content was: "Need to demonstrate when one would want to use this. ==FrustumCoverageCuller.cxx== <source lang="cpp"> #include <vtkSphereSource.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkCullerCollection.h> #include <vtkFrustumCoverageCuller.h> int main(int argc, char *argv[]) { //Create a sphere vtkSmartPointer<vt...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graph/InteractWithVertices (content was: "==InteractWithVertices.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMutableUndirectedGraph.h> #include <vtkGraphWriter.h> #include <vtkGraphLayoutView.h> #include <vtkRenderWindowInteractor.h> #include <vtkGraphLayoutStrategy.h> #include <vtkSimple2DLayoutStrategy.h> #include <vtkRenderedGraphRepresentation.h> #include <vtkInteractorStyleTrackballActor.h> #include <vtkObjectFactory.h> #include <vtkPointPicker.h> #include <vtkRenderWindow.h> #include <vtkR...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/Conversions/MutableDirectedGraphToMutableUndirectedGraph (content was: "This conversions fails. It would be nice if the conversions worked with a "Warning: directedness lost". ==MutableDirectedGraphToMutableUndirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkMutableUndirectedGraph.h> int main (int, char *[]) { //create a graph vtkSmartPointer<vtkMutableDirectedGraph> mdg = vtkSmartPointer<vtkMutableDirectedGraph>::New(); //add 4 vertices to t...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/Conversions/MutableUndirectedGraphToMutableDirectedGraph (content was: "This conversion should be possible and simply use a default directedness for the new edges. ==MutableUndirectedGraphToMutableDirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkMutableUndirectedGraph.h> int main (int, char *[]) { //create a graph vtkSmartPointer<vtkMutableUndirectedGraph> mug = vtkSmartPointer<vtkMutableUndirectedGraph>::New(); //add 4 vertices to the graph...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/Conversions/TreeToMutableUndirectedGraph (content was: "==TreeToMutableUndirectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPoints.h> #include <vtkMutableDirectedGraph.h> #include <vtkMutableUndirectedGraph.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->A...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/EdgeWidth (content was: "Currently broken: doesn't attempt to change edge width. ==EdgeWidth.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMutableUndirectedGraph.h> #include <vtkGraphWriter.h> #include <vtkGraphLayoutView.h> #include <vtkRenderWindowInteractor.h> #include <vtkGraphLayoutStrategy.h> #include <vtkSimple2DLayoutStrategy.h> int main(int, char *[]) { vtkSmartPointer<vtkMutableUndirectedGraph> g = vtkSmartPointer<vtkMutableUndirectedGraph>::New(); vtkIdType v...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/ExtractSelectedGraph (content was: "Fix: Need to add dual GraphView when it is available. ==ExtractSelectedGraph.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkDataSetAttributes.h> #include <vtkDoubleArray.h> #include <vtkExtractSelectedGraph.h> #include <vtkIdTypeArray.h> #include <vtkMutableUndirectedGraph.h> #include <vtkSelection.h> #include <vtkSelectionNode.h> #include <vtkDataSetAttributes.h> #include <vtkDoubleArray.h> #include <vtkGraphLayoutView.h> #include <vtkIntArray.h> #include...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/NodeShape (content was: "Currently broken: Can you glyph something besides a vertex at each point? What are "icons"? ==NodeShape.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMutableUndirectedGraph.h> #include <vtkGraphWriter.h> #include <vtkGraphLayoutView.h> #include <vtkRenderWindowInteractor.h> #include <vtkGraphLayoutStrategy.h> #include <vtkSimple2DLayoutStrategy.h> int main(int, char *[]) { vtkSmartPointer<vtkMutableUndirectedGraph> g = vtkSmartPointer<vtkMutableUnd...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Graphs/TableToGraph (content was: "Vertex labels are wrong (all 2). ==TableToGraph.cxx== <source lang="cpp"> #include <vtkAdjacencyMatrixToEdgeTable.h> #include <vtkArrayData.h> #include <vtkArrayPrint.h> #include <vtkDenseArray.h> #include <vtkGraphLayoutStrategy.h> #include <vtkGraphLayoutView.h> #include <vtkGraphWriter.h> #include <vtkMutableUndirectedGraph.h> #include <vtkRenderWindowInteractor.h> #include <vtkSimple2DLayoutStrategy.h> #include <vtkSmartPointer.h> #include <vtkTable.h> #include <vtkTableT...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/HyperOctree (content was: "==HyperOctree.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkPolyData.h> #include <vtkHyperOctree.h> int main(int argc, char *argv[]) { vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); vtkSmartPointer<vtkHyperOctree> tree = vtkSmartPointer<vtkHyperOctree>::New(); return EXIT_SUCCESS; } </source> {{VTKCMakeLists|{{SUBPAGENAME}}}}")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/IO/ExodusIIWriter (content was: "Fixed at VTK/Examples/Cxx/IO/ExodusIIWriter")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/IO/ImageReader2 (content was: "==ImageReader2.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageReader2.h> #include <vtkImageData.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> int main(int argc, char *argv[]) { // Verify command line arguments if(argc < 2) { std::cout << "Usage: " << argv[0] << " InputFilename" << std::endl; return EXIT_FAILUR...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/IO/LSDynaReader (content was: "Not tested - need a demo file. ==LSDynaReader.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkLSDynaReader.h> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkUnstructuredGrid.h> int main(int argc, char *argv[]) { // Parse command line arguments if(argc != 2) { std::cout << "Required arguments: Filename" <<...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Images/ImageAnisotropicDiffusion3D (content was: "==ImageAnisotropicDiffusion3D.cxx== <source lang="cpp"> #include <vtkImageData.h> #include <vtkSmartPointer.h> #include <vtkImageCast.h> #include <vtkDataSetMapper.h> #include <vtkActor.h> #include <vtkImageMandelbrotSource.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkInteractorStyleImage.h> #include <vtkImageAnisotropicDiffusion3D.h> #include <vtkProperty.h> int main(int, char *[]) { vtkSmartPointer<vtkImageDat...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Images/ImageIdealLowPass (content was: "==ImageIdealLowPass.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageIdealLowPass.h> #include <vtkImageActor.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkJPEGReader.h> #include <vtkImageFFT.h> #include <vtkImageRFFT.h> #include <vtkImageCast.h> int main(int argc, char *argv[]) { if(argc < 2) { std::cerr << "Required: fi...")
  • 02:29, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Broken/Images/ImageSobel3D (content was: "==ImageSobel3D.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageMathematics.h> #include <vtkPointData.h> #include <vtkImageData.h> #include <vtkImageCanvasSource2D.h> #include <vtkImageSobel3D.h> #include <vtkImageMagnitude.h> #include <vtkImageExtractComponents.h> #include <vtkImageShiftScale.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #in...")
  • 02:28, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx//Images/ImageThreshold (content before blanking was: "The image on the left is the input image and the image on the right is the thresholded version. ==ImageThreshold.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkImageData.h> #include <vtkImageThreshold.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleImage.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkImageCast.h> #include <vtkImageMandelbrotSource.h> int main(int, char...")
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/SolidClip (content was: "<p>This example clips a mesh and applies a backface property to that mesh that appears to have a solid interior.</p> A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6....", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/Subdivision (content was: "<p>In this example a mesh is read from a file and then subdivided using linear subdivision. The SetNumberOfSubdivisions(n) function controls how many times the mesh is subdivided. For each n, the number of triangles will increase by approximately a factor of 4. For example, if n=2, the number of triangles in the resulting mesh will be 16x the number of triangles in the original m...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/Triangulate a mesh (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6.0 or higher you must define the preprocessor directive VTK_MAJOR_VERSION_5. ==Triangulate.cs== <div class="floatright...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/WindowedSincPolyDataFilter (content was: "<p>This example demonstrates how to smooth a mesh.</p> A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6.0 or higher you must define the preprocessor directive VTK_MAJ...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/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.kais...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Modelling/MarchingCubes (content was: "<p>Voxelizes a sphere and creates a model with Marching Cubes. '''NOTE:''' vtkVoxelModeller by default produces a VTK_BIT scalar image. Marching Cubes does not support this type. The scalar output is set to float for this example.</p> A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Set...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/AlignFrames (content was: "<p>This function takes two frames and finds the matrix M between them.</p> A tutorial on how to setup a Console Application utilizing Kitware.VTK.dll can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Console Application to use Kitware.VTK.dll]<br /> ==AlignFrames.cs== <source lang="CSharp"> using System; using System.Runtime.InteropServices; using Kitware...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/ClosedSurface (content was: "A tutorial on how to setup a Console Application utilizing Kitware.VTK.dll can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Console Application to use Kitware.VTK.dll]<br /> ==ClosedSurface.cs== <source lang="CSharp"> using System; using Kitware.VTK; namespace ActiViz.Examples { class Program { static void Main(string[] args) { Closed...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/ColorDisconnectedRegions (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET] ==ColorDisconnectedRegions.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_TestColorDisconnectedRegions.png</div> <source lang="CSharp"> using System; using System...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/Curvatures (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET] ==Curvature.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_TestCurvatures.png</div> <source lang="CSharp"> using System; using System.Collections.Generic; using S...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/DijkstraGraphGeodesicPath (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> ==DijkstraGraphGeodesicPath.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_TestDijkstraGraphGeodesicPath.png</div> <source lang="CSharp"> using System; usin...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/GreedyTerrainDecimation (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET] ==GreedyTerrainDecimation.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_TestGreedyTerrainDecimation.png</div> <source lang="CSharp"> using System; using System.C...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/HighlightBadCells (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6.0 or higher you must define the preprocessor directive VTK_MAJOR_VERSION_5. ==HighLightBadCells.cs== <div class="floa...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/IterateOverLines (content was: "A tutorial on how to setup a Console Application utilizing Kitware.VTK.dll can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Console Application to use Kitware.VTK.dll]<br /> ==IterateOverLines.cs== <source lang="CSharp"> using System; using Kitware.VTK; namespace ActiViz.Examples { class Program { static void Main(string[] args) { Iter...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/MultiBlockMergeFilter (content was: "A tutorial on how to setup a Console Application utilizing Kitware.VTK.dll can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Console Application to use Kitware.VTK.dll]<br /> ==MultiBlockMergeFilter.cs== <source lang="CSharp"> using System; using Kitware.VTK; namespace ActiViz.Examples { class Program { static void Main(string[] args) {...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/NullPoint (content was: "<p>Set value of all associated arrays to zero all at once</p> A tutorial on how to setup a Console Application utilizing Kitware.VTK.dll can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Console Application to use Kitware.VTK.dll]<br /> ==NullPoint.cs== <source lang="CSharp"> using System; using Kitware.VTK; namespace ActiViz.Examples { class Program...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/PolyDataConnectivityFilter LargestRegion (content was: "This example extracts 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 A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET] ==PolyDataConnectivityFilter_LargestRegion.cs== <div class="floatright">File:VTK_Examples_Baseline_Po...")
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/PolyDataConnectivityFilter SpecifiedRegion (content was: "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.<br /> A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Applicat...")
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/PolyDataGetPoint (content was: "<p>This example demonstrates how to obtain the coordinates of a point in a vtkPolyData object. * Suggested by Sara Rolfe </p> A tutorial on how to setup a Console Application utilizing Kitware.VTK.dll can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Console Application to use Kitware.VTK.dll]<br /> ==PolyDataGetPoint.cs== <source lang="CSharp"> using Sy...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/PolygonalSurfaceContourLineInterpolator (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6.0 or higher you must define the preprocessor directive VTK_MAJOR_VERSION_5. ==PolygonalSurfaceContourLineInterpolator.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_ScreenshotDijkstraGeodesicPath.p...")
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/SelectPolyData (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> ==SelectPolyData.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_TestSelectPolyData.png</div> <source lang="CSharp"> using System; using System.Collections.G...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/ShrinkPolyData (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6.0 or higher you must define the preprocessor directive VTK_MAJOR_VERSION_5. ==ShrinkPolyData.cs== <div class="floatri...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/VectorFieldNonZeroExtraction (content was: "<p>This example shows how to create an imagedata object, associate scalar data with some points and visualize only nonzero scalar values</p> A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not b...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/WarpVector (content was: "A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET Setup a Windows Forms Application to use ActiViz.NET]<br /> Note: As long as ActiViz.NET is not build with VTK version 6.0 or higher you must define the preprocessor directive VTK_MAJOR_VERSION_5. ==WarpVector.cs== <div class="floatright"...", and the only contributor was "Jochen" (talk))
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)