public IfcReinforcementBarProperties(IfcAreaMeasure totalCrossSectionArea, IfcLabel steelGrade, IfcReinforcingBarSurfaceEnum barSurface, IfcLengthMeasure effectiveDepth, IfcPositiveLengthMeasure nominalBarDiameter, IfcCountMeasure barCount) : base()
 {
     TotalCrossSectionArea = totalCrossSectionArea;
     SteelGrade            = steelGrade;
     BarSurface            = barSurface;
     EffectiveDepth        = effectiveDepth;
     NominalBarDiameter    = nominalBarDiameter;
     BarCount = barCount;
 }
Beispiel #2
0
 public IfcQuantityCount(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcCountMeasure countValue, IfcLabel formula) : base(name, description, unit)
 {
     CountValue = countValue;
     Formula    = formula;
 }
Beispiel #3
0
 public IfcMeasureValue(IfcCountMeasure choice)
 {
     this.choice = choice;
 }
Beispiel #4
0
        }                                         // optional


        /// <summary>
        /// Construct a IfcQuantityCount with all required attributes.
        /// </summary>
        public IfcQuantityCount(IfcLabel name, IfcCountMeasure countValue) : base(name)
        {
            CountValue = countValue;
        }