10 writes to _lastPoint
PresentationCore (10)
System\Windows\Media\ParsersCommon.cs (10)
524
_lastPoint
= new Point(0, 0);
551
_lastPoint
= ReadPoint(cmd, ! AllowComma);
560
_lastPoint
= ReadPoint(cmd, ! AllowComma);
576
case 'l':
_lastPoint
= ReadPoint(cmd, ! AllowComma); break;
577
case 'L':
_lastPoint
= ReadPoint(cmd, ! AllowComma); break;
619
_lastPoint
= ReadPoint(cmd, AllowComma);
646
_lastPoint
= ReadPoint(cmd, ! AllowComma);
651
_lastPoint
= ReadPoint(cmd, AllowComma);
674
_lastPoint
= ReadPoint(cmd, AllowComma);
703
_lastPoint
= _lastStart; // Set reference point to be first point of current figure
17 references to _lastPoint
PresentationCore (17)
System\Windows\Media\ParsersCommon.cs (17)
478
x +=
_lastPoint
.X;
479
y +=
_lastPoint
.Y;
491
return new Point(2 *
_lastPoint
.X - _secondLastPoint.X,
492
2 *
_lastPoint
.Y - _secondLastPoint.Y);
553
context.BeginFigure(
_lastPoint
, IsFilled, ! IsClosed);
555
_lastStart =
_lastPoint
;
562
context.LineTo(
_lastPoint
, IsStroked, ! IsSmoothJoin);
578
case 'h':
_lastPoint
.X += ReadNumber(! AllowComma); break;
579
case 'H':
_lastPoint
.X = ReadNumber(! AllowComma); break;
580
case 'v':
_lastPoint
.Y += ReadNumber(! AllowComma); break;
581
case 'V':
_lastPoint
.Y = ReadNumber(! AllowComma); break;
584
context.LineTo(
_lastPoint
, IsStroked, ! IsSmoothJoin);
607
p =
_lastPoint
;
621
context.BezierTo(p, _secondLastPoint,
_lastPoint
, IsStroked, ! IsSmoothJoin);
643
_secondLastPoint =
_lastPoint
;
654
context.QuadraticBezierTo(_secondLastPoint,
_lastPoint
, IsStroked, ! IsSmoothJoin);
677
_lastPoint
,