GeometryGym.Ifc.IfcCircularArcSegment2D.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 override void Parse(string str, ref int pos, int len)
        {
            base.Parse(str, ref pos, len);
            mRadius = ParserSTEP.StripDouble(str, ref pos, len);
            mIsCCW = ParserSTEP.StripBool(str, ref pos, len);
        }

Same methods

IfcCircularArcSegment2D::Parse ( string str ) : IfcCircularArcSegment2D

Usage Example

 internal static IfcCircularArcSegment2D Parse(string str)
 {
     IfcCircularArcSegment2D c = new IfcCircularArcSegment2D(); int pos = 0; c.Parse(str, ref pos, str.Length); return(c);
 }
All Usage Examples Of GeometryGym.Ifc.IfcCircularArcSegment2D::Parse