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