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

Parse() static private method

static private Parse ( string str ) : IfcFillAreaStyleHatching
str string
return IfcFillAreaStyleHatching
        internal static IfcFillAreaStyleHatching Parse(string str)
        {
            IfcFillAreaStyleHatching h = new IfcFillAreaStyleHatching();
            int pos = 0, len = str.Length;
            h.mHatchLineAppearance = ParserSTEP.StripLink(str, ref pos, len);
            h.mStartOfNextHatchLine = ParserSTEP.StripField(str, ref pos, len);
            h.mPointOfReferenceHatchLine = ParserSTEP.StripLink(str, ref pos, len);
            h.mPatternStart = ParserSTEP.StripLink(str, ref pos, len);
            h.mHatchLineAngle = ParserSTEP.StripDouble(str, ref pos, len);
            return h;
        }