1 write to _points
PresentationCore (1)
MS\Internal\Ink\Lasso.cs (1)
25
_points
= new List<Point>();
26 references to _points
PresentationCore (26)
MS\Internal\Ink\Lasso.cs (26)
48
System.Diagnostics.Debug.Assert(
_points
!= null);
51
return (
_points
.Count < 3);
62
System.Diagnostics.Debug.Assert(
_points
!= null);
63
return
_points
.Count;
76
System.Diagnostics.Debug.Assert(
_points
!= null);
77
System.Diagnostics.Debug.Assert((0 <= index) && (index <
_points
.Count));
79
return
_points
[index];
103
System.Diagnostics.Debug.Assert(
_points
!= null);
119
System.Diagnostics.Debug.Assert(
_points
!= null);
127
int last =
_points
.Count;
130
if (!DoubleUtil.AreClose(
_points
[last].Y,point.Y))
132
isHigher = (point.Y <
_points
[last].Y);
138
Point prevLassoPoint =
_points
[
_points
.Count - 1];
139
for (int i = 0; i <
_points
.Count; i++)
141
Point lassoPoint =
_points
[i];
185
System.Diagnostics.Debug.Assert(
_points
!= null);
188
if (
_points
.Count < 3)
212
Point lassoLastPoint =
_points
[
_points
.Count - 1];
236
foreach (Point point in
_points
)
494
return
_points
;
505
if (0 ==
_points
.Count)
511
Point lastPoint =
_points
[
_points
.Count - 1];
525
_points
.Add(point);