]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/skyline-pair.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / skyline-pair.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2008--2014 Han-Wen Nienhuys <hanwen@lilypond.org>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef SKYLINE_PAIR_HH
21 #define SKYLINE_PAIR_HH
22
23 #include "skyline.hh"
24
25 class Skyline_pair
26 {
27 private:
28   Drul_array<Skyline> skylines_;
29
30   DECLARE_SIMPLE_SMOBS (Skyline_pair);
31 public:
32   Skyline_pair ();
33   Skyline_pair (vector<Box> const &boxes, Axis a);
34   Skyline_pair (vector<Drul_array<Offset> > const &buildings, Axis a);
35   Skyline_pair (vector<Skyline_pair> const &skypairs);
36   Skyline_pair (Box const &, Axis a);
37
38   Real left () const;
39   Real right () const;
40   void raise (Real);
41   void shift (Real);
42   void deholify ();
43   void insert (Box const &, Axis);
44   void merge (Skyline_pair const &other);
45   Skyline &operator [] (Direction d);
46   Skyline const &operator [] (Direction d) const;
47   bool is_empty () const;
48   void print () const;
49   void print_points () const;
50
51   DECLARE_SCHEME_CALLBACK (skyline, (SCM, SCM));
52 };
53
54 #endif /* SKYLINE_PAIR_HH */