You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some ideas for replacing the enum based articulation with a final tagless approach. This will enable more user customization downstream.
// Articulation that can be represented by a single symbol above or below a notehead
protocolSymbolizableArticulation{staticfunc staccato()->Selfstaticfunc staccatissimo()->Selfstaticfunc marcato()->Self...staticfunc stack([Self])->Self}typealiasDrawnMarking=SomeView // for example - something drawn
typealiasMarkingDescribed=String // string representation like "staccato"
extensionDrawnMarking:SymbolizableArticulation{...}extensionMarkingDesribed:SymbolisableArticulation{...}
The text was updated successfully, but these errors were encountered:
Some ideas for replacing the enum based articulation with a final tagless approach. This will enable more user customization downstream.
The text was updated successfully, but these errors were encountered: