Beispiel #1
0
 public IConcreteSection GetRectangularSection(double Width, double Height, double fc)
 {
     IConcreteMaterial mat = GetConcreteMaterial(fc);
     CrossSectionRectangularShape section = new CrossSectionRectangularShape(mat, null, Width, Height);
     return section;
 }