Inheritance: IfcCsgPrimitive3D
Example #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++]); }
Example #2
0
		internal static IfcSphere Parse(string strDef) { IfcSphere s = new IfcSphere(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Example #3
0
		internal IfcSphere(IfcSphere pl) : base(pl) { mRadius = pl.mRadius; }