Foundation for the geometry simplifier that will replace consecutive line segments with fitted arcs. Adds ArcCandidate data class, GeometrySimplifier with stub Analyze/Apply methods, and FitCircle using the Kasa algebraic least-squares method. Also adds InternalsVisibleTo for OpenNest.Tests on OpenNest.Core. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
471 B
XML
15 lines
471 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>OpenNest</RootNamespace>
|
|
<AssemblyName>OpenNest.Core</AssemblyName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="OpenNest.Tests" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Clipper2" Version="2.0.0" />
|
|
<PackageReference Include="System.Drawing.Common" Version="8.0.10" />
|
|
</ItemGroup>
|
|
</Project>
|