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

Same methods

IfcClothoidalArcSegment2D::Parse ( string str ) : IfcClothoidalArcSegment2D

Usage Example

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