]> git.donarmstrong.com Git - lilypond.git/blob - lily/axis-group-interface-scheme.cc
* lily/system.cc (do_derived_mark): don't mark from object_alist_
[lilypond.git] / lily / axis-group-interface-scheme.cc
1 /*
2   axis-group-interface-scheme.cc -- implement Axis_group_interface bindings
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10 #include "axis-group-interface.hh"
11 #include "lily-guile.hh"
12 #include "grob.hh"
13 #include "grob-array.hh"
14
15 LY_DEFINE(ly_relative_group_extent, "ly:relative-group-extent",
16           3, 0, 0, (SCM elements, SCM common, SCM axis),
17           "Determine the extent of @var{elements} relative to @var{common} in the "
18           "@var{axis} direction.")
19 {
20   Grob_array *ga = unsmob_grob_array (elements);
21   
22   SCM_ASSERT_TYPE(ga || scm_is_pair (elements), elements, SCM_ARG1, __FUNCTION__, "list or Grob_array");
23   SCM_ASSERT_TYPE(unsmob_grob (common), common, SCM_ARG2, __FUNCTION__, "grob");
24   SCM_ASSERT_TYPE(is_axis (axis), axis, SCM_ARG3, __FUNCTION__, "axis");
25
26   Link_array<Grob> elts;
27   if  (!ga)
28     {
29       for (SCM s = elements; scm_is_pair (s); s = scm_cdr (s))
30         elts.push (unsmob_grob (scm_car (s)));
31     }
32   
33   Interval ext = Axis_group_interface::relative_group_extent (ga ? ga->array () : elts,
34                                                               unsmob_grob (common),
35                                                               (Axis) scm_to_int (axis));
36   return ly_interval2scm (ext);
37 }
38           
39