flower-1.0.2
[lilypond.git] / boxes.cc
blobe55af6c6f5ac9ad02ea725ac03bfbe42c4d956d2
1 #include "boxes.hh"
2 #include "const.hh"
4 void
5 Interval:: set_empty() {
6 min = INFTY;
7 max = -INFTY;
10 Box::Box(svec<Real> s)
12 assert(s.sz() == 4);
13 x.min = s[0];
14 x.max = s[1];
15 y.min = s[2];
16 y.max = s[3];
19 Box::Box()
22 Box::Box(Interval ix, Interval iy)
24 x=ix;
25 y = iy;