Inheritance: IfcDistributionFlowElement
コード例 #1
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static void parseFields(IfcFlowSegment s, List<string> arrFields, ref int ipos)
 {
     IfcDistributionFlowElement.parseFields(s, arrFields, ref ipos);
 }
コード例 #2
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static new IfcFlowSegment Parse(string strDef)
 {
     IfcFlowSegment s = new IfcFlowSegment(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s;
 }
コード例 #3
0
ファイル: IFC F.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcFlowSegment(IfcFlowSegment s) : base(s) { }
コード例 #4
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal IfcFlowSegment(DatabaseIfc db, IfcFlowSegment s)
     : base(db, s)
 {
 }
コード例 #5
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 internal IfcFlowSegment(DatabaseIfc db, IfcFlowSegment s, DuplicateOptions options) : base(db, s, options)
 {
 }