diff --git a/src/ImageSharp/Drawing/Paths/Path.cs b/src/ImageSharp/Drawing/Paths/Path.cs
index b94275d57..eb9553574 100644
--- a/src/ImageSharp/Drawing/Paths/Path.cs
+++ b/src/ImageSharp/Drawing/Paths/Path.cs
@@ -25,7 +25,7 @@ namespace ImageSharp.Drawing.Paths
/// Initializes a new instance of the class.
///
/// The segment.
- internal Path(params ILineSegment[] segment)
+ public Path(params ILineSegment[] segment)
{
this.innerPath = new InternalPath(segment, false);
}