GeometryGym.Ifc.IfcClothoidalArcSegment2D.Parse C# (CSharp) Méthode

Parse() static private méthode

static private Parse ( string str ) : IfcClothoidalArcSegment2D
str string
Résultat IfcClothoidalArcSegment2D
        internal static IfcClothoidalArcSegment2D Parse(string str)
        {
            IfcClothoidalArcSegment2D c = new IfcClothoidalArcSegment2D(); int pos = 0; c.Parse(str, ref pos, str.Length); return c;
        }

Same methods

IfcClothoidalArcSegment2D::Parse ( string str, int &pos, int len ) : void

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