7 references to Length
PresentationCore (7)
MS\Internal\AnimatedTypeHelpers.cs (2)
445return Math.Abs((to - from).Length); 502return Math.Abs((to - from).Length);
System\Windows\Media3D\MeshGeometry3D.cs (2)
412double dist = (worldPointHit - rayParams.Origin).Length; 512double dist = hitVector.Length;
System\Windows\Media3D\Quaternion.cs (1)
71double length = axisOfRotation.Length;
System\Windows\Media3D\Vector3D.cs (2)
168theta = Math.PI - 2.0 * Math.Asin((-vector1 - vector2).Length / 2.0); 172theta = 2.0 * Math.Asin((vector1 - vector2).Length / 2.0);