using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
///
/// Supports common properties of action
///
public interface IForceAction : IAction
{
///
/// True means force action is put in center of gravity
///
bool SetInGravityCenter { get; set; }
///
/// Point of applying of force load
///
IPoint2D ForcePoint { get; set; }
///
/// Return combinations of forces
///
/// List of combination of forces
List GetCombinations();
}
}