Inheritance: IfcBSplineCurve
Example #1
0
		internal IfcBezierCurve(DatabaseIfc db, IfcBezierCurve c, DuplicateOptions options) : base(db, c, options) { }
Example #2
0
 internal IfcBezierCurve(DatabaseIfc db, IfcBezierCurve c) : base(db, c)
 {
 }
Example #3
0
		internal static IfcBezierCurve Parse(string strDef) { IfcBezierCurve c = new IfcBezierCurve(); int ipos = 0; parseFields(c, ParserSTEP.SplitLineFields(strDef), ref ipos); return c; }
Example #4
0
		internal static void parseFields(IfcBezierCurve c, List<string> arrFields, ref int ipos) { IfcBSplineCurve.parseFields(c, arrFields, ref ipos); }
Example #5
0
		internal IfcBezierCurve(IfcBezierCurve pl) : base(pl) { }
Example #6
0
 internal static IfcBezierCurve Parse(string str)
 {
     IfcBezierCurve c = new IfcBezierCurve(); int pos = 0; c.Parse(str, ref pos, str.Length); return c;
 }
Example #7
0
 internal IfcBezierCurve(DatabaseIfc db, IfcBezierCurve c)
     : base(db,c)
 {
 }