11 lines
256 B
C#
11 lines
256 B
C#
using StructureHelperLogics.Data.Shapes;
|
|
using StructureHelperLogics.NdmCalculations.Entities;
|
|
|
|
namespace StructureHelperLogics.Models.NdmPrimitives
|
|
{
|
|
public interface IPrimitive : ICenterShape
|
|
{
|
|
INdmPrimitive GetNdmPrimitive();
|
|
}
|
|
}
|