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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user