Inheritance: IfcArbitraryOpenProfileDef
Beispiel #1
0
		internal new static IfcCenterLineProfileDef Parse(string strDef) { IfcCenterLineProfileDef p = new IfcCenterLineProfileDef(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
Beispiel #2
0
		internal static void parseFields(IfcCenterLineProfileDef p, List<string> arrFields, ref int ipos) { IfcArbitraryOpenProfileDef.parseFields(p, arrFields, ref ipos); p.mThickness = ParserSTEP.ParseDouble(arrFields[ipos++]); }
Beispiel #3
0
		internal IfcCenterLineProfileDef(IfcCenterLineProfileDef i) : base(i) { mThickness = i.mThickness; }