Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(104)

Delta Between Two Patch Sets: ly/spanners-init.ly

Issue 7424049: Allows slurs to break at barlines.
Left Patch Set: From Neil's suggestions. Created 12 years, 1 month ago
Right Patch Set: Changes name, harmonizes slur direction Created 12 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « ly/music-functions-init.ly ('k') | scm/define-context-properties.scm » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 \version "2.16.0" 1 \version "2.16.0"
2 2
3 startGroup = #(make-span-event 'NoteGroupingEvent START) 3 startGroup = #(make-span-event 'NoteGroupingEvent START)
4 stopGroup = #(make-span-event 'NoteGroupingEvent STOP) 4 stopGroup = #(make-span-event 'NoteGroupingEvent STOP)
5 5
6 6
7 cr = #(make-span-event 'CrescendoEvent START) 7 cr = #(make-span-event 'CrescendoEvent START)
8 decr = #(make-span-event 'DecrescendoEvent START) 8 decr = #(make-span-event 'DecrescendoEvent START)
9 enddecr = #(make-span-event 'DecrescendoEvent STOP) 9 enddecr = #(make-span-event 'DecrescendoEvent STOP)
10 endcr = #(make-span-event 'CrescendoEvent STOP)· 10 endcr = #(make-span-event 'CrescendoEvent STOP)·
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 %crescpoco = \set crescendoText = "cresc. poco a poco" 106 %crescpoco = \set crescendoText = "cresc. poco a poco"
107 %decresc = \set crescendoText = "decr." 107 %decresc = \set crescendoText = "decr."
108 %dim = \set crescendoText = "dim." 108 %dim = \set crescendoText = "dim."
109 109
110 newSpacingSection = #(make-event-chord (list (make-music 'SpacingSectionEvent))) 110 newSpacingSection = #(make-event-chord (list (make-music 'SpacingSectionEvent)))
111 111
112 breakDynamicSpan = #(make-music 'BreakDynamicSpanEvent) 112 breakDynamicSpan = #(make-music 'BreakDynamicSpanEvent)
113 113
114 breakSlur = #(make-music 'BreakSlurEvent) 114 breakSlur = #(make-music 'BreakSlurEvent)
115 breakSlurJunkLeft = #(make-music 'BreakSlurEvent 'side-to-junk LEFT)
116 breakSlurJunkRight = #(make-music 'BreakSlurEvent 'side-to-junk RIGHT)
117 115
118 breakPhrasingSlur = #(make-music 'BreakPhrasingSlurEvent) 116 breakPhrasingSlur = #(make-music 'BreakPhrasingSlurEvent)
119 breakPhrasingSlurJunkLeft = #(make-music 'BreakPhrasingSlurEvent 'side-to-junk L EFT)
120 breakPhrasingSlurJunkRight = #(make-music 'BreakPhrasingSlurEvent 'side-to-junk RIGHT)
121 117
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b