]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/box.hh
Makes all side-positioning based on skylines instead of boxes.
[lilypond.git] / lily / include / box.hh
1 /*
2   some 2D geometrical concepts
3 */
4
5 #ifndef BOXES_HH
6 #define BOXES_HH
7
8 #include "interval.hh"
9 #include "offset.hh"
10 #include "smobs.hh"
11
12 class Box
13 {
14   Interval interval_a_[NO_AXES];
15   DECLARE_SIMPLE_SMOBS (Box);
16 public:
17   Interval &x () {return interval_a_[X_AXIS]; }
18   Interval &y () { return interval_a_[Y_AXIS]; }
19   Interval x () const { return interval_a_[X_AXIS]; }
20   Interval y () const {return interval_a_[Y_AXIS]; }
21   Interval operator [] (Axis a) const;
22   Interval &operator [] (Axis a);
23   Real area () const;
24   bool is_empty () const;
25
26   Offset center () const;
27
28   void translate (Offset o);
29
30   /// smallest box enclosing #b#
31   void set_empty ();
32   void add_point (Offset);
33   void widen (Real x, Real y);
34   void scale (Real r);
35   void unite (Box b);
36   void intersect (Box b);
37   void print ();
38   Box ();
39   Box (Interval ix, Interval iy);
40 };
41
42 DECLARE_UNSMOB (Box, box);
43
44 #endif