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);
575
case 'l':
_lastPoint
= ReadPoint(cmd, ! AllowComma); break;
576
case '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)
477
x +=
_lastPoint
.X;
478
y +=
_lastPoint
.Y;
490
return new Point(2 *
_lastPoint
.X - _secondLastPoint.X,
491
2 *
_lastPoint
.Y - _secondLastPoint.Y);
552
context.BeginFigure(
_lastPoint
, IsFilled, ! IsClosed);
554
_lastStart =
_lastPoint
;
561
context.LineTo(
_lastPoint
, IsStroked, ! IsSmoothJoin);
577
case 'h':
_lastPoint
.X += ReadNumber(! AllowComma); break;
578
case 'H':
_lastPoint
.X = ReadNumber(! AllowComma); break;
579
case 'v':
_lastPoint
.Y += ReadNumber(! AllowComma); break;
580
case 'V':
_lastPoint
.Y = ReadNumber(! AllowComma); break;
583
context.LineTo(
_lastPoint
, IsStroked, ! IsSmoothJoin);
606
p =
_lastPoint
;
620
context.BezierTo(p, _secondLastPoint,
_lastPoint
, IsStroked, ! IsSmoothJoin);
642
_secondLastPoint =
_lastPoint
;
653
context.QuadraticBezierTo(_secondLastPoint,
_lastPoint
, IsStroked, ! IsSmoothJoin);
676
_lastPoint
,