7 references to Length
PresentationCore (7)
Core\CSharp\MS\Internal\AnimatedTypeHelpers.cs (2)
443return Math.Abs((to - from).Length); 500return Math.Abs((to - from).Length);
Core\CSharp\System\Windows\Media3D\MeshGeometry3D.cs (2)
423double dist = (worldPointHit - rayParams.Origin).Length; 523double dist = hitVector.Length;
Core\CSharp\System\Windows\Media3D\Quaternion.cs (1)
95double length = axisOfRotation.Length;
Core\CSharp\System\Windows\Media3D\Vector3D.cs (2)
177theta = Math.PI - 2.0 * Math.Asin((-vector1 - vector2).Length / 2.0); 181theta = 2.0 * Math.Asin((vector1 - vector2).Length / 2.0);