11 lines
217 B
C#
11 lines
217 B
C#
using StructureHelperCommon.Models.Shapes;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Primitives
|
|
{
|
|
public interface IEllipseNdmPrimitive : INdmPrimitive, IHasDivisionSize, IRectangleShape
|
|
{
|
|
|
|
|
|
}
|
|
}
|