GeometryGym.Ifc.IfcCurveSegment2D.Parse C# (CSharp) 메소드

Parse() 보호된 메소드

protected Parse ( string str, int &pos, int len ) : void
str string
pos int
len int
리턴 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);
        }