Circle Primitive Added

This commit is contained in:
Evgeny Redikultsev
2023-02-24 22:17:55 +05:00
parent b05782786c
commit 8fecfb931f
37 changed files with 571 additions and 87 deletions

View File

@@ -0,0 +1,7 @@
namespace StructureHelperCommon.Models.Shapes
{
public interface ICircleShape : IShape
{
double Diameter { get; set; }
}
}