-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmooth.cpp
More file actions
48 lines (40 loc) · 831 Bytes
/
smooth.cpp
File metadata and controls
48 lines (40 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include "smooth.h"
Smooth::Smooth() {
value = 0;
k = .2;
valueWant = 0;
t.interval();
}
Smooth::Smooth(double newK) {
value = 0;
valueWant = 0;
setK(newK);
}
void Smooth::want(double setWant) {
applyChanges();
valueWant = setWant;
}
void Smooth::setK(double newK) {
applyChanges();
if (newK < 0) newK = 0;
if (newK > 1) newK = 1;
k = newK;
}
double Smooth::getVal() {
applyChanges();
return value;
}
// ----------------------
void Smooth::applyChanges() {
double dt = t.interval();
double tmp = pow(k, dt);
value = value * tmp + valueWant * (1. - tmp);
}
// Advanced usage
void Smooth::applyChangesManual(double dt) {
double tmp = pow(k, dt);
value = value * tmp + valueWant * (1. - tmp);
}
double Smooth::getValManual() {
return value;
}