using StructureHelperCommon.Infrastructures.Interfaces;
namespace StructureHelperLogics.Models.BeamShears
{
///
/// Implements logic of calculating of coordinate of point where source level intersect inclinid section
///
public interface ICoordinateByLevelLogic : ILogic
{
///
/// Calculates coordinate of point where aource level intersect inclined section
///
/// Start coordinate of inclined section
/// End coordinate of inclined section
/// Source relative level, 0.5 - top level, -0.5 bottom level
///
double GetCoordinate(double startCoord, double endCoord, double relativeLevel);
}
}