예제 #1
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		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++]); }
예제 #2
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcRectangularPyramid Parse(string strDef) { IfcRectangularPyramid p = new IfcRectangularPyramid(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
예제 #3
0
파일: IFC R.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcRectangularPyramid(IfcRectangularPyramid pl) : base(pl) { mXLength = pl.mXLength; mYLength = pl.mYLength; mHeight = pl.mHeight; }