Esempio n. 1
0
        internal static IfcVertexloop Parse(string str)
        {
            IfcVertexloop l   = new IfcVertexloop();
            int           pos = 0;

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