Example #1
0
		internal static void parseFields(IfcRectangularPyramid p, List<string> arrFields, ref int ipos) { IfcCsgPrimitive3D.parseFields(p, arrFields, ref ipos); p.mXLength = ParserSTEP.ParseDouble(arrFields[ipos++]); p.mYLength = ParserSTEP.ParseDouble(arrFields[ipos++]); p.mHeight = ParserSTEP.ParseDouble(arrFields[ipos++]); }
Example #2
0
		internal static IfcRectangularPyramid Parse(string strDef) { IfcRectangularPyramid p = new IfcRectangularPyramid(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
Example #3
0
		internal IfcRectangularPyramid(IfcRectangularPyramid pl) : base(pl) { mXLength = pl.mXLength; mYLength = pl.mYLength; mHeight = pl.mHeight; }