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

Parse() static private méthode

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

Same methods

IfcFaceBound::Parse ( string str, int &pos, int len ) : void

Usage Example

Exemple #1
0
 internal static IfcFaceBound Parse(string str)
 {
     IfcFaceBound b = new IfcFaceBound();
     int pos = 0;
     b.Parse( str, ref pos, str.Length);
     return b;
 }