]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bezier.hh
* lily/align-interface.cc (find_fixed_alignment_parent): new function.
[lilypond.git] / lily / include / bezier.hh
index e9771bfd056e1b9f5785ddb33ba5a66113862016..c9a4b7acf0181338b82f597d8028b99c8992c0f3 100644 (file)
@@ -1,7 +1,7 @@
 /*
   bezier.hh -- declare Bezier and Bezier_bow
 
-  (c) 1998--1999 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c)  1998--2003 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #ifndef BEZIER_HH
 class Bezier
 {
 public:
-  Bezier ();
-
+  void assert_sanity () const;
+  void scale (Real x,Real y);
+  void reverse ();
   void rotate (Real);
   void translate (Offset);
-  void flip (Axis);
-  void check_sanity () const;
+
   Real get_other_coordinate (Axis a, Real x) const;
   Array<Real> solve_point (Axis, Real coordinate) const;
   Array<Real> solve_derivative (Offset) const;
@@ -35,12 +35,20 @@ public:
   Polynomial polynomial (Axis)const;
   Offset curve_point (Real t) const;
 
-  void reverse ();
-
   static const int CONTROL_COUNT = 4;
-  Offset control_[CONTROL_COUNT];
+
+  /*
+    Bezier curves always have 4 control points. Making this into an
+    Array<> gives unnecessary overhead, and makes debugging a royal
+    pain.  */
+
+  
+  Offset control_[4];
 };
 
+void scale (Array<Offset>* array, Real xscale, Real yscale);
+void rotate (Array<Offset>* array, Real phi);
+void translate (Array<Offset>* array, Offset o);
 
 #endif // BEZIER_HH