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