Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Aug 15, 2024
1 parent ed0b790 commit 28c84bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ACadSharp/Entities/IPolyline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ public interface IPolyline : IEntity
/// </summary>
double Thickness { get; set; }

/// <summary>
/// Explodes the polyline into a collection of entities formed by <see cref="Line"/> and <see cref="Arc"/>.
/// </summary>
/// <returns></returns>
IEnumerable<Entity> Explode();
}
}
1 change: 1 addition & 0 deletions src/ACadSharp/Entities/PolyLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ public Polyline() : base()
this.Vertices = new SeqendCollection<Vertex>(this);
}

/// <inheritdoc/>
public abstract IEnumerable<Entity> Explode();

/// <inheritdoc/>
Expand Down

0 comments on commit 28c84bd

Please sign in to comment.