using StructureHelperCommon.Models.Shapes; namespace StructureHelperLogics.NdmCalculations.Triangulations { /// /// Parameter of triangulation of rectangle part of section /// Параметры триангуляции прямоугольного участка сечения /// public interface IRectangleTriangulationLogicOptions : ITriangulationLogicOptions { /// /// /// IPoint2D Center { get; } /// /// /// IRectangleShape Rectangle { get; } /// /// Maximum size (width or height) of ndm part after triangulation /// double NdmMaxSize { get; } /// /// Minimum quantity of division of side of rectangle after triangulation /// int NdmMinDivision { get; } } }