コード例 #1
0
ファイル: XbimWindow.cs プロジェクト: bnaand/xBim-Toolkit
 private void BaseInit(XbimWindowStyle type)
 {
     _document.Windows.Add(this);
     _ifcBuildingElement = _document.Model.Instances.New<IfcWindow>();
     _ifcBuildingElement.SetDefiningType(type.IfcTypeProduct, _document.Model);
 }
コード例 #2
0
ファイル: XbimWindow.cs プロジェクト: bnaand/xBim-Toolkit
 internal XbimWindow(XbimDocument document, XbimWindowStyle type)
     : base(document)
 {
     BaseInit(type);
 }