Inheritance: IfcGeometricRepresentationItem
コード例 #1
0
ファイル: IFC P.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcPlanarExtent p, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(p, arrFields, ref ipos); p.mSizeInX = ParserSTEP.ParseDouble(arrFields[ipos++]); p.mSizeInY = ParserSTEP.ParseDouble(arrFields[ipos++]); }
コード例 #2
0
ファイル: IFC P.cs プロジェクト: jenca-cloud/ggIFC
		internal static IfcPlanarExtent Parse(string strDef) { IfcPlanarExtent p = new IfcPlanarExtent(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
コード例 #3
0
ファイル: IFC P.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcPlanarExtent(IfcPlanarExtent p) : base(p) { mSizeInX = p.mSizeInX; mSizeInY = p.mSizeInY; }