From 4d368d14a69d294ccc2eec752f779b864bf7a4f4 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Thu, 15 Dec 2016 12:10:06 +0000 Subject: [PATCH] make constructor public --- src/ImageSharp/Drawing/Paths/Path.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }