From b1e0e05b8ebcc86ff725baf8b41b022768e5881a Mon Sep 17 00:00:00 2001 From: Mats Bengtsson Date: Tue, 20 Mar 2007 10:12:25 +0100 Subject: [PATCH] Bug fix: use degrees instead of radians in ly:stencil-rotate, i.e. in the \rotate markup command. --- lily/stencil-scheme.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily/stencil-scheme.cc b/lily/stencil-scheme.cc index a603f01b5f..125b142d26 100644 --- a/lily/stencil-scheme.cc +++ b/lily/stencil-scheme.cc @@ -297,7 +297,7 @@ LY_DEFINE (ly_stencil_rotate, "ly:stencil-rotate", SCM new_s = s->smobbed_copy (); Stencil *q = unsmob_stencil (new_s); - q->rotate (a, Offset (x_off, y_off)); + q->rotate_degrees (a, Offset (x_off, y_off)); return new_s; } -- 2.39.2