14 lines
334 B
C#
14 lines
334 B
C#
using StructureHelperLogics.Data.Shapes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Triangulations
|
|
{
|
|
public interface IPointTriangulationLogicOptions : ITriangulationLogicOptions
|
|
{
|
|
ICenter Center { get; }
|
|
double Area { get; }
|
|
}
|
|
}
|