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

Parse() static private method

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