]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.32
authorfred <fred>
Tue, 31 Dec 1996 23:00:01 +0000 (23:00 +0000)
committerfred <fred>
Tue, 31 Dec 1996 23:00:01 +0000 (23:00 +0000)
hdr/boxes.hh

index d817dc42e89d3c634922e79b4d8145553b470eca..22a2eec3a5f29ee524cd192aaee3e5277ac1f177 100644 (file)
@@ -9,14 +9,16 @@
 #include "real.hh"
 #include "interval.hh"
 #include "offset.hh"
+
 /// a square subset of Real^2
 struct Box {
     Interval x, y;
-    
+
     void translate(Offset o) {
        x.translate(o.x);
        y.translate(o.y);
     }
+    /// smallest box enclosing #b#
     void unite(Box b) {
        x.unite(b.x);
        y.unite(b.y);