Add inclined rebar

This commit is contained in:
RedikultsevEvg
2025-07-07 00:06:54 +05:00
parent 0975dde696
commit 1bc7799d3c
37 changed files with 751 additions and 111 deletions

View File

@@ -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; }
}
}