Add VisualAnalysisDTO
This commit is contained in:
@@ -9,10 +9,22 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperLogics.Services.NdmPrimitives
|
||||
{
|
||||
/// <summary>
|
||||
/// Implement logic of triangulation of primitives which have parameters of division
|
||||
/// </summary>
|
||||
public interface IMeshHasDivisionLogic : ILogic
|
||||
{
|
||||
List<INdm> NdmCollection { get; set; }
|
||||
IHasDivisionSize Primitive { get; set; }
|
||||
/// <summary>
|
||||
/// Input collection of existing ndm parts
|
||||
/// </summary>
|
||||
List<INdm>? NdmCollection { get; set; }
|
||||
/// <summary>
|
||||
/// Input triangulated primitive
|
||||
/// </summary>
|
||||
IHasDivisionSize? Primitive { get; set; }
|
||||
/// <summary>
|
||||
/// Run process of triangulation
|
||||
/// </summary>
|
||||
void MeshHasDivision();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user