2 writes to Points
Microsoft.Maui.Controls (2)
Shapes\PolyQuadraticBezierSegment.cs (2)
10
Points
= new PointCollection();
16
Points
= points;
10 references to Points
Microsoft.Maui.Controls (9)
Shapes\GeometryHelper.cs (4)
183
for (int bez = 0; bez < polyQuadBezSeg.
Points
.Count; bez += 2)
185
if (bez + 1 > polyQuadBezSeg.
Points
.Count - 1)
189
Point pt1 = matx.Transform(polyQuadBezSeg.
Points
[bez]);
190
Point pt2 = matx.Transform(polyQuadBezSeg.
Points
[bez + 1]);
Shapes\PathGeometry.cs (3)
167
var points = polyQuadraticBezierSegment.
Points
;
171
for (int i = 0; i < polyQuadraticBezierSegment.
Points
.Count; i += 2)
173
if (i + 1 > polyQuadraticBezierSegment.
Points
.Count - 1)
Shapes\PolyQuadraticBezierSegment.cs (2)
19
/// <summary>Bindable property for <see cref="
Points
"/>.</summary>
21
BindableProperty.Create(nameof(
Points
), typeof(PointCollection), typeof(PolyQuadraticBezierSegment), null);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\GeometryExtensions.cs (1)
164
PointCollection points = polyBezierSegment.
Points
;