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