X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Faxis-group-interface-scheme.cc;h=ff16505c7bfbf4586bad720a28b575aa0f145a22;hb=74fbafa9ebed0cc66de56dec3ca01634f8ddc94d;hp=c53b5aebb4785467d061ad39f16b56f689933fbd;hpb=a0af1c5c8a58b2464fb72d7034e1c4ec79f7de3e;p=lilypond.git diff --git a/lily/axis-group-interface-scheme.cc b/lily/axis-group-interface-scheme.cc index c53b5aebb4..ff16505c7b 100644 --- a/lily/axis-group-interface-scheme.cc +++ b/lily/axis-group-interface-scheme.cc @@ -3,27 +3,35 @@ source file of the GNU LilyPond music typesetter - (c) 2005 Han-Wen Nienhuys - + (c) 2005--2009 Han-Wen Nienhuys */ #include "axis-group-interface.hh" #include "lily-guile.hh" +#include "grob.hh" +#include "grob-array.hh" -LY_DEFINE(ly_relative_group_extent, "ly:relative-group-extent", - 3, 0, 0, (SCM elements, SCM common, SCM axis), - "Determine the extent of @var{elements} relative to @var{common} in the " - "@var{axis} direction.") +LY_DEFINE (ly_relative_group_extent, "ly:relative-group-extent", + 3, 0, 0, (SCM elements, SCM common, SCM axis), + "Determine the extent of @var{elements} relative to @var{common} in the" + " @var{axis} direction.") { - SCM_ASSERT_TYPE(scm_is_pair (elements), elements, SCM_ARG1, __FUNCTION__, "list"); - SCM_ASSERT_TYPE(unsmob_grob (common), common, SCM_ARG2, __FUNCTION__, "grob"); - SCM_ASSERT_TYPE(is_axis (axis), axis, SCM_ARG3, __FUNCTION__, "axis"); + Grob_array *ga = unsmob_grob_array (elements); + + SCM_ASSERT_TYPE (ga || scm_is_pair (elements), elements, SCM_ARG1, __FUNCTION__, "list or Grob_array"); + LY_ASSERT_SMOB (Grob, common, 2); + LY_ASSERT_TYPE (is_axis, axis, 3); + vector elts; + if (!ga) + { + for (SCM s = elements; scm_is_pair (s); s = scm_cdr (s)) + elts.push_back (unsmob_grob (scm_car (s))); + } - Interval ext = Axis_group_interface::relative_group_extent (elements, + Interval ext = Axis_group_interface::relative_group_extent (ga ? ga->array () : elts, unsmob_grob (common), (Axis) scm_to_int (axis)); return ly_interval2scm (ext); } - - +