예제 #1
0
 public Beam(double Length, LoadBeam Load, ICalcLog CalcLog, IBeamCaseFactory BeamCaseFactory)
     : base(CalcLog)
 {
     this.length              = Length;
     hasCalculatedForces      = false;
     hasCalculatedDeflections = false;
     this.BeamCaseFactory     = BeamCaseFactory;
     this.Load = Load;
 }
예제 #2
0
파일: Beam.cs 프로젝트: Wosad/Wosad.Design
 public Beam(double Length, LoadBeam Load, ICalcLog CalcLog, IBeamCaseFactory BeamCaseFactory)
     : base(CalcLog)
 {
     this.length = Length;
     hasCalculatedForces = false;
     hasCalculatedDeflections = false;
     this.BeamCaseFactory = BeamCaseFactory;
     this.Load = Load;
 }