コード例 #1
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionSystem(IfcSpatialElement bldg, string name, IfcDistributionSystemEnum type) : base(bldg, name) { mPredefinedType = type; }
コード例 #2
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionPort(IfcDistributionPort p) : base(p) { mFlowDirection = p.mFlowDirection; mPredefinedType = p.mPredefinedType; mSystemType = p.mSystemType; }
コード例 #3
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionSystem(IfcDistributionSystem i) : base(i) { mLongName = i.mLongName; mPredefinedType = i.mPredefinedType; }
コード例 #4
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDistributionCircuit(IfcSpatialElement bldg, string name,IfcDistributionSystemEnum type) : base(bldg, name, type) { }
コード例 #5
0
 public IfcDistributionSystem(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcLabel longName, IfcDistributionSystemEnum predefinedType) : base(globalId, ownerHistory, name, description, objectType)
 {
     LongName       = longName;
     PredefinedType = predefinedType;
 }
コード例 #6
0
 public IfcDistributionPort(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcObjectPlacement objectPlacement, IfcProductRepresentation representation, IfcFlowDirectionEnum flowDirection, IfcDistributionPortTypeEnum predefinedType, IfcDistributionSystemEnum systemType) : base(globalId, ownerHistory, name, description, objectType, objectPlacement, representation)
 {
     FlowDirection  = flowDirection;
     PredefinedType = predefinedType;
     SystemType     = systemType;
 }
コード例 #7
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDistributionSystem(DatabaseIfc db, IfcDistributionSystem s) : base(db,s) { mLongName = s.mLongName; mPredefinedType = s.mPredefinedType; }
コード例 #8
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDistributionPort(DatabaseIfc db, IfcDistributionPort p) : base(db,p) { mFlowDirection = p.mFlowDirection; mPredefinedType = p.mPredefinedType; mSystemType = p.mSystemType; }