Inheritance: IfcCsgPrimitive3D
Ejemplo 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++]); }
Ejemplo 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; }
Ejemplo n.º 3
0
		internal IfcSphere(IfcSphere pl) : base(pl) { mRadius = pl.mRadius; }