using StructureHelperLogics.Data.Shapes;
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.NdmCalculations.Triangulations
{
///
public class RectangleTriangulationOptions : IRectangleTriangulationOptions
{
///
public ICenter Center { get; }
///
public IRectangle Rectangle { get; }
///
public double NdmMaxSize { get; }
///
public int NdmMinDivision { get; }
public RectangleTriangulationOptions(ICenter center, IRectangle rectangle, double ndmMaxSize, int ndmMinDivision)
{
Center = center;
Rectangle = rectangle;
NdmMaxSize = ndmMaxSize;
NdmMinDivision = ndmMinDivision;
}
}
}