lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Dashed Stem


From: David Nalesnik
Subject: Re: Dashed Stem
Date: Sat, 12 May 2012 15:41:00 -0500



On Sat, May 12, 2012 at 1:39 PM, David Kastrup <address@hidden> wrote:


I don't really understand the function, but maybe something like

(define (build-pos-list len on off)
 (let helper ((lst '()) (next 0) (on on) (off off))
   (if (< next len)
       (helper (cons next lst) (+ next on) off on)
       (reverse! lst (list len)))))

will do.  No idea whether this should have an even number of elements
always or not.

Thank you, David.  This works like a charm!

-David N.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]