Repo-wide sweep with the pinned CSharpier 1.3.0 tool. Whitespace and line-wrapping only; OpenNest.Engine.Tests (109) and OpenNest.IO.Tests pass after reformat, full solution builds 0 errors. Added .csharpierignore so csproj/config XML keeps its existing layout (CSharpier's XML wrapping churns attributes with zero benefit). Formatting is now enforceable: dotnet csharpier check . passes.
38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using OpenNest.Geometry;
|
|
|
|
namespace OpenNest.Shapes
|
|
{
|
|
public class TrapezoidShape : ShapeDefinition
|
|
{
|
|
public double TopWidth { get; set; }
|
|
public double BottomWidth { get; set; }
|
|
public double Height { get; set; }
|
|
|
|
public override string GenerateName() =>
|
|
$"Trapezoid {Dim(TopWidth)}x{Dim(BottomWidth)}x{Dim(Height)}";
|
|
|
|
public override void SetPreviewDefaults()
|
|
{
|
|
TopWidth = 6;
|
|
BottomWidth = 10;
|
|
Height = 6;
|
|
}
|
|
|
|
public override Drawing GetDrawing()
|
|
{
|
|
var offset = (BottomWidth - TopWidth) / 2.0;
|
|
|
|
var entities = new List<Entity>
|
|
{
|
|
new Line(0, 0, BottomWidth, 0),
|
|
new Line(BottomWidth, 0, offset + TopWidth, Height),
|
|
new Line(offset + TopWidth, Height, offset, Height),
|
|
new Line(offset, Height, 0, 0),
|
|
};
|
|
|
|
return CreateDrawing(entities);
|
|
}
|
|
}
|
|
}
|