1 instantiation of BezierSegment
Microsoft.Maui.Controls (1)
Shapes\PathFigureCollectionConverter.cs (1)
220
BezierSegment bezierSegment = new
BezierSegment
10 references to BezierSegment
Microsoft.Maui.Controls (10)
Shapes\BezierSegment.cs (3)
25
BindableProperty.Create(nameof(Point1), typeof(Point), typeof(
BezierSegment
), new Point(0, 0));
29
BindableProperty.Create(nameof(Point2), typeof(Point), typeof(
BezierSegment
), new Point(0, 0));
33
BindableProperty.Create(nameof(Point3), typeof(Point), typeof(
BezierSegment
), new Point(0, 0));
Shapes\GeometryHelper.cs (3)
125
else if (segSrc is
BezierSegment
)
127
BezierSegment
bezSeg = segSrc as
BezierSegment
;
Shapes\PathFigureCollectionConverter.cs (2)
220
BezierSegment
bezierSegment = new BezierSegment
608
else if (pathSegment is
BezierSegment
bezierSegment)
Shapes\PathGeometry.cs (2)
78
else if (segment is
BezierSegment
bezierSegment)
135
void AddBezier(PathF path,
BezierSegment
bezierSegment)