ca67b1bd29
Ellipses with extrusion direction Z=-1 had their parametric direction reversed, causing the curve to appear mirrored. Negate start/end parameters when Normal.Z < 0 to correct the minor-axis traversal. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
613 B
XML
17 lines
613 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>OpenNest.IO</RootNamespace>
|
|
<AssemblyName>OpenNest.IO</AssemblyName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="OpenNest.Tests" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj" />
|
|
<ProjectReference Include="..\OpenNest.Engine\OpenNest.Engine.csproj" />
|
|
<PackageReference Include="ACadSharp" Version="3.1.32" />
|
|
<PackageReference Include="ClosedXML" Version="0.104.2" />
|
|
</ItemGroup>
|
|
</Project>
|