internal static IfcVertexloop Parse(string str) { IfcVertexloop l = new IfcVertexloop(); int pos = 0; l.mLoopVertex = ParserSTEP.StripLink(str, ref pos, str.Length); return(l); }
internal static void parseFields(IfcVertexloop l, List<string> arrFields, ref int ipos) { IfcLoop.parseFields(l, arrFields, ref ipos); l.mLoopVertex = ParserSTEP.ParseLink(arrFields[ipos++]); }
internal new static IfcVertexloop Parse(string strDef) { IfcVertexloop l = new IfcVertexloop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
internal IfcVertexloop(IfcVertexloop o) : base(o) { mLoopVertex = o.mLoopVertex; }
internal IfcVertexloop(DatabaseIfc db, IfcVertexloop l) : base(db, l) { LoopVertex = db.Factory.Duplicate(l.LoopVertex) as IfcVertex; }
internal static void parseFields(IfcVertexloop l, List <string> arrFields, ref int ipos) { IfcLoop.parseFields(l, arrFields, ref ipos); l.mLoopVertex = ParserSTEP.ParseLink(arrFields[ipos++]); }
internal new static IfcVertexloop Parse(string strDef) { IfcVertexloop l = new IfcVertexloop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return(l); }
internal static IfcVertexloop Parse(string str) { IfcVertexloop l = new IfcVertexloop(); int pos = 0; l.mLoopVertex = ParserSTEP.StripLink(str, ref pos, str.Length); return l; }
internal IfcVertexloop(DatabaseIfc db, IfcVertexloop l) : base(db,l) { LoopVertex = db.Factory.Duplicate(l.LoopVertex) as IfcVertex; }