Re: Simplify coord-rotate (issue 263690043 by d...@gnu.org)

2015-10-15 Thread dak
Reviewers: thomasmorley651, Message: On 2015/10/15 12:34:17, thomasmorley651 wrote: Please disregard my code from comment #1, it's fishy. More appropiate would be (dropping the idea to rotate around other ponts than zero): #(define (get-PI/4-rotated-quadrants radians) (cond ((>=

Re: Simplify coord-rotate (issue 263690043 by d...@gnu.org)

2015-10-15 Thread thomasmorley65
Please disregard my code from comment #1, it's fishy. More appropiate would be (dropping the idea to rotate around other ponts than zero): #(define (get-PI/4-rotated-quadrants radians) (cond ((>= radians TWO-PI) (get-PI/4-rotated-quadrants (- radians TWO-PI))) ((< radians 0)

Simplify coord-rotate (issue 263690043 by d...@gnu.org)

2015-10-10 Thread thomasmorley65
Great simplification! Though, I'd like to add two features 1) Making it possible to rotate at a different point other than (0 . 0) 2) Getting the needed exactness as discussed starting: http://lists.gnu.org/archive/html/lilypond-user/2015-10/msg00320.html Below my attempt following your advice.