Inheritance: IfcFlowSegment
コード例 #1
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcDuctSegment Parse(string strDef) { IfcDuctSegment s = new IfcDuctSegment(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
コード例 #2
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDuctSegment(IfcDuctSegment s) : base(s) { mPredefinedType = s.mPredefinedType; }
コード例 #3
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcDuctSegment s, List<string> arrFields, ref int ipos)
		{
			IfcFlowSegment.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcDuctSegmentTypeEnum)Enum.Parse(typeof(IfcDuctSegmentTypeEnum), str.Substring(1, str.Length - 2));
		}
コード例 #4
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcDuctSegment(DatabaseIfc db, IfcDuctSegment s) : base(db,s) { mPredefinedType = s.mPredefinedType; }