]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-path-linejoin.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / markup-path-linejoin.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "
5 The @code{\\path} markup command supports the
6 @code{line-join-style} property with values of @code{bevel},
7 @code{round}, and @code{miter}.
8 "
9 }
10
11 myPath =
12 #'((moveto 0 0) (rlineto 2 5) (rlineto 2 -5))
13
14 \markup {
15   \column {
16     \override #'(line-join-style . bevel) {
17       \path #1 #myPath
18     }
19     \override #'(line-join-style . round) {
20       \path #1 #myPath
21     }
22     \override #'(line-join-style . miter) {
23       \path #1 #myPath
24     }
25   }
26 }