Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / box.cc
blob6b6088bf19f9fae2ecd7b6319a28e8d7e8a943b0
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1996--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
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.
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.
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/>.
20 #include "box.hh"
22 void
23 Box::translate (Offset o)
25 for (Axis i = X_AXIS; i < NO_AXES; incr (i))
26 interval_a_[i] += o[i];
29 void
30 Box::unite (Box b)
32 for (Axis i = X_AXIS; i < NO_AXES; incr (i))
33 interval_a_[i].unite (b[i]);
36 Box::Box ()
40 void
41 Box::set_empty ()
43 interval_a_[X_AXIS].set_empty ();
44 interval_a_[Y_AXIS].set_empty ();
47 Box::Box (Interval ix, Interval iy)
49 x () = ix;
50 y () = iy;
53 Interval &
54 Box::operator [] (Axis a)
56 return interval_a_[a];
59 Interval
60 Box::operator [] (Axis a) const
62 return interval_a_[a];
65 void
66 Box::scale (Real s)
68 interval_a_[X_AXIS] *= s;
69 interval_a_[Y_AXIS] *= s;
72 void
73 Box::add_point (Offset o)
75 interval_a_[X_AXIS].add_point (o[X_AXIS]);
76 interval_a_[Y_AXIS].add_point (o[Y_AXIS]);
79 Offset
80 Box::center () const
82 return Offset (interval_a_[X_AXIS].center (),
83 interval_a_[Y_AXIS].center ());
86 void
87 Box::widen (Real x, Real y)
89 interval_a_[X_AXIS].widen (x);
90 interval_a_[Y_AXIS].widen (y);
93 /****************************************************************/
95 #include "ly-smobs.icc"
97 IMPLEMENT_SIMPLE_SMOBS (Box);
98 IMPLEMENT_TYPE_P (Box, "ly:box?");
99 IMPLEMENT_DEFAULT_EQUAL_P (Box);
102 Box::mark_smob (SCM /* x */)
104 return SCM_EOL;
108 Box::print_smob (SCM /* x */, SCM p, scm_print_state*)
110 scm_puts ("#<Box>", p);
111 return 1;