10 writes to _lastPoint
PresentationCore (10)
System\Windows\Media\ParsersCommon.cs (10)
523_lastPoint = new Point(0, 0); 550_lastPoint = ReadPoint(cmd, ! AllowComma); 559_lastPoint = ReadPoint(cmd, ! AllowComma); 575case 'l': _lastPoint = ReadPoint(cmd, ! AllowComma); break; 576case 'L': _lastPoint = ReadPoint(cmd, ! AllowComma); break; 618_lastPoint = ReadPoint(cmd, AllowComma); 645_lastPoint = ReadPoint(cmd, ! AllowComma); 650_lastPoint = ReadPoint(cmd, AllowComma); 673_lastPoint = ReadPoint(cmd, AllowComma); 702_lastPoint = _lastStart; // Set reference point to be first point of current figure
17 references to _lastPoint
PresentationCore (17)
System\Windows\Media\ParsersCommon.cs (17)
477x += _lastPoint.X; 478y += _lastPoint.Y; 490return new Point(2 * _lastPoint.X - _secondLastPoint.X, 4912 * _lastPoint.Y - _secondLastPoint.Y); 552context.BeginFigure(_lastPoint, IsFilled, ! IsClosed); 554_lastStart = _lastPoint; 561context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin); 577case 'h': _lastPoint.X += ReadNumber(! AllowComma); break; 578case 'H': _lastPoint.X = ReadNumber(! AllowComma); break; 579case 'v': _lastPoint.Y += ReadNumber(! AllowComma); break; 580case 'V': _lastPoint.Y = ReadNumber(! AllowComma); break; 583context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin); 606p = _lastPoint; 620context.BezierTo(p, _secondLastPoint, _lastPoint, IsStroked, ! IsSmoothJoin); 642_secondLastPoint = _lastPoint; 653context.QuadraticBezierTo(_secondLastPoint, _lastPoint, IsStroked, ! IsSmoothJoin); 676_lastPoint,