GeometryGym.Ifc.IfcVertexloop.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string str ) : IfcVertexloop
str string
return IfcVertexloop
		internal static IfcVertexloop Parse(string str)
		{
			IfcVertexloop l = new IfcVertexloop();
			int pos = 0;
			l.mLoopVertex = ParserSTEP.StripLink(str, ref pos, str.Length);
			return l;
		}
		protected override string BuildStringSTEP() { return base.BuildStringSTEP() + "," + ParserSTEP.LinkToString(mLoopVertex); }