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)
54System.Diagnostics.Debug.Assert(_points != null); 57return (_points.Count < 3); 68System.Diagnostics.Debug.Assert(_points != null); 69return _points.Count; 82System.Diagnostics.Debug.Assert(_points != null); 83System.Diagnostics.Debug.Assert((0 <= index) && (index < _points.Count)); 85return _points[index]; 109System.Diagnostics.Debug.Assert(_points != null); 125System.Diagnostics.Debug.Assert(_points != null); 133int last = _points.Count; 136if (!DoubleUtil.AreClose(_points[last].Y,point.Y)) 138isHigher = (point.Y < _points[last].Y); 144Point prevLassoPoint = _points[_points.Count - 1]; 145for (int i = 0; i < _points.Count; i++) 147Point lassoPoint = _points[i]; 191System.Diagnostics.Debug.Assert(_points != null); 194if (_points.Count < 3) 218Point lassoLastPoint = _points[_points.Count - 1]; 242foreach (Point point in _points) 501return _points; 512if (0 == _points.Count) 518Point lastPoint = _points[_points.Count - 1]; 532_points.Add(point);