blob: 26f800d9c817462e224ca6aacf53d75c0cfd4db6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#define _USE_MATH_DEFINES
#include <math.h>
#include "accel_types.hpp"
namespace rawaccel {
accel_power::accel_power(accel_args args)
: accel_implentation(args)
{ curve_constant_two++; }
double accel_power::accelerate(double speed) {
// f(x) = (mx)^k - 1
// The subtraction of 1 occurs with later addition of 1 in mind,
// so that the input vector is directly multiplied by (mx)^k (if unweighted)
return (offset > 0 && speed < 1) ? 0 : pow(speed * curve_constant_one, curve_constant_two) - 1;
}
void accel_power::verify(accel_args args) {
accel_implentation::verify(args);
if (args.lim_exp <= 0) error("exponent must be greater than 0");
}
}
|