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

Parse() static private méthode

static private Parse ( string str ) : IfcFaceBasedSurfaceModel
str string
Résultat IfcFaceBasedSurfaceModel
        internal static IfcFaceBasedSurfaceModel Parse(string str)
        {
            IfcFaceBasedSurfaceModel m = new IfcFaceBasedSurfaceModel();
            m.mFbsmFaces = ParserSTEP.SplitListLinks(str.Substring(1, str.Length - 2));
            return m;
        }