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:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/PolyData/WeightedTransformFilter (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] ==WeightedTransformFilter.cs== <div class="floatright">File:VTK_Examples_Baseline_PolyData_TestWeightedTransformFilter.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/SimpleOperations/DistanceBetweenPoints (content was: "This example finds the squared distance and the Euclidean distance between two 3D points. ==DistanceBetweenPoints.cs== <source lang="CSharp"> using System; using System.Runtime.InteropServices; using System.Diagnostics; using Kitware.VTK; void DistanceBetweenPoints() { // Create two points. double[] p0 = new double[] { 0.0, 0.0, 0.0 }; double[] p1 = new double[] { 1.0, 1.0, 1.0 }; IntPtr pP0 = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(double)) * 3); IntPtr p...")
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/SimpleOperations/DistancePointToLine (content was: "This example computes the distance from a point to a line. ==DistancePointToLine.cs== <source lang="CSharp"> using System; using System.Runtime.InteropServices; using System.Diagnostics; using Kitware.VTK; void DistancePointToLine() { double[] lineP0 = new double[] { 0.0, 0.0, 0.0 }; double[] lineP1 = new double[] { 2.0, 0.0, 0.0 }; double[] p0 = new double[] { 1.0,...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/SimpleOperations/GaussianRandomNumber (content was: "This example generates 3 random numbers from a Gaussian distribution with mean 0.0 and standard deviation 2.0. ==GaussianRandomNumber.cs== <source lang="CSharp"> using System; using System.Diagnostics; using Kitware.VTK; void GaussianRandomNumber() { // Set the number of random numbers we wish to produce to 3. uint numRand = 3; // Without this line, the random numbers...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/SimpleOperations/PerspectiveTransform (content was: "The perspective transform automatically appends the "homogeneous 1" to the point before it is multiplied by the matrix. It then divides the first 3 coordinates of the result by the 4th coordinate of the result. For comparison, the standard projection (vtkTransform) is also performed with the same matrix and the same point. Note that the results are much different. ==PerspectiveT...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/SimpleOperations/ProjectPointPlane (content was: "This example projects a point onto a plane ==ProjectPointPlane.cs== <source lang="CSharp"> using System; using System.Runtime.InteropServices; using System.Diagnostics; using Kitware.VTK; void ProjectPointPlane() { vtkPlane plane = vtkPlane.New(); plane.SetOrigin(0.0, 0.0, 0.0); plane.SetNormal(0.0, 0.0, 1.0); double[] p = new double[] { 23.1, 54.6, 9.2 }; double...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/SimpleOperations/RandomSequence (content was: "This is the "new" (December, 2009) VTK way to produce random numbers. It is actually a random sequence generator. ==RandomSequence.cs== <source lang="CSharp"> using System; using System.Diagnostics; using Kitware.VTK; void RandomSequence() { //Create a random sequence generator. vtkMinimalStandardRandomSequence sequence = vtkMinimalStandardRandomSequence.New();...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/SimpleOperations/UniformRandomNumber (content was: "This example generates 3 random numbers between 0 and 2 from a uniform distribution. ==UniformRandomNumber.cs== <source lang="CSharp"> using System; using System.Diagnostics; using Kitware.VTK; void UniformRandomNumber() { // Set the number of random numbers we wish to produce to 3. uint numRand = 3; // Without this line, the random numbers will be the same every itera...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/VisualizationAlgorithms/FilledContours (content was: "<p>This example produces filled contours using the vtkClipPolyData filter. There is a sample data file [http://public.kitware.com/cgi-bin/viewcvs.cgi/Data/filledContours.vtp?root=VTKData&view=log here]</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 Applicatio...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/VisualizationAlgorithms/BandedPolyDataContourFilter (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. ==BandedPolyDataContourFilter.cs== <div c...", and the only contributor was "Jochen" (talk))
  • 02:26, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/WishList/Modelling/MarchingSquares (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. ==MarchingSquares.cs== <div class="floatr...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadPDB (content was: "This example reads [http://www.pdb.org/pdb/home/home.do Protein Data Bank] files. The example expects a file in .pdb format. [http://gitorious.org/vtkwikiexamples/wikiexamples/blobs/raw/master/Testing/Data/lys.pdb Here] is a sample file.<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/ActiV...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadPLOT3D (content was: "Reads PLOT3D files<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 Application to use ActiViz.NET] ==ReadPLOT3D.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestReadPLOT3D.png</div> <source lang="CSharp"> using System; using System.Collecti...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadPLY (content was: "Reads a PLY file<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 Application to use ActiViz.NET] ==ReadPLY.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestReadPLY.png</div> <source lang="CSharp"> using System; using System.Collections.Gene...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadPNM (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] ==ReadPNM.cs== <div class="floatright">300px</div> <source lang="CSharp"> using System; using System.Collections.Generic; using System...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadPlainText (content was: "This example takes a plain text file of coordinates and reads them into a vtkPoints, which is then put into a vtkPolyData and displayed on the screen using a vtkVertexGlyphFilter. An example file may look like: 1 2 3 4 5 6 7 8 9 Sample data are available as a zipped file (16 KB): File:VTK_Examples_Teapot.zip A tutorial on how to setup a Windows Forms Application utiliz...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadPolyData (content was: "This example reads a polygonal data (.vtp) file. An example data set can be found at VTKData/Data/SyntheticPolyline.vtp<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 Application to use ActiViz.NET] ==ReadPolyData.cs== <div class="floatright">File:VTK_Exa...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadRectilinearGrid (content was: "This example reads a rectilinear grid (.vtr) file. An example file can be found at VTKData/Data/cth.vtr<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 Application to use ActiViz.NET] ==ReadRectilinearGrid.cs== <div class="floatright">File:VTK_Examples_Bas...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadSTL (content was: "Reads an stl file<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 Application to use ActiViz.NET] ==ReadSTL.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestReadSTL.png</div> <source lang="CSharp"> using System; using System.Collections.Gen...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadStructuredGrid (content was: "This example reads a structured grid (.vts) file. An example file can be found at VTKData/Data/multicomb_0.vts<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 Application to use ActiViz.NET] ==ReadStructuredGrid.cs== <div class="floatright">File:VTK_Exampl...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadTIFF (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] ==ReadTIFF.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestReadTIFF.png</div> <source lang="CSharp"> using System; using System.Collections.Generic; using System.Com...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadUnknownTypeXMLFile (content was: "This examples reads either a vtu (unstructured grid) or vtp (polydata) file and displays it to the screen.<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 Application to use ActiViz.NET] ==ReadUnknownTypeXMLFile.cs== <div class="floatright">File:VTK_Exampl...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/ReadUnstructuredGrid (content was: "This examples demonstrates how to read an unstructured grid (VTU) file. An example data file (.vtu) for testing can be found in VTKData/Data/quadraticTetra01.vtu. 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] ==ReadVTUFile.cs==...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/SimplePointsReader (content was: "A file of XYZ coordinates is a very easy format that can be used for simple storage from many applications. This example demonstrates how to read this type of file into a polydata object. An example file of three points would look like this: 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET can be found here: [ht...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/VRML (content was: "This example loads a wrl file and displays it on the screen.<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 Application to use ActiViz.NET] ==VRML.cs== <div class="floatright">File:VTK_Examples_CSharp_IO_VRML.png</div> <source lang="CSharp"> using Syste...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WriteBMP (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] ==WriteBMP.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestWriteBMP.png</div> <source lang="CSharp"> using System; using System.Collections.Generic; using System.Com...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WritePNG (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] ==WritePNG.cs== <source lang="CSharp"> using System; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.Diagnostics; using System.I...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WritePNM (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] ==WritePNM.cs== <source lang="CSharp"> using System; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.Diagnostics; using System.I...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WriteTIFF (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] ==WriteTIFF.cs== <source lang="CSharp"> using System; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.Diagnostics; using System....", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WriteVTI (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] ==WriteVTI.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestWriteVTI.png</div> <source lang="CSharp"> using System; using System.Collections.Generic; using System.Com...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WriteVTP (content was: "In this example, we add 4 points to a polygonal data (polydata) object and write the result to a VTP file.<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 Application to use ActiViz.NET] ==WritePolyData.cs== <div class="floatright">File:VTK Examples CSharp...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/WriteVTU (content was: "This example writes a VTU file.<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 Application to use ActiViz.NET] ==WriteVTU.cs== <div class="floatright">File:VTK_Examples_Baseline_IO_TestWriteVTUFile.png</div> <source lang="CSharp"> using System; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.Diag...")
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/IO/XMLStructuredGridWriter (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] ==XMLStructuredGridWriter.cs== <source lang="CSharp"> using System; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.Diagnostics;...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/ImplicitFunctions/ImplicitSphere (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. ==ImplicitSphere.cs== <div class="floatri...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/ImplicitFunctions/IsoContours (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] <p>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.</p> <p>Note: To use this example create a Wi...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/ImplicitFunctions/SampleFunction (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. ==SampleFunction.cs== <div class="floatri...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/InfoVis/XGMLReader (content was: "This example reads and displays the graph from a gml file. You can test this with VTKData/Data/Infovis/fsm.gml.<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 Application to use ActiViz.NET] ==XGMLReader.cs== <div class="floatright">File:VTK_Examples_Base...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/BoundaryEdges (content was: "<p>This filter will extract the boundary edges of a mesh. The original mesh is shown with the feature edges shown in red. </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...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/CapClip (content was: "<p>This example shows how to generate a "cap" on a clipped polydata. It uses a clever trick to convert polylines into polygons. If a polydata file (.vtp) is provided, it will cap it. Otherwise it caps a clipped sphere.</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...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/CellEdges (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 /> ==CellEdges.cs== <source lang="CSharp"> using System; using Kitware.VTK; namespace ActiViz.Examples { class Program { static void Main(string[] args) { CellEdges(...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/Color a mesh by height (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. ==ColoredElevationMap.cs== <div class="fl...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/Decimation (content was: "<p>This example decimates a mesh. The SetTargetReduction function specifies how many triangles should reduced by specifying the percentage ([0,1]) of triangles to be removed. For example, if the mesh contains 100 triangles and SetTargetReduction(.90) is called, after the decimation there will be approximately 10 triangles - a 90% reduction.</p>A tutorial on how to setup a Windows...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/ElevationFilter (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. ==ElevationFilter.cs== <div class="floatr...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/ExtractEdges (content was: "<p>This example shows how to extract the edges from a PolyData. In this case, we convert a sphere into a wireframe sphere. We demonstrate how to traverse the resulting edges.</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 />...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/FillHoles (content was: "<p>This filter finds holes in a mesh and closes them.</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_...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/MatrixMathFilter (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] ==MatrixMathFilter.cs== <div class="floatright">File:VTK_Examples_CSharp_Meshes_MatrixMathFilter.png</div> <source lang="CSharp"> using System; using System.Collections.Generic; us...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/OBBDicer (content was: "<p>The vtkOBBDicer filter breaks up an input mesh into a number of pieces. The resulting mesh contains scalar point data that can be used to extract the individual pieces with a filter like vtkThresholdFilter. This examples displays the output of vtkOBBDicer with a different color for each piece. </p> A tutorial on how to setup a Windows Forms Application utilizing ActiViz.NET ca...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/QuadricClustering (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. ==QuadricClustering.cs== <div class="floa...", and the only contributor was "Jochen" (talk))
  • 02:24, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/QuadricDecimation (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. ==QuadricDecimation.cs== <div class="floa...", and the only contributor was "Jochen" (talk))
  • 02:23, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/CSharp/Meshes/SimpleElevationFilter (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. ==SimpleElevationFilter.cs== <div class="...", and the only contributor was "Jochen" (talk))
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)