]> git.donarmstrong.com Git - lilypond.git/blob - lily/box.cc
Improvements in vertical skyline approximations (issue 2148).
[lilypond.git] / lily / box.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "box.hh"
21
22 void
23 Box::translate (Offset o)
24 {
25   for (Axis i = X_AXIS; i < NO_AXES; incr (i))
26     interval_a_[i] += o[i];
27 }
28
29 void
30 Box::unite (Box b)
31 {
32   for (Axis i = X_AXIS; i < NO_AXES; incr (i))
33     interval_a_[i].unite (b[i]);
34 }
35
36 Real
37 Box::area () const
38 {
39   return interval_a_[X_AXIS].length ()
40          * interval_a_[Y_AXIS].length ();
41 }
42
43 Box::Box ()
44 {
45 }
46
47 void
48 Box::set_empty ()
49 {
50   interval_a_[X_AXIS].set_empty ();
51   interval_a_[Y_AXIS].set_empty ();
52 }
53
54 Box::Box (Interval ix, Interval iy)
55 {
56   x () = ix;
57   y () = iy;
58 }
59
60 Interval &
61 Box::operator [] (Axis a)
62 {
63   return interval_a_[a];
64 }
65
66 Interval
67 Box::operator [] (Axis a) const
68 {
69   return interval_a_[a];
70 }
71
72 void
73 Box::scale (Real s)
74 {
75   interval_a_[X_AXIS] *= s;
76   interval_a_[Y_AXIS] *= s;
77 }
78
79 void
80 Box::add_point (Offset o)
81 {
82   interval_a_[X_AXIS].add_point (o[X_AXIS]);
83   interval_a_[Y_AXIS].add_point (o[Y_AXIS]);
84 }
85
86 Offset
87 Box::center () const
88 {
89   return Offset (interval_a_[X_AXIS].center (),
90                  interval_a_[Y_AXIS].center ());
91 }
92
93 void
94 Box::widen (Real x, Real y)
95 {
96   interval_a_[X_AXIS].widen (x);
97   interval_a_[Y_AXIS].widen (y);
98 }
99
100 // for debugging
101
102 void
103 Box::print ()
104 {
105   printf ("X left %4.4f right %4.4f Y down %4.4f up %4.4f\n",
106           interval_a_[X_AXIS][LEFT], interval_a_[X_AXIS][RIGHT],
107           interval_a_[Y_AXIS][DOWN], interval_a_[Y_AXIS][UP]);
108 }
109
110 /****************************************************************/
111
112 #include "ly-smobs.icc"
113
114 IMPLEMENT_SIMPLE_SMOBS (Box);
115 IMPLEMENT_TYPE_P (Box, "ly:box?");
116 IMPLEMENT_DEFAULT_EQUAL_P (Box);
117
118 SCM
119 Box::mark_smob (SCM /* x */)
120 {
121   return SCM_EOL;
122 }
123
124 int
125 Box::print_smob (SCM /* x */, SCM p, scm_print_state *)
126 {
127   scm_puts ("#<Box>", p);
128   return 1;
129 }