]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-path-fill.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / markup-path-fill.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "
5 The @code{\\path} markup command supports the @code{filled}
6 property to toggle its fill.
7 "
8 }
9
10 \markup {
11   \override #'(filled . #t) {
12     \path #0.2 #'((moveto 1 1)
13                   (lineto 1 6)
14                   (curveto 3 8 5 6 1 1)
15                   (closepath))
16   }
17 }