10 writes to _lastPoint
PresentationBuildTasks (10)
17 references to _lastPoint
PresentationBuildTasks (17)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (17)
493x += _lastPoint.X;
494y += _lastPoint.Y;
506return new Point(2 * _lastPoint.X - _secondLastPoint.X,
5072 * _lastPoint.Y - _secondLastPoint.Y);
569context.BeginFigure(_lastPoint, IsFilled, ! IsClosed);
571_lastStart = _lastPoint;
578context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin);
594case 'h': _lastPoint.X += ReadNumber(! AllowComma); break;
595case 'H': _lastPoint.X = ReadNumber(! AllowComma); break;
596case 'v': _lastPoint.Y += ReadNumber(! AllowComma); break;
597case 'V': _lastPoint.Y = ReadNumber(! AllowComma); break;
600context.LineTo(_lastPoint, IsStroked, ! IsSmoothJoin);
623p = _lastPoint;
637context.BezierTo(p, _secondLastPoint, _lastPoint, IsStroked, ! IsSmoothJoin);
659_secondLastPoint = _lastPoint;
670context.QuadraticBezierTo(_secondLastPoint, _lastPoint, IsStroked, ! IsSmoothJoin);
693_lastPoint,