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

Parse() static private méthode

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

Usage Example

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