Example #1
0
 private void BaseInit(XbimCurtainWallType type)
 {
     _document.CurtainWalls.Add(this);
     _ifcBuildingElement = _document.Model.Instances.New<IfcCurtainWall>();
     _ifcBuildingElement.SetDefiningType(type.IfcTypeProduct, _document.Model);
 }
Example #2
0
 internal XbimCurtainWall(XbimDocument document, XbimCurtainWallType type)
     : base(document)
 {
     BaseInit(type);
 }