initial commit

This commit is contained in:
2026-05-02 01:01:15 +02:00
parent 591399495c
commit fc73ff47ff
945 changed files with 11285 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using TraceCad.Core.Geometry;
namespace TraceCad.Core.Model;
public sealed record CircleEntity(
Guid Id,
string Layer,
Point2 Center,
double Radius) : Entity(Id, Layer)
{
public override IEnumerable<Point2> SnapPoints
{
get
{
yield return Center;
}
}
}