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

Parse() static private method

static private Parse ( string str ) : IfcFacetedBrep
str string
return 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

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