1 instantiation of ArcSegment
Microsoft.Maui.Controls (1)
Shapes\PathFigureCollectionConverter.cs (1)
291
ArcSegment arcSegment = new
ArcSegment
15 references to ArcSegment
Microsoft.Maui.Controls (12)
Shapes\ArcSegment.cs (5)
28
BindableProperty.Create(nameof(Point), typeof(Point), typeof(
ArcSegment
), new Point(0, 0));
32
BindableProperty.Create(nameof(Size), typeof(Size), typeof(
ArcSegment
), new Size(0, 0));
36
BindableProperty.Create(nameof(RotationAngle), typeof(double), typeof(
ArcSegment
), 0.0);
40
BindableProperty.Create(nameof(SweepDirection), typeof(SweepDirection), typeof(
ArcSegment
), SweepDirection.CounterClockwise);
44
BindableProperty.Create(nameof(IsLargeArc), typeof(bool), typeof(
ArcSegment
), false);
Shapes\GeometryHelper.cs (3)
201
else if (segSrc is
ArcSegment
)
203
ArcSegment
arcSeg = segSrc as
ArcSegment
;
Shapes\PathFigureCollectionConverter.cs (2)
291
ArcSegment
arcSegment = new ArcSegment
636
else if (pathSegment is
ArcSegment
arcSegment)
Shapes\PathGeometry.cs (2)
76
if (segment is
ArcSegment
arcSegment)
97
void AddArc(PathF path,
ArcSegment
arcSegment)
Microsoft.Maui.Controls.Compatibility (3)
Tizen\Extensions\GeometryExtensions.cs (3)
176
else if (pathSegment is
ArcSegment
)
178
ArcSegment
arcSegment = pathSegment as
ArcSegment
;