Add PdfSubpath comment

This commit is contained in:
BobLd
2020-04-02 18:37:06 +01:00
committed by Eliot Jones
parent 401c4484b5
commit 04300eb12c
2 changed files with 2 additions and 6 deletions

View File

@@ -6,14 +6,14 @@
using System.Text;
/// <summary>
///
/// A supbpath is made up of a sequence of connected segments.
/// </summary>
public class PdfSubpath
{
private readonly List<IPathCommand> commands = new List<IPathCommand>();
/// <summary>
/// The sequence of sub-paths which form this <see cref="PdfSubpath"/>.
/// The sequence of commands which form this <see cref="PdfSubpath"/>.
/// </summary>
public IReadOnlyList<IPathCommand> Commands => commands;

View File

@@ -499,10 +499,6 @@
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()
{
AddCurrentSubpath();