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)
49System.Diagnostics.Debug.Assert(_points != null); 52return (_points.Count < 3); 63System.Diagnostics.Debug.Assert(_points != null); 64return _points.Count; 77System.Diagnostics.Debug.Assert(_points != null); 78System.Diagnostics.Debug.Assert((0 <= index) && (index < _points.Count)); 80return _points[index]; 104System.Diagnostics.Debug.Assert(_points != null); 120System.Diagnostics.Debug.Assert(_points != null); 128int last = _points.Count; 131if (!DoubleUtil.AreClose(_points[last].Y,point.Y)) 133isHigher = (point.Y < _points[last].Y); 139Point prevLassoPoint = _points[_points.Count - 1]; 140for (int i = 0; i < _points.Count; i++) 142Point lassoPoint = _points[i]; 186System.Diagnostics.Debug.Assert(_points != null); 189if (_points.Count < 3) 213Point lassoLastPoint = _points[_points.Count - 1]; 237foreach (Point point in _points) 495return _points; 506if (0 == _points.Count) 512Point lastPoint = _points[_points.Count - 1]; 526_points.Add(point);