Deletion log

From KitwarePublic
Jump to navigationJump to search

Below is a list of the most recent deletions.

Logs
  • 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...")