-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: moved TempoMapper to blue.time.TempoMap
- Loading branch information
1 parent
e2bfde6
commit f185541
Showing
14 changed files
with
82 additions
and
292 deletions.
There are no files selected for viewing
221 changes: 0 additions & 221 deletions
221
blue-core/src/main/java/blue/noteProcessor/TempoMapper.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* blue - object composition environment for csound | ||
* Copyright (c) 2023 Steven Yi ([email protected]) | ||
* Copyright (c) 2000-2006, 2023 Steven Yi ([email protected]) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published | ||
|
@@ -213,7 +213,7 @@ public double secondsToBeats(double seconds) { | |
public String toString() { | ||
StringBuilder buffer = new StringBuilder(); | ||
|
||
buffer.append("[TempoMapper]").append("\n"); | ||
buffer.append("[TempoMap]").append("\n"); | ||
|
||
for (BeatTempoPair pair : timeMap) { | ||
buffer.append(pair.beat).append(" : ").append(pair.tempo).append( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.