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

Parse() protected method

protected Parse ( string str, int &pos, int len ) : void
str string
pos int
len int
return void
        protected virtual void Parse(string str, ref int pos, int len)
        {
            mStartPoint = ParserSTEP.StripLink(str, ref pos, len);
            mStartDirection = ParserSTEP.StripDouble(str, ref pos, len);
            mSegmentLength = ParserSTEP.StripDouble(str, ref pos, len);
        }