abcjs
Version:
Renderer for abc music notation
15 lines (12 loc) • 411 B
JavaScript
// abc_dynamic_decoration.js: Definition of the DynamicDecoration class.
var DynamicDecoration = function DynamicDecoration(anchor, dec, position) {
this.type = "DynamicDecoration";
this.anchor = anchor;
this.dec = dec;
if (position === 'below')
this.volumeHeightBelow = 6;
else
this.volumeHeightAbove = 6;
this.pitch = undefined; // This will be set later
};
module.exports = DynamicDecoration;