]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/stencil-scheme.cc
Midi2ly: if --duration-quant == first note, still write duration. Fixes #1575.
[lilypond.git] / lily / stencil-scheme.cc
index f6ac03b3c26cd43b5612b504ab0eba7bb55be608..0e7f0cd8c7012a8da86e1bb185cf0b400feccbce 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
@@ -390,3 +390,20 @@ LY_DEFINE (ly_all_stencil_expressions, "ly:all-stencil-expressions",
 {
   return all_stencil_heads ();
 }
+
+LY_DEFINE (ly_stencil_scale, "ly:stencil-scale",
+           3, 0, 0, (SCM stil, SCM x, SCM y),
+          "Scale @var{stil} using the horizontal and vertical scaling"
+          " factors @var{x} and @var{y}.")
+{
+  Stencil *s = unsmob_stencil (stil);
+  LY_ASSERT_SMOB (Stencil, stil, 1);
+  LY_ASSERT_TYPE (scm_is_number, x, 2);
+  LY_ASSERT_TYPE (scm_is_number, y, 3);
+
+  SCM new_s = s->smobbed_copy ();
+  Stencil *q = unsmob_stencil (new_s);
+
+  q->scale (scm_to_double (x), scm_to_double (y));
+  return new_s;
+}