GeometryGym.Ifc.IfcEllipse.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string str ) : IfcEllipse
str string
return 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

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