10 writes to _lastPoint
PresentationCore (10)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (10)
540
_lastPoint
= new Point(0, 0);
567
_lastPoint
= ReadPoint(cmd, ! AllowComma);
576
_lastPoint
= ReadPoint(cmd, ! AllowComma);
592
case 'l':
_lastPoint
= ReadPoint(cmd, ! AllowComma); break;
593
case 'L':
_lastPoint
= ReadPoint(cmd, ! AllowComma); break;
635
_lastPoint
= ReadPoint(cmd, AllowComma);
662
_lastPoint
= ReadPoint(cmd, ! AllowComma);
667
_lastPoint
= ReadPoint(cmd, AllowComma);
690
_lastPoint
= ReadPoint(cmd, AllowComma);
719
_lastPoint
= _lastStart; // Set reference point to be first point of current figure
17 references to _lastPoint
PresentationCore (17)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (17)
493
x +=
_lastPoint
.X;
494
y +=
_lastPoint
.Y;
506
return new Point(2 *
_lastPoint
.X - _secondLastPoint.X,
507
2 *
_lastPoint
.Y - _secondLastPoint.Y);
569
context.BeginFigure(
_lastPoint
, IsFilled, ! IsClosed);
571
_lastStart =
_lastPoint
;
578
context.LineTo(
_lastPoint
, IsStroked, ! IsSmoothJoin);
594
case 'h':
_lastPoint
.X += ReadNumber(! AllowComma); break;
595
case 'H':
_lastPoint
.X = ReadNumber(! AllowComma); break;
596
case 'v':
_lastPoint
.Y += ReadNumber(! AllowComma); break;
597
case 'V':
_lastPoint
.Y = ReadNumber(! AllowComma); break;
600
context.LineTo(
_lastPoint
, IsStroked, ! IsSmoothJoin);
623
p =
_lastPoint
;
637
context.BezierTo(p, _secondLastPoint,
_lastPoint
, IsStroked, ! IsSmoothJoin);
659
_secondLastPoint =
_lastPoint
;
670
context.QuadraticBezierTo(_secondLastPoint,
_lastPoint
, IsStroked, ! IsSmoothJoin);
693
_lastPoint
,