X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fskyline.cc;h=d8105e669b910eaadc3fe8e34286ae9d613c8e50;hb=35b310c6bd23169d28adf22647e8ce9b934b920d;hp=5297f6359ab91ea58642e9f552eca313031217ac;hpb=eda0b8d4348f476fd54738dcc9ac3c2e85675ab3;p=lilypond.git diff --git a/lily/skyline.cc b/lily/skyline.cc index 5297f6359a..d8105e669b 100644 --- a/lily/skyline.cc +++ b/lily/skyline.cc @@ -1,12 +1,25 @@ -/* skyline.cc -- implement the Skyline class +/* + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter - - (c) 2006--2007 Joe Neeman + Copyright (C) 2006--2010 Joe Neeman + + 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 . */ #include "skyline.hh" #include +#include #include "ly-smobs.icc" @@ -317,7 +330,7 @@ Skyline::internal_build_skyline (list *boxes, Real horizon_padding, Axis ho { list result; single_skyline (Building (boxes->front (), horizon_padding, horizon_axis, sky), - boxes->front ()[horizon_axis][LEFT], horizon_axis, &result); + boxes->front ()[horizon_axis][LEFT], horizon_padding, &result); return result; } @@ -541,6 +554,12 @@ Skyline::is_empty () const return b.end_ == infinity_f && b.y_intercept_ == -infinity_f; } +void +Skyline::clear () +{ + buildings_.clear (); + empty_skyline (&buildings_); +} /****************************************************************/