X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Finterval.hh;h=8160b37c2ca4b943cca8cbd4805642e3e0ca462a;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=edb76deb1a7ae729b2267cd4ee6a80998806e110;hpb=74c158521769f514c8875b1c636d493cd920017f;p=lilypond.git diff --git a/flower/include/interval.hh b/flower/include/interval.hh index edb76deb1a..8160b37c2c 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--2009 Han-Wen Nienhuys + Copyright (C) 1996--2015 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 @@ -18,7 +31,7 @@ template struct Interval_t : public Drul_array { - Drul_array::at; + using Drul_array::at; static T infinity (); static string T_to_string (T arg); @@ -55,10 +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 (); + 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); @@ -92,10 +110,10 @@ struct Interval_t : public Drul_array { if (!is_empty ()) { - at (LEFT) *= r; - at (RIGHT) *= r; - if (r < T (0)) - swap (); + at (LEFT) *= r; + at (RIGHT) *= r; + if (r < T (0)) + swap (); } return *this; } @@ -210,7 +228,7 @@ Interval_t::center () const } typedef Interval_t Interval; -typedef Interval_t Slice; // weird name +typedef Interval_t Slice; // weird name #endif // INTERVAL_HH