24 references to Length
PresentationCore (20)
Core\CSharp\MS\Internal\AnimatedTypeHelpers.cs (3)
438
return Math.Abs((to - from).
Length
);
478
return Math.Abs(((System.Windows.Vector)to - (System.Windows.Vector)from).
Length
);
495
return Math.Abs((to - from).
Length
);
Core\CSharp\MS\Internal\Ink\Bezier.cs (1)
517
double r = Q[0].
Length
;
Core\CSharp\MS\Internal\Ink\CuspData.cs (3)
73
_nodes.Insert(index, _nodes[index - 1] + (XY(index) - XY(index - 1)).
Length
);
325
double r = V.
Length
* W.
Length
;
Core\CSharp\MS\Internal\Ink\EllipticalNodeOperations.cs (4)
633
radius = nearest.
Length
;
673
if (DoubleUtil.IsZero(P1P2p.LengthSquared) || DoubleUtil.IsZero(endRadius - beginRadius + P1P2p.
Length
))
677
findex = (P1Xp.
Length
- beginRadius) / (endRadius - beginRadius + P1P2p.
Length
);
Core\CSharp\MS\Internal\Media3D\GeneralTransform2Dto3Dto2D.cs (9)
540
double visEdgeDiff = (visEdgeStart - visEdgeEnd).
Length
;
542
if ((intersUV - visEdgeStart).
Length
< visEdgeDiff &&
543
(intersUV - visEdgeEnd).
Length
< visEdgeDiff)
953
double visEdgeDiff = (visEdgeStart - visEdgeEnd).
Length
;
955
if ((intersUV - visEdgeStart).
Length
< visEdgeDiff &&
956
(intersUV - visEdgeEnd).
Length
< visEdgeDiff)
1072
distance = v1.
Length
;
1093
distance = (mousePos - currClosest).
Length
;
1103
closestIntersection = ((currClosest - edges[i]._p1Transformed).
Length
/ Math.Sqrt(denom) *
PresentationFramework (3)
src\Framework\System\Windows\Controls\DataGrid.cs (1)
6572
distance = v.
Length
;
src\Framework\System\Windows\Controls\Primitives\Popup.cs (2)
1855
popupTransform.Scale(transformedUnitX.
Length
, transformedUnitY.
Length
);
WindowsBase (1)
Base\System\Windows\Vector.cs (1)
73
this /=
Length
;