X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Finterval.hh;h=be7074c242bec76dc2a599e4e9359e6ad9e73556;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=33e7c016304bef0903f2af10c719436faec2c166;hpb=94fdd3f7932666ac1b3169854ea0a9964b5d32f3;p=lilypond.git diff --git a/flower/include/interval.hh b/flower/include/interval.hh index 33e7c01630..be7074c242 100644 --- a/flower/include/interval.hh +++ b/flower/include/interval.hh @@ -1,7 +1,20 @@ /* - interval.hh -- part of flowerlib + This file is part of LilyPond, the GNU music typesetter. - (c) 1996--2007 Han-Wen Nienhuys + Copyright (C) 1996--2011 Han-Wen Nienhuys + + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #ifndef INTERVAL_HH @@ -14,7 +27,7 @@ /* A T interval. This represents the closed interval [left,right]. No invariants. T must be a totally ordered ring (with division, anyway ..) - At instantiation, the function infinity () has to be defined explicitely. */ + At instantiation, the function infinity () has to be defined explicitly. */ template struct Interval_t : public Drul_array { @@ -55,13 +68,15 @@ struct Interval_t : public Drul_array at (RIGHT) = max (at (RIGHT), p); } T length () const; + + // Returns RIGHT - LEFT, even if the interval is empty. T delta () const; void set_empty (); void set_full (); - /* - TODO: strip hungarian suffix. - */ + void unite_disjoint (Interval_t h, T padding, Direction d); + Interval_t union_disjoint (Interval_t h, T padding, Direction d) const; + bool is_empty () const { return at (LEFT) > at (RIGHT); @@ -124,7 +139,7 @@ struct Interval_t : public Drul_array static bool left_less (Interval_t const &a, Interval_t const &b) { - return a[LEFT] < b[RIGHT]; + return a[LEFT] < b[LEFT]; } };