Browse Source

make constructor public

af/merge-core
Scott Williams 9 years ago
parent
commit
4d368d14a6
  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