Auto-formatter reordering of using statements across the solution. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
427 B
C#
21 lines
427 B
C#
using OpenNest.Geometry;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenNest.Shapes
|
|
{
|
|
public class CircleShape : ShapeDefinition
|
|
{
|
|
public double Diameter { get; set; }
|
|
|
|
public override Drawing GetDrawing()
|
|
{
|
|
var entities = new List<Entity>
|
|
{
|
|
new Circle(0, 0, Diameter / 2.0)
|
|
};
|
|
|
|
return CreateDrawing(entities);
|
|
}
|
|
}
|
|
}
|