using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
///
/// Implements properies of stirrup by inclined rebar
///
public interface IStirrupByInclinedRebar : IStirrup
{
///
/// Coordinate of start point of inclination, m
///
double StartCoordinate { get; set; }
///
/// Distance beetwen start/end point and point where rebar work is started
///
double OffSet { get; set; }
///
/// Angle of inclination of rebar in degrees
///
double AngleOfInclination { get; set; }
}
}