update comments

This commit is contained in:
BobLd
2020-04-02 20:35:42 +01:00
committed by Eliot Jones
parent b923a42f9e
commit d804a63905
2 changed files with 2 additions and 3 deletions

View File

@@ -176,12 +176,12 @@
/// </summary>
public void Rectangle(double x, double y, double width, double height)
{
// is equivalent to
// is equivalent to:
MoveTo(x, y); // x y m
LineTo(x + width, y); // (x + width) y l
LineTo(x + width, y + height); // (x + width) (y + height) l
LineTo(x, y + height); // x (y + height) l
CloseSubpath(); // h
CloseSubpath(); // h
IsDrawnAsRectangle = true;
}

View File

@@ -89,7 +89,6 @@
/// <summary>
/// Close the current subpath.
/// </summary>
/// <returns></returns>
PdfPoint CloseSubpath();
/// <summary>