24 lines
538 B
C#
24 lines
538 B
C#
using StructureHelperCommon.Models.Shapes;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Triangulations
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class PointTriangulationLogicOptions : IPointTriangulationLogicOptions
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public ICenter Center { get; }
|
|
|
|
public double Area { get; }
|
|
|
|
public PointTriangulationLogicOptions(ICenter center, double area)
|
|
{
|
|
Center = center;
|
|
Area = area;
|
|
}
|
|
}
|
|
}
|