From: fred Date: Thu, 3 Oct 1996 09:24:22 +0000 (+0000) Subject: lilypond-0.0.1 X-Git-Tag: release/1.5.59~7178 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=be258e59adef391adf00e4f7038c411c9b5e2e79;p=lilypond.git lilypond-0.0.1 --- diff --git a/boxes.cc b/boxes.cc new file mode 100644 index 0000000000..e042c25333 --- /dev/null +++ b/boxes.cc @@ -0,0 +1,22 @@ +#include "boxes.hh" +#include "const.hh" + +void +Interval:: set_empty() { + min = INFTY; + max = -INFTY; +} + +Box::Box(svec s) +{ + assert(s.sz() == 4); + x.min = s[0]; + x.max = s[1]; + y.min = s[2]; + y.max = s[3]; +} + +Box::Box() +{ + +}