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

Parse() static private method

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