X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Fdrul-array.hh;h=fbb45dfcec0395b0b114df1b707f487764fb3ae3;hb=ab6842155a003ba7d9243507594e3e973ebbb3e4;hp=f670a56286a7a4569b9eca4fd7df787599e9f486;hpb=58bcc84c9480dae1b21bc24d8396b91fe19e0131;p=lilypond.git diff --git a/flower/include/drul-array.hh b/flower/include/drul-array.hh index f670a56286..fbb45dfcec 100644 --- a/flower/include/drul-array.hh +++ b/flower/include/drul-array.hh @@ -1,9 +1,20 @@ /* - drul-array.hh -- declare Drul_array + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2014 Han-Wen Nienhuys - (c) 1997--2005 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 DRUL_ARRAY_HH @@ -19,28 +30,32 @@ template struct Drul_array { T array_[2]; - T &elem_ref (Direction d) + T &at (Direction d) { - assert (d == 1 || d== -1); + assert (d == 1 || d == -1); return array_[ (d + 1) / 2]; } - T elem (Direction d) const + T const &at (Direction d) const { - assert (d == 1 || d== -1); + assert (d == 1 || d == -1); return array_[ (d + 1) / 2]; } - T &operator[] (Direction d) + T &operator [] (Direction d) { - return elem_ref (d); + return at (d); } - T operator[] (Direction d) const + T const &operator [] (Direction d) const { - return elem (d); + return at (d); } Drul_array () { } - Drul_array (T t1, T t2) + Drul_array (T const &t1, T const &t2) + { + set (t1, t2); + } + void set (T const &t1, T const &t2) { array_[0] = t1; array_[1] = t2; @@ -49,17 +64,17 @@ struct Drul_array template void -scale_drul (Drul_array * dr, T x) +scale_drul (Drul_array *dr, T x) { - dr->elem_ref (LEFT) *= x; - dr->elem_ref (RIGHT) *= x; + dr->at (LEFT) *= x; + dr->at (RIGHT) *= x; } inline Real linear_combination (Drul_array const &d, Real x) { - return ((1.0 - x) * Real (d.elem (LEFT)) - + (x + 1.0) * Real (d.elem (RIGHT))) * 0.5; + return ((1.0 - x) * Real (d.at (LEFT)) + + (x + 1.0) * Real (d.at (RIGHT))) * 0.5; } #endif /* DRUL_ARRAY_HH */