Beispiel #1
0
 public IfcQuantityWeight(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcMassMeasure weightValue, IfcLabel formula) : base(name, description, unit)
 {
     WeightValue = weightValue;
     Formula     = formula;
 }
Beispiel #2
0
 public IfcMeasureValue(IfcMassMeasure choice)
 {
     this.choice = choice;
 }
Beispiel #3
0
        }                                         // optional


        /// <summary>
        /// Construct a IfcQuantityWeight with all required attributes.
        /// </summary>
        public IfcQuantityWeight(IfcLabel name, IfcMassMeasure weightValue) : base(name)
        {
            WeightValue = weightValue;
        }