public IfcPhysicalSimpleQuantity(IfcLabel name, IfcText description, IfcNamedUnit unit) : base(name, description) { Unit = unit; }
public IfcQuantityLength(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcLengthMeasure lengthValue, IfcLabel formula) : base(name, description, unit) { LengthValue = lengthValue; Formula = formula; }
public IfcQuantityVolume(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcVolumeMeasure volumeValue, IfcLabel formula) : base(name, description, unit) { VolumeValue = volumeValue; Formula = formula; }
public IfcProjectedCRS(IfcLabel name, IfcText description, IfcIdentifier geodeticDatum, IfcIdentifier verticalDatum, IfcIdentifier mapProjection, IfcIdentifier mapZone, IfcNamedUnit mapUnit) : base(name, description, geodeticDatum, verticalDatum) { MapProjection = mapProjection; MapZone = mapZone; MapUnit = mapUnit; }
public IfcQuantityWeight(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcMassMeasure weightValue, IfcLabel formula) : base(name, description, unit) { WeightValue = weightValue; Formula = formula; }
public IfcQuantityArea(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcAreaMeasure areaValue, IfcLabel formula) : base(name, description, unit) { AreaValue = areaValue; Formula = formula; }
public IfcDerivedUnitElement(IfcNamedUnit unit, int exponent) : base() { Unit = unit; Exponent = exponent; }
public IfcUnit(IfcNamedUnit choice) { this.choice = choice; }
public IfcQuantityCount(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcCountMeasure countValue, IfcLabel formula) : base(name, description, unit) { CountValue = countValue; Formula = formula; }
public IfcQuantityTime(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcTimeMeasure timeValue, IfcLabel formula) : base(name, description, unit) { TimeValue = timeValue; Formula = formula; }