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

Parse() protected méthode

protected Parse ( string str, int &pos, int len ) : void
str string
pos int
len int
Résultat void
        protected virtual void Parse(string str, ref int pos, int len)
        {
            mBaseSurface = ParserSTEP.StripLink(str, ref pos, len);
            mAgreementFlag = ParserSTEP.StripBool(str, ref pos, len);
        }

Same methods

IfcHalfSpaceSolid::Parse ( string str ) : IfcHalfSpaceSolid

Usage Example

Exemple #1
0
 internal static IfcHalfSpaceSolid Parse(string str)
 {
     IfcHalfSpaceSolid s = new IfcHalfSpaceSolid(); int pos = 0; s.Parse(str, ref pos, str.Length); return(s);
 }
All Usage Examples Of GeometryGym.Ifc.IfcHalfSpaceSolid::Parse