11 lines
267 B
C#
11 lines
267 B
C#
using StructureHelperLogics.Data.Shapes;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Triangulations
|
|
{
|
|
public interface IPointTriangulationLogicOptions : ITriangulationLogicOptions
|
|
{
|
|
ICenter Center { get; }
|
|
double Area { get; }
|
|
}
|
|
}
|