* @internal
(a: number, b: number)
| 727 | * @internal |
| 728 | */ |
| 729 | public static flooredDivision(a: number, b: number): number { |
| 730 | return a - b * Math.floor(a / b); |
| 731 | } |
| 732 | |
| 733 | // NOTE: haven't figured out yet what exact formula is applied when transposing key signatures |
| 734 | // this table is simply created by checking the Guitar Pro behavior, |
no test coverage detected