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

Parse() static private méthode

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