Box constructor and derived properties (Right, Top, Center, Translate, Offset) had Width and Length swapped — Length is X axis, Width is Y axis. Corrected across Core geometry, plate bounding box, rectangle packing, fill algorithms, tests, and UI renderers. Added FillSpiral with center remnant detection and recursive FillBest on the gap between the 4 spiral quadrants. RectFill.FillBest now compares spiral+center vs full best-fit fairly. BestCombination returns a CombinationResult record instead of out params. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
using System.Collections.Generic;
|
|
using OpenNest.Geometry;
|
|
|
|
namespace OpenNest;
|
|
|
|
public static class AutoSplitCalculator
|
|
{
|
|
public static List<SplitLine> FitToPlate(Box partBounds, double plateWidth, double plateHeight,
|
|
double edgeSpacing, double featureOverhang)
|
|
{
|
|
var usableWidth = plateWidth - 2 * edgeSpacing - featureOverhang;
|
|
var usableHeight = plateHeight - 2 * edgeSpacing - featureOverhang;
|
|
|
|
var lines = new List<SplitLine>();
|
|
|
|
var verticalSplits = usableWidth > 0 ? (int)System.Math.Ceiling(partBounds.Length / usableWidth) - 1 : 0;
|
|
var horizontalSplits = usableHeight > 0 ? (int)System.Math.Ceiling(partBounds.Width / usableHeight) - 1 : 0;
|
|
|
|
if (verticalSplits < 0) verticalSplits = 0;
|
|
if (horizontalSplits < 0) horizontalSplits = 0;
|
|
|
|
for (var i = 1; i <= verticalSplits; i++)
|
|
lines.Add(new SplitLine(partBounds.X + usableWidth * i, CutOffAxis.Vertical));
|
|
|
|
for (var i = 1; i <= horizontalSplits; i++)
|
|
lines.Add(new SplitLine(partBounds.Y + usableHeight * i, CutOffAxis.Horizontal));
|
|
|
|
return lines;
|
|
}
|
|
|
|
public static List<SplitLine> SplitByCount(Box partBounds, int horizontalPieces, int verticalPieces)
|
|
{
|
|
var lines = new List<SplitLine>();
|
|
|
|
if (verticalPieces > 1)
|
|
{
|
|
var spacing = partBounds.Length / verticalPieces;
|
|
for (var i = 1; i < verticalPieces; i++)
|
|
lines.Add(new SplitLine(partBounds.X + spacing * i, CutOffAxis.Vertical));
|
|
}
|
|
|
|
if (horizontalPieces > 1)
|
|
{
|
|
var spacing = partBounds.Width / horizontalPieces;
|
|
for (var i = 1; i < horizontalPieces; i++)
|
|
lines.Add(new SplitLine(partBounds.Y + spacing * i, CutOffAxis.Horizontal));
|
|
}
|
|
|
|
return lines;
|
|
}
|
|
}
|