You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
241B

  1. #pragma once
  2. class TimeUtils
  3. {
  4. public:
  5. static float barToTime(int bar)
  6. {
  7. return bar * 4.f; // for now, 4 q in one bar
  8. }
  9. static int timeToBar(float time)
  10. {
  11. return (int) std::round(time / 4.f);
  12. }
  13. };