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)
48System.Diagnostics.Debug.Assert(_points != null); 51return (_points.Count < 3); 62System.Diagnostics.Debug.Assert(_points != null); 63return _points.Count; 76System.Diagnostics.Debug.Assert(_points != null); 77System.Diagnostics.Debug.Assert((0 <= index) && (index < _points.Count)); 79return _points[index]; 103System.Diagnostics.Debug.Assert(_points != null); 119System.Diagnostics.Debug.Assert(_points != null); 127int last = _points.Count; 130if (!DoubleUtil.AreClose(_points[last].Y,point.Y)) 132isHigher = (point.Y < _points[last].Y); 138Point prevLassoPoint = _points[_points.Count - 1]; 139for (int i = 0; i < _points.Count; i++) 141Point lassoPoint = _points[i]; 185System.Diagnostics.Debug.Assert(_points != null); 188if (_points.Count < 3) 212Point lassoLastPoint = _points[_points.Count - 1]; 236foreach (Point point in _points) 494return _points; 505if (0 == _points.Count) 511Point lastPoint = _points[_points.Count - 1]; 525_points.Add(point);