]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-default-lengths.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / regression / beam-default-lengths.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3
4 \header{
5     texidoc="Beamed stems have standard lengths if possible."
6     }
7
8 \score{
9     \notes\relative c'{
10         \property Voice.Beam \set #'position-callbacks =
11          #`(,Beam::least_squares
12          ,Beam::check_concave
13          ,Beam::slope_damping)
14
15         f4  f8-[ f]  f16-[ f]  f32-[ f]  f64-[ f]  f128-[ f] 
16     }
17     \paper{ raggedright = ##t}
18 }