Inheritance: IfcDimensionCurveDirectedCallout
コード例 #1
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcDiameterDimension d, List<string> arrFields, ref int ipos) { IfcDimensionCurveDirectedCallout.parseFields(d, arrFields, ref ipos); }
コード例 #2
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcDiameterDimension(IfcDiameterDimension el) : base(el) { }
コード例 #3
0
ファイル: IFC D.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcDiameterDimension Parse(string strDef) { IfcDiameterDimension d = new IfcDiameterDimension(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d; }
コード例 #4
0
ファイル: IFC D.cs プロジェクト: jmirtsch/GeometryGymIFC
		//internal IfcDiameterDimension(IfcDiameterDimension el) : base(el) { }
		internal new static IfcDiameterDimension Parse(string str) { IfcDiameterDimension d = new IfcDiameterDimension(); int pos = 0; d.Parse(str, ref pos, str.Length); return d; }