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

Parse() static private méthode

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

Same methods

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

Usage Example

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