14 lines
490 B
C#
14 lines
490 B
C#
using StructureHelperCommon.Models.Calculators;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
using StructureHelperLogics.NdmCalculations.Analyses.ByForces;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Analyses.ValueDiagrams
|
|
{
|
|
public interface IValueDiagramCalculatorResult : IResult
|
|
{
|
|
IValueDiagramCalculatorInputData? InputData { get; set; }
|
|
List<IPoint2D> Points { get; set; }
|
|
List<IForceTupleCalculatorResult> ForceTupleResults { get; set; }
|
|
}
|
|
}
|