public ElementAssembly(ModelInfo modelInfo)
 {
     this.ModelInfo = modelInfo;
     MyElements     = new List <TeklaElement>();
 }
Beispiel #2
0
 public TeklaElement(string section, IfcProductDefinitionShape ifcProductDefinitionShape, ModelInfo modelInfo)
 {
     this.Section = section;
     this.ifcProductDefinitionShape = ifcProductDefinitionShape;
 }
Beispiel #3
0
 public TeklaElement(string section, ModelInfo modelInfo)
 {
     this.Section   = section;
     this.ModelInfo = modelInfo;
 }
Beispiel #4
0
 public TeklaElement(IfcOwnerHistory OwnerHistory, IfcLabel Name, IfcText Description, ModelInfo modelInfo, string section, IfcProductDefinitionShape ifcProductDefinitionShape)
 {
     this.Name         = Name;
     this.OwnerHistory = OwnerHistory;
     this.ModelInfo    = ModelInfo;
     this.Description  = Description;
     this.Section      = section;
     this.ifcProductDefinitionShape = ifcProductDefinitionShape;
 }