14 references to Counterclockwise
PresentationCore (7)
Core\CSharp\MS\Internal\Media\ParserStreamGeometrycontext.cs (2)
595return SweepDirection.Counterclockwise; 602if (sweep == SweepDirection.Counterclockwise)
Core\CSharp\System\Windows\Media\Generated\ArcSegment.cs (2)
272internal const SweepDirection c_SweepDirection = SweepDirection.Counterclockwise; 337SweepDirection.Counterclockwise,
Core\CSharp\System\Windows\Media\ParsersCommon.cs (1)
700sweep ? 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)
42return (value == SweepDirection.Counterclockwise) ||
PresentationFramework.Aero (2)
Microsoft\Windows\Themes\ButtonChrome.cs (2)
631borderFigure.Segments.Add(new ArcSegment(new Point(bounds.Right - 0.5, bounds.Bottom - 2.5), new Size(2.0, 2.0), 0.0, false, SweepDirection.Counterclockwise, true)); 633borderFigure.Segments.Add(new ArcSegment(new Point(bounds.Right - 2.5, bounds.Top + 0.5), new Size(2.0, 2.0), 0.0, false, SweepDirection.Counterclockwise, true));
PresentationFramework.Classic (4)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (4)
1091figure.Segments.Add(new ArcSegment(new Point(right - outerRadius, top + 1.0), innerCorner, 0.0, false, SweepDirection.Counterclockwise, true)); //inner top right rounded corner 1093figure.Segments.Add(new ArcSegment(new Point(left + 1.0, top + outerRadius), innerCorner, 0.0, false, SweepDirection.Counterclockwise, true));//inner top left rounder corner 1119figure.Segments.Add(new ArcSegment(new Point(right - 1.0 - innerRadius * 0.293, top + 1.0 + innerRadius * 0.293), innerCorner, 0.0, false, SweepDirection.Counterclockwise, true)); //inner left rounded corner 1432sgc.ArcTo(new Point(10, 2), new Size(4, 4), 0, false, SweepDirection.Counterclockwise, true, false);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\ConnectorPointsToSegmentsConverter.cs (1)
45retVal.Add(new ArcSegment(turningPoint2, new Size(RoundRadius, RoundRadius), 0, false, crossProductZ > 0 ? SweepDirection.Clockwise : SweepDirection.Counterclockwise, true));