2 writes to Points
Microsoft.Maui.Controls (2)
Shapes\PolyLineSegment.cs (2)
10
Points
= new PointCollection();
16
Points
= points;
18 references to Points
Microsoft.Maui.Controls (17)
Shapes\GeometryHelper.cs (14)
45
segDst.
Points
.Add(matx.Transform(lineGeoSrc.EndPoint));
57
segDst.
Points
.Add(matx.Transform(new Point(rectGeoSrc.Rect.Right, rectGeoSrc.Rect.Top)));
58
segDst.
Points
.Add(matx.Transform(new Point(rectGeoSrc.Rect.Right, rectGeoSrc.Rect.Bottom)));
59
segDst.
Points
.Add(matx.Transform(new Point(rectGeoSrc.Rect.Left, rectGeoSrc.Rect.Bottom)));
60
segDst.
Points
.Add(matx.Transform(new Point(rectGeoSrc.Rect.Left, rectGeoSrc.Rect.Top)));
83
segDst.
Points
.Add(pt);
113
segDst.
Points
.Add(ptLast);
119
foreach (Point pt in polySegSrc.
Points
)
122
segDst.
Points
.Add(ptLast);
137
segDst.
Points
.Add(points[i]);
159
segDst.
Points
.Add(points[i]);
175
segDst.
Points
.Add(points[i]);
196
segDst.
Points
.Add(points[i]);
220
segDst.
Points
.Add(ptLast = points[i]);
Shapes\PathGeometry.cs (1)
129
foreach (var p in polyLineSegment.
Points
)
Shapes\PolyLineSegment.cs (2)
19
/// <summary>Bindable property for <see cref="
Points
"/>.</summary>
21
BindableProperty.Create(nameof(
Points
), typeof(PointCollection), typeof(PolyLineSegment), null);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\GeometryExtensions.cs (1)
111
PointCollection points = polylineSegment.
Points
;