mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-15 03:34:52 +08:00
Add PdfSubpath comment
This commit is contained in:
@@ -6,14 +6,14 @@
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
/// A supbpath is made up of a sequence of connected segments.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class PdfSubpath
|
public class PdfSubpath
|
||||||
{
|
{
|
||||||
private readonly List<IPathCommand> commands = new List<IPathCommand>();
|
private readonly List<IPathCommand> commands = new List<IPathCommand>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The sequence of sub-paths which form this <see cref="PdfSubpath"/>.
|
/// The sequence of commands which form this <see cref="PdfSubpath"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IReadOnlyList<IPathCommand> Commands => commands;
|
public IReadOnlyList<IPathCommand> Commands => commands;
|
||||||
|
|
||||||
|
@@ -499,10 +499,6 @@
|
|||||||
ClosePath();
|
ClosePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// End the path object without filling or stroking it. This operator shall be a path-painting no-op,
|
|
||||||
/// used primarily for the side effect of changing the current clipping path (see 8.5.4, "Clipping Path Operators").
|
|
||||||
/// </summary>
|
|
||||||
public void EndPath()
|
public void EndPath()
|
||||||
{
|
{
|
||||||
AddCurrentSubpath();
|
AddCurrentSubpath();
|
||||||
|
Reference in New Issue
Block a user