GeometryGym.Ifc.IfcLine.Parse C# (CSharp) Méthode

Parse() static private méthode

static private Parse ( string str ) : IfcLine
str string
Résultat IfcLine
        internal static IfcLine Parse(string str)
        {
            IfcLine l = new IfcLine();
            int pos = 0, len = str.Length;
            l.mPnt = ParserSTEP.StripLink(str, ref pos, len);
            l.mDir = ParserSTEP.StripLink(str, ref pos, len);
            return l;
        }