using LoaderCalculator.Data.Ndms; using StructureHelperCommon.Infrastructures.Interfaces; using StructureHelperLogics.NdmCalculations.Primitives; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Services.NdmPrimitives { /// /// Implement logic of triangulation of primitives which have parameters of division /// public interface IMeshHasDivisionLogic : ILogic { /// /// Input collection of existing ndm parts /// List? NdmCollection { get; set; } /// /// Input triangulated primitive /// IHasDivisionSize? Primitive { get; set; } /// /// Run process of triangulation /// void MeshHasDivision(); } }