2 stencil.cc -- implement Stencil
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
12 #include "font-metric.hh"
14 #include "string-convert.hh"
17 #include "ly-smobs.icc"
25 Stencil::Stencil (Box b, SCM func)
32 Stencil::print_smob (SCM, SCM port, scm_print_state *)
34 scm_puts ("#<Stencil ", port);
35 scm_puts (" >", port);
40 Stencil::mark_smob (SCM smob)
42 Stencil *s = (Stencil *) SCM_CELL_WORD_1 (smob);
46 IMPLEMENT_SIMPLE_SMOBS (Stencil);
47 IMPLEMENT_TYPE_P (Stencil, "ly:stencil?");
48 IMPLEMENT_DEFAULT_EQUAL_P (Stencil);
51 Stencil::extent (Axis a) const
57 Stencil::is_empty () const
59 return (expr_ == SCM_EOL
60 || dim_[X_AXIS].is_empty ()
61 || dim_[Y_AXIS].is_empty ());
65 Stencil::expr () const
71 Stencil::extent_box () const
77 * Rotate this stencil around the point [x, y]
80 Stencil::rotate (Real a, Offset off)
82 const Real x_cen = extent (X_AXIS).center ();
83 const Real y_cen = extent (Y_AXIS).center ();
86 * Calculate the center of rotation
88 const Real x = x_cen + off[X_AXIS] * x_cen;
89 const Real y = y_cen + off[Y_AXIS] * y_cen;
92 * Build scheme expression (processed in stencil-interpret.cc)
94 expr_ = scm_list_n (ly_symbol2scm ("rotate-stencil"),
95 scm_list_2 (scm_from_double (a),
96 scm_cons (scm_from_double (x), scm_from_double (y))),
97 expr_, SCM_UNDEFINED);
100 * Calculate the new bounding box
103 pts.push_back (Offset (-x_cen, -y_cen));
104 pts.push_back (Offset (x_cen, -y_cen));
105 pts.push_back (Offset (x_cen, y_cen));
106 pts.push_back (Offset (-x_cen, y_cen));
108 const Offset rot = complex_exp (Offset (0, a * M_PI / 180.0));
110 for (vsize i = 0; i < pts.size (); i++)
111 dim_.add_point (pts[i] * rot + Offset (x_cen, y_cen));
115 Stencil::translate (Offset o)
124 || fabs (o[a]) > 1e6)
126 programming_error (String_convert::form_string ("Improbable offset for stencil: %f staff space", o[a])
128 + "Setting to zero.");
130 if (strict_infinity_checking)
131 scm_misc_error (__FUNCTION__, "Improbable offset.", SCM_EOL);
136 expr_ = scm_list_n (ly_symbol2scm ("translate-stencil"),
138 expr_, SCM_UNDEFINED);
144 Stencil::translate_axis (Real x, Axis a)
152 Stencil::add_stencil (Stencil const &s)
154 expr_ = scm_list_3 (ly_symbol2scm ("combine-stencil"), s.expr_, expr_);
159 Stencil::set_empty (bool e)
163 dim_[X_AXIS].set_empty ();
164 dim_[Y_AXIS].set_empty ();
168 dim_[X_AXIS] = Interval (0, 0);
169 dim_[Y_AXIS] = Interval (0, 0);
174 Stencil::align_to (Axis a, Real x)
179 Interval i (extent (a));
180 translate_axis (-i.linear_combination (x), a);
183 /* See scheme Function. */
185 Stencil::add_at_edge (Axis a, Direction d, Stencil const &s, Real padding)
187 Interval my_extent = dim_[a];
188 Interval i (s.extent (a));
192 programming_error ("Stencil::moved_to_edge: adding empty stencil.");
198 Real offset = (my_extent.is_empty () ? 0.0 : my_extent[d] - his_extent)
202 toadd.translate_axis (offset, a);
207 Stencil::in_color (Real r, Real g, Real b) const
209 Stencil new_stencil (extent_box (),
210 scm_list_3 (ly_symbol2scm ("color"),
211 scm_list_3 (scm_from_double (r),
213 scm_from_double (b)),
220 Stencil::translated (Offset z) const