16 lines
368 B
C#
16 lines
368 B
C#
using StructureHelperLogics.Data.Shapes;
|
|
using StructureHelperLogics.NdmCalculations.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.Models.NdmPrimitives
|
|
{
|
|
public interface IPrimitive
|
|
{
|
|
ICenter Center { get;}
|
|
IShape Shape { get;}
|
|
INdmPrimitive GetNdmPrimitive();
|
|
}
|
|
}
|