4 instantiations of PathGeometry
Microsoft.Maui.Controls (4)
Shapes\GeometryHelper.cs (2)
16 return new PathGeometry(); 18 PathGeometry pathGeoDst = new PathGeometry();
Shapes\PathGeometryConverter.cs (1)
20 PathGeometry pathGeometry = new PathGeometry();
Shapes\RoundRectangleGeometry.cs (1)
111 roundedRectGeometry.Children.Add(new PathGeometry(pathFigureCollection, FillRule.Nonzero));
14 references to PathGeometry
Microsoft.Maui.Controls (13)
Platform\ShapeExtensions.cs (1)
20 if (data is PathGeometry pathGeometry)
Shapes\GeometryHelper.cs (6)
12 public static PathGeometry FlattenGeometry(Geometry geoSrc, double tolerance) 18 PathGeometry pathGeoDst = new PathGeometry(); 25 public static void FlattenGeometry(PathGeometry pathGeoDst, Geometry geoSrc, double tolerance, Matrix matxPrevious) 90 else if (geoSrc is PathGeometry) 92 PathGeometry pathGeoSrc = geoSrc as PathGeometry;
Shapes\Path.cs (2)
53 if (oldValue is PathGeometry pathGeometry) 61 if (newValue is PathGeometry pathGeometry)
Shapes\PathGeometry.cs (3)
36 BindableProperty.Create(nameof(Figures), typeof(PathFigureCollection), typeof(PathGeometry), null, 41 BindableProperty.Create(nameof(FillRule), typeof(FillRule), typeof(PathGeometry), FillRule.EvenOdd); 45 (bindable as PathGeometry)?.UpdatePathFigureCollection(oldValue as PathFigureCollection, newValue as PathFigureCollection);
Shapes\PathGeometryConverter.cs (1)
20 PathGeometry pathGeometry = new PathGeometry();
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\GeometryExtensions.cs (1)
82 static SKPath MakePath(PathGeometry pathGeometry)