]> git.donarmstrong.com Git - lilypond.git/blob - boxes.cc
release: 0.0.3
[lilypond.git] / boxes.cc
1 #include "boxes.hh"
2 #include "const.hh"
3
4 void
5 Interval:: set_empty() {
6         min = INFTY;
7         max = -INFTY;
8 }
9
10 Box::Box(svec<Real> s)
11 {
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];
17 }
18
19 Box::Box()
20 {        
21 }
22 Box::Box(Interval ix, Interval iy)
23 {
24     x=ix;
25     y = iy;
26 }