Tools for graphs were added
This commit is contained in:
@@ -83,6 +83,7 @@ namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
|
||||
{
|
||||
bucklingCalculator.Run();
|
||||
var bucklingResult = bucklingCalculator.Result as IConcreteBucklingResult;
|
||||
|
||||
if (bucklingResult.IsValid != true)
|
||||
{
|
||||
result.IsValid = false;
|
||||
@@ -107,6 +108,7 @@ namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
|
||||
Result = ndmResult;
|
||||
}
|
||||
|
||||
|
||||
private void GetCombinations()
|
||||
{
|
||||
ForceCombinationLists = new List<IForceCombinationList>();
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace StructureHelperLogics.NdmCalculations.Analyses.Geometry
|
||||
public class GeometryResult : IGeometryResult
|
||||
{
|
||||
public bool IsValid { get; set; }
|
||||
public List<ITextParameter> TextParameters { get; set; }
|
||||
public List<IValueParameter<string>> TextParameters { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,6 @@ namespace StructureHelperLogics.NdmCalculations.Analyses.Geometry
|
||||
{
|
||||
public interface IGeometryResult : INdmResult
|
||||
{
|
||||
List<ITextParameter> TextParameters { get; set; }
|
||||
List<IValueParameter<string>> TextParameters { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user