Add inclined rebar
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperLogics.Models.BeamShears
|
||||
{
|
||||
/// <summary>
|
||||
/// Implements properies of stirrup by inclined rebar
|
||||
/// </summary>
|
||||
public interface IStirrupByInclinedRebar : IStirrup
|
||||
{
|
||||
/// <summary>
|
||||
/// Coordinate of start point of inclination, m
|
||||
/// </summary>
|
||||
double StartCoordinate { get; set; }
|
||||
/// <summary>
|
||||
/// Distance beetwen start/end point and point where rebar work is started
|
||||
/// </summary>
|
||||
double OffSet { get; set; }
|
||||
/// <summary>
|
||||
/// Angle of inclination of rebar in degrees
|
||||
/// </summary>
|
||||
double AngleOfInclination { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user