Добавил примитив для точки

This commit is contained in:
Evgeny Redikultsev
2022-07-16 10:15:48 +05:00
parent 4d3ecf7770
commit 02f53bea5c
3 changed files with 66 additions and 1 deletions

View File

@@ -6,6 +6,6 @@ namespace StructureHelperLogics.Data.Shapes
{
public interface IPoint : IShape
{
double Area { get; }
double Area { get; set; }
}
}