Tools for graphs were added
This commit is contained in:
@@ -9,13 +9,15 @@ namespace StructureHelperLogics.Models.Templates.CrossSections
|
||||
{
|
||||
internal class ForceLogic : IForceLogic
|
||||
{
|
||||
public IEnumerable<IForceCombinationList> GetCombinationList()
|
||||
public IEnumerable<IForceAction> GetCombinationList()
|
||||
{
|
||||
var combinations = new List<IForceCombinationList>();
|
||||
var combinations = new List<IForceAction>();
|
||||
var combination = new ForceCombinationList() { Name = "New Force Action"};
|
||||
combination.DesignForces.Clear();
|
||||
combination.DesignForces.AddRange(ForceCombinationListFactory.GetDesignForces(DesignForceType.Suit_1));
|
||||
combinations.Add(combination);
|
||||
var factorCombination = new ForceCombinationByFactor();
|
||||
combinations.Add(factorCombination);
|
||||
return combinations;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,6 @@ namespace StructureHelperLogics.Models.Templates.CrossSections
|
||||
{
|
||||
internal interface IForceLogic
|
||||
{
|
||||
IEnumerable<IForceCombinationList> GetCombinationList();
|
||||
IEnumerable<IForceAction> GetCombinationList();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace StructureHelperLogics.Models.Templates.CrossSections.RCs
|
||||
IRCGeometryLogic geometryLogic;
|
||||
ICalculatorLogic calculatorLogic;
|
||||
IEnumerable<INdmPrimitive> primitives;
|
||||
IEnumerable<IForceCombinationList> combinations;
|
||||
IEnumerable<IForceAction> combinations;
|
||||
IEnumerable<INdmCalculator> calculators;
|
||||
|
||||
public SectionTemplate(IRCGeometryLogic geometryLogic)
|
||||
|
||||
Reference in New Issue
Block a user