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

Parse() static private méthode

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

Usage Example

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