public IfcMaterialConstituent(IfcLabel?__Name, IfcText?__Description, IfcMaterial __Material, IfcNormalisedRatioMeasure?__Fraction, IfcLabel?__Category)
 {
     this._Name        = __Name;
     this._Description = __Description;
     this._Material    = __Material;
     this._Fraction    = __Fraction;
     this._Category    = __Category;
 }
Beispiel #2
0
 public IfcMaterialProfile(IfcLabel?__Name, IfcText?__Description, IfcMaterial __Material, IfcProfileDef __Profile, IfcInteger?__Priority, IfcLabel?__Category)
 {
     this.Name        = __Name;
     this.Description = __Description;
     this.Material    = __Material;
     this.Profile     = __Profile;
     this.Priority    = __Priority;
     this.Category    = __Category;
 }
Beispiel #3
0
 public IfcMaterialLayer(IfcMaterial __Material, IfcNonNegativeLengthMeasure __LayerThickness, IfcLogical?__IsVentilated, IfcLabel?__Name, IfcText?__Description, IfcLabel?__Category, IfcInteger?__Priority)
 {
     this.Material       = __Material;
     this.LayerThickness = __LayerThickness;
     this.IsVentilated   = __IsVentilated;
     this.Name           = __Name;
     this.Description    = __Description;
     this.Category       = __Category;
     this.Priority       = __Priority;
 }
Beispiel #4
0
 public IfcMaterialProfileWithOffsets(IfcLabel?__Name, IfcText?__Description, IfcMaterial __Material, IfcProfileDef __Profile, IfcInteger?__Priority, IfcLabel?__Category, IfcLengthMeasure[] __OffsetValues)
     : base(__Name, __Description, __Material, __Profile, __Priority, __Category)
 {
     this.OffsetValues = __OffsetValues;
 }
Beispiel #5
0
 public IfcMaterialLayerWithOffsets(IfcMaterial __Material, IfcNonNegativeLengthMeasure __LayerThickness, IfcLogical?__IsVentilated, IfcLabel?__Name, IfcText?__Description, IfcLabel?__Category, IfcInteger?__Priority, IfcLayerSetDirectionEnum __OffsetDirection, IfcLengthMeasure[] __OffsetValues)
     : base(__Material, __LayerThickness, __IsVentilated, __Name, __Description, __Category, __Priority)
 {
     this.OffsetDirection = __OffsetDirection;
     this.OffsetValues    = __OffsetValues;
 }
Beispiel #6
0
 public IfcMaterialLayer(IfcMaterial __Material, IfcPositiveLengthMeasure __LayerThickness, IfcLogical?__IsVentilated)
 {
     this._Material       = __Material;
     this._LayerThickness = __LayerThickness;
     this._IsVentilated   = __IsVentilated;
 }
 public IfcMaterialClassificationRelationship(IfcClassificationSelect[] __MaterialClassifications, IfcMaterial __ClassifiedMaterial)
 {
     this._MaterialClassifications = new HashSet <IfcClassificationSelect>(__MaterialClassifications);
     this._ClassifiedMaterial      = __ClassifiedMaterial;
 }