20 references to Clockwise
PresentationCore (7)
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (1)
976
SweepDirection.
Clockwise
,
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (1)
597
return SweepDirection.
Clockwise
;
Core\CSharp\System\Windows\Media\ArcSegment.cs (1)
173
SweepDirection == SweepDirection.
Clockwise
? "1" : "0",
Core\CSharp\System\Windows\Media\ByteStreamGeometryContext.cs (1)
271
arcToSegment.Sweep = (uint)(sweepDirection == SweepDirection.
Clockwise
? 1 : 0);
Core\CSharp\System\Windows\Media\ParsersCommon.cs (1)
700
sweep ? SweepDirection.
Clockwise
: SweepDirection.Counterclockwise,
Core\CSharp\System\Windows\Media\PathGeometry.cs (1)
263
(pSegmentArc->Sweep == 0) ? SweepDirection.Counterclockwise : SweepDirection.
Clockwise
,
Shared\MS\Internal\Generated\SweepDirectionValidation.cs (1)
43
(value == SweepDirection.
Clockwise
);
PresentationFramework (4)
src\Framework\System\Windows\Controls\Border.cs (4)
739
ctx.ArcTo(rightTop, new Size(radiusX, radiusY), 0, false, SweepDirection.
Clockwise
, true, false);
751
ctx.ArcTo(bottomRight, new Size(radiusX, radiusY), 0, false, SweepDirection.
Clockwise
, true, false);
763
ctx.ArcTo(leftBottom, new Size(radiusX, radiusY), 0, false, SweepDirection.
Clockwise
, true, false);
775
ctx.ArcTo(topLeft, new Size(radiusX, radiusY), 0, false, SweepDirection.
Clockwise
, true, false);
PresentationFramework.Classic (4)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (4)
1087
figure.Segments.Add(new ArcSegment(new Point(left + outerRadius, top), outerCorner, 0.0, false, SweepDirection.
Clockwise
, true)); //top left rounded corner
1089
figure.Segments.Add(new ArcSegment(new Point(right - outerRadius * 0.293, top + outerRadius * 0.293), outerCorner, 0.0, false, SweepDirection.
Clockwise
, true)); //top right corner
1121
figure.Segments.Add(new ArcSegment(new Point(right, top + outerRadius), outerCorner, 0.0, false, SweepDirection.
Clockwise
, true)); //top right corner
1403
sgc.ArcTo(new Point(10, 2), new Size(4, 4), 0, false, SweepDirection.
Clockwise
, true, false);
PresentationFramework.Luna (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (2)
185
ArcSegment arc = new ArcSegment(new Point(size.Width - 2.5, 2.5), new Size(2.0, 2.0), 90.0, false, SweepDirection.
Clockwise
, true);
193
arc = new ArcSegment(new Point(0.5, 0.5), new Size(2.0, 2.0), 90.0, false, SweepDirection.
Clockwise
, true);
PresentationFramework.Royale (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (2)
114
ArcSegment arc = new ArcSegment(new Point(size.Width - 2.5, 2.5), new Size(2.0, 2.0), 90.0, false, SweepDirection.
Clockwise
, true);
122
arc = new ArcSegment(new Point(0.5, 0.5), new Size(2.0, 2.0), 90.0, false, SweepDirection.
Clockwise
, true);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorPointsToSegmentsConverter.cs (1)
45
retVal.Add(new ArcSegment(turningPoint2, new Size(RoundRadius, RoundRadius), 0, false, crossProductZ > 0 ? SweepDirection.
Clockwise
: SweepDirection.Counterclockwise, true));