Add ForceCombinationPropertyUserControl

This commit is contained in:
Evgeny Redikultsev
2025-01-08 21:15:07 +05:00
parent 65253a907b
commit 932f87f566
51 changed files with 1674 additions and 360 deletions

View File

@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
/// <summary>
/// Action as force load
/// Supports common properties of action
/// </summary>
public interface IForceAction : IAction
{
@@ -21,11 +21,9 @@ namespace StructureHelperCommon.Models.Forces
/// </summary>
IPoint2D ForcePoint { get; set; }
/// <summary>
/// Return combination of forces
/// Return combinations of forces
/// </summary>
/// <returns></returns>
IForceCombinationList GetCombination();
/// <returns>List of combination of forces</returns>
List<IForceCombinationList> GetCombinations();
}
}