Browse Source

make constructor public

pull/37/head
Scott Williams 10 years ago
parent
commit
906bdd9ef6
  1. 2
      src/ImageSharp/Drawing/Paths/Path.cs

2
src/ImageSharp/Drawing/Paths/Path.cs

@ -25,7 +25,7 @@ namespace ImageSharp.Drawing.Paths
/// Initializes a new instance of the <see cref="Path"/> class.
/// </summary>
/// <param name="segment">The segment.</param>
internal Path(params ILineSegment[] segment)
public Path(params ILineSegment[] segment)
{
this.innerPath = new InternalPath(segment, false);
}

Loading…
Cancel
Save