Inheritance: IfcCsgPrimitive3D
Esempio n. 1
0
		internal static void parseFields(IfcSphere s, List<string> arrFields, ref int ipos) { IfcCsgPrimitive3D.parseFields(s, arrFields, ref ipos); s.mRadius = ParserSTEP.ParseDouble(arrFields[ipos++]); }
Esempio n. 2
0
		internal static IfcSphere Parse(string strDef) { IfcSphere s = new IfcSphere(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Esempio n. 3
0
		internal IfcSphere(IfcSphere pl) : base(pl) { mRadius = pl.mRadius; }