mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
14 lines
335 B
C++
14 lines
335 B
C++
#include "go_to_parameter_controller.h"
|
|
#include <assert.h>
|
|
#include <cmath>
|
|
|
|
namespace Sequence {
|
|
|
|
bool GoToParameterController::setParameterAtIndex(int parameterIndex, double f) {
|
|
assert(parameterIndex == 0);
|
|
return Shared::FunctionGoToParameterController::setParameterAtIndex(parameterIndex, std::fmax(0, std::round(f)));
|
|
}
|
|
|
|
}
|
|
|