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

Parse() static private méthode

static private Parse ( string strDef ) : IfcArbitraryOpenProfileDef
strDef string
Résultat IfcArbitraryOpenProfileDef
		internal new static IfcArbitraryOpenProfileDef Parse(string strDef) { IfcArbitraryOpenProfileDef p = new IfcArbitraryOpenProfileDef(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
		internal static void parseFields(IfcArbitraryOpenProfileDef p, List<string> arrFields, ref int ipos) { IfcProfileDef.parseFields(p, arrFields, ref ipos); p.mCurve = ParserSTEP.ParseLink(arrFields[ipos++]); }