8 writes to IsSmoothJoin
PresentationCore (8)
Core\CSharp\System\Windows\Media\BezierSegment.cs (1)
62
IsSmoothJoin
= isSmoothJoin;
Core\CSharp\System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (1)
76
IsSmoothJoin
= isSmoothJoin;
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (1)
76
IsSmoothJoin
= isSmoothJoin;
Core\CSharp\System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (1)
76
IsSmoothJoin
= isSmoothJoin;
Core\CSharp\System\Windows\Media\LineSegment.cs (1)
59
IsSmoothJoin
= isSmoothJoin;
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (2)
294
segment.
IsSmoothJoin
= isSmoothJoin;
459
segment.
IsSmoothJoin
= _currentSegmentIsSmoothJoin;
Core\CSharp\System\Windows\Media\QuadraticBezierSegment.cs (1)
61
IsSmoothJoin
= isSmoothJoin;
14 references to IsSmoothJoin
PresentationCore (14)
Core\CSharp\System\Windows\Media\ArcSegment.cs (2)
114
bool isSmoothJoin =
IsSmoothJoin
;
146
ctx.ArcTo(Point, Size, RotationAngle, IsLargeArc, SweepDirection, IsStroked,
IsSmoothJoin
);
Core\CSharp\System\Windows\Media\BezierSegment.cs (2)
88
figure.Segments.Add(new BezierSegment(pt1, pt2, pt3, IsStroked,
IsSmoothJoin
));
100
ctx.BezierTo(Point1, Point2, Point3, IsStroked,
IsSmoothJoin
);
Core\CSharp\System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
108
figure.Segments.Add(new PolyBezierSegment(copy, IsStroked,
IsSmoothJoin
));
131
ctx.PolyBezierTo(Points, IsStroked,
IsSmoothJoin
);
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
108
figure.Segments.Add(new PolyLineSegment(copy, IsStroked,
IsSmoothJoin
));
131
ctx.PolyLineTo(Points, IsStroked,
IsSmoothJoin
);
Core\CSharp\System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
108
figure.Segments.Add(new PolyQuadraticBezierSegment(copy, IsStroked,
IsSmoothJoin
));
131
ctx.PolyQuadraticBezierTo(Points, IsStroked,
IsSmoothJoin
);
Core\CSharp\System\Windows\Media\LineSegment.cs (2)
80
figure.Segments.Add(new LineSegment(pt, IsStroked,
IsSmoothJoin
));
90
ctx.LineTo(Point, IsStroked,
IsSmoothJoin
);
Core\CSharp\System\Windows\Media\QuadraticBezierSegment.cs (2)
85
figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2, IsStroked,
IsSmoothJoin
));
97
ctx.QuadraticBezierTo(Point1, Point2, IsStroked,
IsSmoothJoin
);