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

Parse() static private méthode

static private Parse ( string str ) : IfcFaceOuterBound
str string
Résultat 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

Exemple #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;
 }