]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-feather.ly
* lily/beam.cc: read grow-direction for feathered beaming.
[lilypond.git] / input / regression / beam-feather.ly
1 \header  {
2
3   texidoc = "Specifying @code{grow-direction} on a beam, will cause
4   feathered beaming. The @code{\featherDurations} function can be used
5   to adjust note durations."
6   
7 }
8
9 \version "2.9.4"
10
11 \paper {
12   ragged-right = ##t
13   indent = #0.0
14 }
15
16 \featherDurations #(ly:make-moment 3 4) \relative c'' {
17   \override Beam #'grow-direction = #LEFT
18   c16[
19     c c c
20     c c c c ] 
21 }