You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/UglyToad.PdfPig/Graphics/PdfPath.cs
+35-11Lines changed: 35 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,9 @@
6
6
usingUglyToad.PdfPig.Graphics.Core;
7
7
8
8
/// <summary>
9
-
/// A path is made up of one or more disconnected subpaths, each comprising a sequence of connected segments. The topology of the path is unrestricted: it may be concave or convex, may contain multiple subpaths representing disjoint areas, and may intersect itself in arbitrary ways.
9
+
/// A path is made up of one or more disconnected subpaths, each comprising a sequence of connected segments.
10
+
/// The topology of the path is unrestricted: it may be concave or convex, may contain multiple subpaths representing
11
+
/// disjoint areas, and may intersect itself in arbitrary ways.
10
12
/// <para>A path shall be composed of straight and curved line segments, which may connect to one another or may be disconnected.</para>
11
13
/// </summary>
12
14
publicclassPdfPath:List<PdfSubpath>
@@ -29,7 +31,7 @@ public class PdfPath : List<PdfSubpath>
29
31
/// <summary>
30
32
/// The fill color.
31
33
/// </summary>
32
-
publicIColor?FillColor{get;internalset;}
34
+
publicIColor?FillColor{get;privateset;}
33
35
34
36
/// <summary>
35
37
/// Returns true if the path is stroked.
@@ -39,31 +41,31 @@ public class PdfPath : List<PdfSubpath>
39
41
/// <summary>
40
42
/// The stroke color.
41
43
/// </summary>
42
-
publicIColor?StrokeColor{get;internalset;}
44
+
publicIColor?StrokeColor{get;privateset;}
43
45
44
46
/// <summary>
45
47
/// Thickness in user space units of path to be stroked.
0 commit comments