1 write to _points
PresentationCore (1)
Core\CSharp\MS\Internal\Ink\Lasso.cs (1)
31
_points
= new List<Point>();
26 references to _points
PresentationCore (26)
Core\CSharp\MS\Internal\Ink\Lasso.cs (26)
54
System.Diagnostics.Debug.Assert(
_points
!= null);
57
return (
_points
.Count < 3);
68
System.Diagnostics.Debug.Assert(
_points
!= null);
69
return
_points
.Count;
82
System.Diagnostics.Debug.Assert(
_points
!= null);
83
System.Diagnostics.Debug.Assert((0 <= index) && (index <
_points
.Count));
85
return
_points
[index];
109
System.Diagnostics.Debug.Assert(
_points
!= null);
125
System.Diagnostics.Debug.Assert(
_points
!= null);
133
int last =
_points
.Count;
136
if (!DoubleUtil.AreClose(
_points
[last].Y,point.Y))
138
isHigher = (point.Y <
_points
[last].Y);
144
Point prevLassoPoint =
_points
[
_points
.Count - 1];
145
for (int i = 0; i <
_points
.Count; i++)
147
Point lassoPoint =
_points
[i];
191
System.Diagnostics.Debug.Assert(
_points
!= null);
194
if (
_points
.Count < 3)
218
Point lassoLastPoint =
_points
[
_points
.Count - 1];
242
foreach (Point point in
_points
)
501
return
_points
;
512
if (0 ==
_points
.Count)
518
Point lastPoint =
_points
[
_points
.Count - 1];
532
_points
.Add(point);