├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── NuGet.config ├── README.md ├── SixLabors.Shapes.sln ├── SixLabors.Shapes.sln.DotSettings ├── SixLabors.Shapes.v3.ncrunchsolution ├── appveyor.yml ├── codecov.yml ├── gitversion.yml ├── icons ├── icon.png ├── icon.svg └── shapes-logo.svg ├── samples └── DrawShapesWithImageSharp │ ├── DrawShapesWithImageSharp.csproj │ ├── ImageSharpLogo.cs │ ├── NuGet.config │ └── Program.cs ├── src ├── Shared │ ├── AssemblyInfo.Common.cs │ └── stylecop.json ├── SixLabors.Shapes.Text │ ├── BaseGlyphBuilder.cs │ ├── GlyphBuilder.cs │ ├── PathGlyphBuilder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SixLabors.Shapes.Text.csproj │ ├── TextBuilder.cs │ └── stylecop.json └── SixLabors.Shapes │ ├── Clipper │ └── clipper.cs │ ├── ClipperExtensions.cs │ ├── ComplexPolygon.cs │ ├── CubicBezierLineSegment.cs │ ├── EllipsePolygon.cs │ ├── EndCapStyle.cs │ ├── Helpers │ ├── ArrayExtensions.cs │ └── VectorExtensions.cs │ ├── ILineSegment.cs │ ├── IPath.cs │ ├── IPathCollection.cs │ ├── ISimplePath.cs │ ├── InternalPath.cs │ ├── JointStyle.cs │ ├── LinearLineSegment.cs │ ├── Outliner.cs │ ├── Path.cs │ ├── PathBuilder.cs │ ├── PathCollection.cs │ ├── PathExtensions.cs │ ├── PathTypes.cs │ ├── PointInfo.cs │ ├── Polygon.cs │ ├── PolygonClipper │ ├── ClippablePath.cs │ ├── Clipper.cs │ ├── ClipperException.cs │ └── ClippingType.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RectangularPolygon.cs │ ├── RegularPolygon.cs │ ├── SegmentInfo.cs │ ├── SixLabors.Shapes.csproj │ └── Star.cs └── tests ├── CodeCoverage ├── CodeCoverage.cmd └── packages.config ├── SixLabors.Shapes.Benchmarks ├── Program.cs └── SixLabors.Shapes.Benchmarks.csproj └── SixLabors.Shapes.Tests ├── BezierLineSegmentTests.cs ├── ComplexPolygonTests.cs ├── EllipseTests.cs ├── GeneralClosedPolygonIntersectionTests.cs ├── InternalPathExtensions.cs ├── InternalPathTests.cs ├── Issues ├── Issue_16.cs ├── Issue_19.cs └── Issue_ClippedPaths.cs ├── LinearLineSegmentTests.cs ├── PathBuilderTests.cs ├── PathExtentionTests.cs ├── PathTests.cs ├── PolygonClipper └── ClipperTests.cs ├── PolygonTests.cs ├── RectangleTests.cs ├── RegularPolygonTests.cs ├── Shapes.cs ├── SixLabors.Shapes.Tests.csproj ├── StarTests.cs └── Structs ├── TestPoint.cs └── TestSize.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/README.md -------------------------------------------------------------------------------- /SixLabors.Shapes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/SixLabors.Shapes.sln -------------------------------------------------------------------------------- /SixLabors.Shapes.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/SixLabors.Shapes.sln.DotSettings -------------------------------------------------------------------------------- /SixLabors.Shapes.v3.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/SixLabors.Shapes.v3.ncrunchsolution -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/codecov.yml -------------------------------------------------------------------------------- /gitversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/gitversion.yml -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/icons/icon.svg -------------------------------------------------------------------------------- /icons/shapes-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/icons/shapes-logo.svg -------------------------------------------------------------------------------- /samples/DrawShapesWithImageSharp/DrawShapesWithImageSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/samples/DrawShapesWithImageSharp/DrawShapesWithImageSharp.csproj -------------------------------------------------------------------------------- /samples/DrawShapesWithImageSharp/ImageSharpLogo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/samples/DrawShapesWithImageSharp/ImageSharpLogo.cs -------------------------------------------------------------------------------- /samples/DrawShapesWithImageSharp/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/samples/DrawShapesWithImageSharp/NuGet.config -------------------------------------------------------------------------------- /samples/DrawShapesWithImageSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/samples/DrawShapesWithImageSharp/Program.cs -------------------------------------------------------------------------------- /src/Shared/AssemblyInfo.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/Shared/AssemblyInfo.Common.cs -------------------------------------------------------------------------------- /src/Shared/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/Shared/stylecop.json -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/BaseGlyphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/BaseGlyphBuilder.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/GlyphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/GlyphBuilder.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/PathGlyphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/PathGlyphBuilder.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/SixLabors.Shapes.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/SixLabors.Shapes.Text.csproj -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/TextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/TextBuilder.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes.Text/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes.Text/stylecop.json -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Clipper/clipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Clipper/clipper.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/ClipperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/ClipperExtensions.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/ComplexPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/ComplexPolygon.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/CubicBezierLineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/CubicBezierLineSegment.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/EllipsePolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/EllipsePolygon.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/EndCapStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/EndCapStyle.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Helpers/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Helpers/ArrayExtensions.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Helpers/VectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Helpers/VectorExtensions.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/ILineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/ILineSegment.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/IPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/IPath.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/IPathCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/IPathCollection.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/ISimplePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/ISimplePath.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/InternalPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/InternalPath.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/JointStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/JointStyle.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/LinearLineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/LinearLineSegment.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Outliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Outliner.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Path.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PathBuilder.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PathCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PathCollection.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PathExtensions.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PathTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PathTypes.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PointInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PointInfo.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Polygon.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PolygonClipper/ClippablePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PolygonClipper/ClippablePath.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PolygonClipper/Clipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PolygonClipper/Clipper.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PolygonClipper/ClipperException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PolygonClipper/ClipperException.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/PolygonClipper/ClippingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/PolygonClipper/ClippingType.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/RectangularPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/RectangularPolygon.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/RegularPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/RegularPolygon.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/SegmentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/SegmentInfo.cs -------------------------------------------------------------------------------- /src/SixLabors.Shapes/SixLabors.Shapes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/SixLabors.Shapes.csproj -------------------------------------------------------------------------------- /src/SixLabors.Shapes/Star.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/src/SixLabors.Shapes/Star.cs -------------------------------------------------------------------------------- /tests/CodeCoverage/CodeCoverage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/CodeCoverage/CodeCoverage.cmd -------------------------------------------------------------------------------- /tests/CodeCoverage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/CodeCoverage/packages.config -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Benchmarks/SixLabors.Shapes.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Benchmarks/SixLabors.Shapes.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/BezierLineSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/BezierLineSegmentTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/ComplexPolygonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/ComplexPolygonTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/EllipseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/EllipseTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/GeneralClosedPolygonIntersectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/GeneralClosedPolygonIntersectionTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/InternalPathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/InternalPathExtensions.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/InternalPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/InternalPathTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/Issues/Issue_16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/Issues/Issue_16.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/Issues/Issue_19.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/Issues/Issue_19.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/Issues/Issue_ClippedPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/Issues/Issue_ClippedPaths.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/LinearLineSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/LinearLineSegmentTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/PathBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/PathBuilderTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/PathExtentionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/PathExtentionTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/PathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/PathTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/PolygonClipper/ClipperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/PolygonClipper/ClipperTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/PolygonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/PolygonTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/RectangleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/RectangleTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/RegularPolygonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/RegularPolygonTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/Shapes.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/SixLabors.Shapes.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/SixLabors.Shapes.Tests.csproj -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/StarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/StarTests.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/Structs/TestPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/Structs/TestPoint.cs -------------------------------------------------------------------------------- /tests/SixLabors.Shapes.Tests/Structs/TestSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Shapes/HEAD/tests/SixLabors.Shapes.Tests/Structs/TestSize.cs --------------------------------------------------------------------------------