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