Add polygon shape

This commit is contained in:
Evgeny Redikultsev
2025-09-07 08:12:07 +05:00
parent 98c94dc232
commit c31e56869c
20 changed files with 509 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
public class NamedAreaPoint : INamedAreaPoint
{
public string Name { get; set; }
public Point2D Point { get; set; }
public IPoint2D Point { get; set; }
public double Area { get; set; }
}
}