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