Example #1
0
		internal static IfcConnectionSurfaceGeometry Parse(string strDef) { IfcConnectionSurfaceGeometry c = new IfcConnectionSurfaceGeometry(); int ipos = 0; parseFields(c, ParserSTEP.SplitLineFields(strDef), ref ipos); return c; }
Example #2
0
		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++]); }
Example #3
0
		internal IfcConnectionSurfaceGeometry(IfcConnectionSurfaceGeometry el) : base(el) { mSurfaceOnRelatingElement = el.mSurfaceOnRelatingElement; mSurfaceOnRelatedElement = el.mSurfaceOnRelatedElement; }