Inheritance: IfcRectangleProfileDef
Ejemplo n.º 1
0
		internal static void parseFields(IfcRoundedRectangleProfileDef p, List<string> arrFields, ref int ipos) { IfcRectangleProfileDef.parseFields(p, arrFields, ref ipos); p.mRoundingRadius = ParserSTEP.ParseDouble(arrFields[ipos++]); }
Ejemplo n.º 2
0
		internal new static IfcRoundedRectangleProfileDef Parse(string strDef) { IfcRoundedRectangleProfileDef p = new IfcRoundedRectangleProfileDef(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
Ejemplo n.º 3
0
		internal IfcRoundedRectangleProfileDef(IfcRoundedRectangleProfileDef c) : base(c) { mRoundingRadius = c.mRoundingRadius; }