]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bezier.hh
release: 1.3.69
[lilypond.git] / lily / include / bezier.hh
index 47890afca282bb42045d8cda90003774fbf06e6a..1f9bd2d2523c1bde1304a8eebe302e1e360f7a85 100644 (file)
 class Bezier
 {
 public:
-  Bezier ();
-
+  void assert_sanity () const;
+  void flip (Axis);
+  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 flip (Array<Offset>* arr_p, Axis a);
+void rotate (Array<Offset>* arr_p, Real phi);
+void translate (Array<Offset>* arr_p, Offset o);
 
 #endif // BEZIER_HH