Esempio n. 1
0
 private void BaseInit(XbimBeamType xbimBeamType)
 {
     _document.Beams.Add(this);
     _ifcBuildingElement = _document.Model.Instances.New<IfcBeam>();
     _ifcBuildingElement.SetDefiningType(xbimBeamType.IfcTypeProduct, _document.Model);
 }
Esempio n. 2
0
 internal XbimBeam(XbimDocument document, XbimBeamType xbimBeamType)
     : base(document)
 {
     BaseInit(xbimBeamType);
 }