mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-09-18 18:27:55 +08:00
update comments
This commit is contained in:
@@ -176,7 +176,7 @@
|
||||
/// </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
|
||||
|
@@ -89,7 +89,6 @@
|
||||
/// <summary>
|
||||
/// Close the current subpath.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
PdfPoint CloseSubpath();
|
||||
|
||||
/// <summary>
|
||||
|
Reference in New Issue
Block a user