Add curvature calculator

This commit is contained in:
Evgeny Redikultsev
2025-11-22 21:17:39 +05:00
parent 215f631bb0
commit 7ab4909c67
42 changed files with 705 additions and 108 deletions

View File

@@ -5,11 +5,27 @@ using StructureHelperLogics.NdmCalculations.Primitives;
namespace StructureHelperLogics.Services.NdmPrimitives
{
/// <summary>
/// Implements logic of meshing of StructureHelper NdmPrimitives to collection of Loader Indem parts
/// </summary>
public interface ITriangulatePrimitiveLogic : ILogic
{
/// <summary>
/// Collection of primitives which have to be meshed
/// </summary>
IEnumerable<INdmPrimitive> Primitives { get; set; }
/// <summary>
/// Limit state for meshing
/// </summary>
LimitStates LimitState { get; set; }
/// <summary>
/// Term (duration) of calculating for meshing
/// </summary>
CalcTerms CalcTerm { get; set; }
/// <summary>
/// Meshes collection of primitives
/// </summary>
/// <returns>List of Loader Ndm parts</returns>
List<INdm> GetNdms();
}
}