using StructureHelperLogics.Data.Shapes; using System; using System.Collections.Generic; using System.Text; namespace StructureHelperLogics.NdmCalculations.Triangulations { /// /// Parameter of triangulation of rectangle part of section /// Параметры триангуляции прямоугольного участка сечения /// public interface IRectangleTriangulationLogicOptions : ITriangulationLogicOptions { /// /// /// ICenter Center { get; } /// /// /// IRectangle 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; } } }