상속: IfcGeometricRepresentationItem
예제 #1
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcPlanarExtent p, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(p, arrFields, ref ipos); p.mSizeInX = ParserSTEP.ParseDouble(arrFields[ipos++]); p.mSizeInY = ParserSTEP.ParseDouble(arrFields[ipos++]); }
예제 #2
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcPlanarExtent Parse(string strDef) { IfcPlanarExtent p = new IfcPlanarExtent(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
예제 #3
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcPlanarExtent(IfcPlanarExtent p) : base(p) { mSizeInX = p.mSizeInX; mSizeInY = p.mSizeInY; }