14 lines
416 B
C#
14 lines
416 B
C#
using StructureHelperLogics.NdmCalculations.Primitives;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public interface IRebarCrackInputDataFactory
|
|
{
|
|
IRebarNdmPrimitive Rebar { get; set; }
|
|
TupleCrackInputData InputData { get; set; }
|
|
double LongLength { get; set; }
|
|
double ShortLength { get; set; }
|
|
|
|
RebarCrackCalculatorInputData GetInputData();
|
|
}
|
|
} |