예제 #1
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcConnectionSurfaceGeometry Parse(string strDef) { IfcConnectionSurfaceGeometry c = new IfcConnectionSurfaceGeometry(); int ipos = 0; parseFields(c, ParserSTEP.SplitLineFields(strDef), ref ipos); return c; }
예제 #2
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcConnectionSurfaceGeometry c, List<string> arrFields, ref int ipos) { IfcConnectionGeometry.parseFields(c, arrFields, ref ipos); c.mSurfaceOnRelatingElement = ParserSTEP.ParseLink(arrFields[ipos++]); c.mSurfaceOnRelatedElement = ParserSTEP.ParseLink(arrFields[ipos++]); }
예제 #3
0
파일: IFC C.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcConnectionSurfaceGeometry(IfcConnectionSurfaceGeometry el) : base(el) { mSurfaceOnRelatingElement = el.mSurfaceOnRelatingElement; mSurfaceOnRelatedElement = el.mSurfaceOnRelatedElement; }