1 write to _points
PresentationCore (1)
MS\Internal\Ink\Lasso.cs (1)
26
_points
= new List<Point>();
26 references to _points
PresentationCore (26)
MS\Internal\Ink\Lasso.cs (26)
49
System.Diagnostics.Debug.Assert(
_points
!= null);
52
return (
_points
.Count < 3);
63
System.Diagnostics.Debug.Assert(
_points
!= null);
64
return
_points
.Count;
77
System.Diagnostics.Debug.Assert(
_points
!= null);
78
System.Diagnostics.Debug.Assert((0 <= index) && (index <
_points
.Count));
80
return
_points
[index];
104
System.Diagnostics.Debug.Assert(
_points
!= null);
120
System.Diagnostics.Debug.Assert(
_points
!= null);
128
int last =
_points
.Count;
131
if (!DoubleUtil.AreClose(
_points
[last].Y,point.Y))
133
isHigher = (point.Y <
_points
[last].Y);
139
Point prevLassoPoint =
_points
[
_points
.Count - 1];
140
for (int i = 0; i <
_points
.Count; i++)
142
Point lassoPoint =
_points
[i];
186
System.Diagnostics.Debug.Assert(
_points
!= null);
189
if (
_points
.Count < 3)
213
Point lassoLastPoint =
_points
[
_points
.Count - 1];
237
foreach (Point point in
_points
)
495
return
_points
;
506
if (0 ==
_points
.Count)
512
Point lastPoint =
_points
[
_points
.Count - 1];
526
_points
.Add(point);