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

Parse() static private method

static private Parse ( string str ) : IfcFaceOuterBound
str string
return IfcFaceOuterBound
        internal static new IfcFaceOuterBound Parse(string str)
        {
            IfcFaceOuterBound b = new IfcFaceOuterBound();
            int pos = 0;
            b.Parse(str, ref pos, str.Length);
            return b;
        }

Usage Example

Esempio n. 1
0
 internal static new IfcFaceOuterBound Parse(string str)
 {
     IfcFaceOuterBound b = new IfcFaceOuterBound();
     int pos = 0;
     b.Parse(str, ref pos, str.Length);
     return b;
 }