From 77d448c517b8dcefd649209d280488e00cf3a939 Mon Sep 17 00:00:00 2001 From: BobLd Date: Sun, 30 Aug 2020 13:57:02 +0100 Subject: [PATCH] better functions documentation --- .../Geometry/GeometryExtensions.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs b/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs index 8aad608e..df2ceaf7 100644 --- a/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs +++ b/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs @@ -323,7 +323,7 @@ #region PdfRectangle /// - /// Whether the rectangle contains the point. + /// Whether the point is located inside the rectangle. /// /// The rectangle that should contain the point. /// The point that should be contained within the rectangle. @@ -372,7 +372,7 @@ } /// - /// Whether the rectangle contains the rectangle. + /// Whether the other rectangle is located inside the rectangle. /// /// The rectangle that should contain the other rectangle. /// The other rectangle that should be contained within the rectangle. @@ -480,7 +480,7 @@ #region PdfLine /// - /// Whether the line segment contains the point. + /// Whether the point is located on the line segment. /// public static bool Contains(this PdfLine line, PdfPoint point) { @@ -538,7 +538,7 @@ #region Path Line /// - /// Whether the line segment contains the point. + /// Whether the point is located on the line segment. /// public static bool Contains(this Line line, PdfPoint point) { @@ -924,7 +924,7 @@ #endregion /// - /// Whether the subpath contains the point. + /// Whether the point is located inside the subpath. /// Ignores winding rule. /// /// The subpath that should contain the point. @@ -939,7 +939,7 @@ } /// - /// Whether the subpath contains the rectangle. + /// Whether the rectangle is located inside the subpath. /// Ignores winding rule. /// /// The subpath that should contain the rectangle. @@ -956,7 +956,7 @@ } /// - /// Whether the subpath contains the other subpath. + /// Whether the other subpath is located inside the subpath. /// Ignores winding rule. /// /// The subpath that should contain the rectangle. @@ -989,7 +989,7 @@ } /// - /// Whether the path contains the point. + /// Whether the point is located inside the path. /// /// The path that should contain the point. /// The point that should be contained within the path. @@ -1004,7 +1004,7 @@ } /// - /// Whether the path contains the rectangle. + /// Whether the rectangle is located inside the path. /// /// The path that should contain the rectangle. /// The rectangle that should be contained within the path. @@ -1021,7 +1021,7 @@ } /// - /// Whether the path contains the subpath. + /// Whether the subpath is located inside the path. /// /// The path that should contain the subpath. /// The subpath that should be contained within the path. @@ -1038,7 +1038,7 @@ } /// - /// Whether the path contains the other path. + /// Whether the other path is located inside the path. /// /// The path that should contain the path. /// The other path that should be contained within the path.