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

Parse() static private méthode

static private Parse ( string str ) : IfcAxis1Placement
str string
Résultat IfcAxis1Placement
		internal static IfcAxis1Placement Parse(string str) { IfcAxis1Placement p = new IfcAxis1Placement(); 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

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

Usage Example

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