示例#1
0
 public IfcPhysicalSimpleQuantity(IfcLabel name, IfcText description, IfcNamedUnit unit) : base(name, description)
 {
     Unit = unit;
 }
示例#2
0
 public IfcQuantityLength(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcLengthMeasure lengthValue, IfcLabel formula) : base(name, description, unit)
 {
     LengthValue = lengthValue;
     Formula     = formula;
 }
示例#3
0
 public IfcQuantityVolume(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcVolumeMeasure volumeValue, IfcLabel formula) : base(name, description, unit)
 {
     VolumeValue = volumeValue;
     Formula     = formula;
 }
示例#4
0
 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;
 }
示例#5
0
 public IfcQuantityWeight(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcMassMeasure weightValue, IfcLabel formula) : base(name, description, unit)
 {
     WeightValue = weightValue;
     Formula     = formula;
 }
示例#6
0
 public IfcQuantityArea(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcAreaMeasure areaValue, IfcLabel formula) : base(name, description, unit)
 {
     AreaValue = areaValue;
     Formula   = formula;
 }
示例#7
0
 public IfcDerivedUnitElement(IfcNamedUnit unit, int exponent) : base()
 {
     Unit     = unit;
     Exponent = exponent;
 }
示例#8
0
 public IfcUnit(IfcNamedUnit choice)
 {
     this.choice = choice;
 }
示例#9
0
 public IfcQuantityCount(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcCountMeasure countValue, IfcLabel formula) : base(name, description, unit)
 {
     CountValue = countValue;
     Formula    = formula;
 }
示例#10
0
 public IfcQuantityTime(IfcLabel name, IfcText description, IfcNamedUnit unit, IfcTimeMeasure timeValue, IfcLabel formula) : base(name, description, unit)
 {
     TimeValue = timeValue;
     Formula   = formula;
 }