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

Parse() static private méthode

static private Parse ( string str ) : IfcEllipse
str string
Résultat IfcEllipse
		internal static IfcEllipse Parse(string str) { IfcEllipse e = new IfcEllipse(); int pos = 0; e.Parse(str, ref pos, str.Length); return e; }
		internal override void Parse(string str, ref int pos, int len)

Same methods

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

Usage Example

Exemple #1
0
		internal static IfcEllipse Parse(string str) { IfcEllipse e = new IfcEllipse(); int pos = 0; e.Parse(str, ref pos, str.Length); return e; }