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

Parse() static private méthode

static private Parse ( string str ) : IfcFace
str string
Résultat IfcFace
        internal static IfcFace Parse(string str)
        {
            IfcFace f = new IfcFace();
            int pos = 0;
            f.mBounds = ParserSTEP.StripListLink(str, ref pos, str.Length);
            return f;
        }