diff --git a/Contour.cs b/Contour.cs index 29b8b6d..06b41a4 100644 --- a/Contour.cs +++ b/Contour.cs @@ -42,6 +42,15 @@ namespace Boprs /// true if the contour is clockwise, false if counter-clockwise. public bool IsClockwise { get => SignedArea < 0; } + /// + /// Get a copy of the list of the vertices of this contour. + /// + /// List of vertices defining this region. + public List GetVertexCopies() + { + return new List(Vertices); + } + /// /// Compute the signed area of the contour ///