]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/stencil.cc
Add beam typenames to typename list.
[lilypond.git] / lily / stencil.cc
index 74af9a0ab4ccdb28705c53a740923fd9b0fd5601..6a094d28905af39a9cbb831faeb772676f838a7d 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1997--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1997--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -188,6 +188,17 @@ Stencil::translate_axis (Real x, Axis a)
   translate (o);
 }
 
+void
+Stencil::scale (Real x, Real y)
+{
+  expr_ = scm_list_3 (ly_symbol2scm ("scale-stencil"),
+                     scm_list_2 (scm_from_double (x),
+                                 scm_from_double (y)),
+                     expr_);
+  dim_[X_AXIS] *= x;
+  dim_[Y_AXIS] *= y;
+}
+
 void
 Stencil::add_stencil (Stencil const &s)
 {