@stringsync/vexml
Version:
MusicXML to Vexflow
15 lines (14 loc) • 408 B
JavaScript
import { NumberRange } from '../util';
import { Duration } from './duration';
import { DurationRange } from './durationrange';
export class EmptyCursorFrame {
tRange = new DurationRange(Duration.zero(), Duration.zero());
xRange = new NumberRange(0, 0);
yRange = new NumberRange(0, 0);
getActiveElements() {
return [];
}
toHumanReadable() {
return ['[empty]'];
}
}