kopia lustrzana https://github.com/jameshball/osci-render
20 wiersze
543 B
C++
20 wiersze
543 B
C++
![]() |
#include "VectorCancellingEffect.h"
|
||
|
|
||
|
VectorCancellingEffect::VectorCancellingEffect() {}
|
||
|
|
||
|
VectorCancellingEffect::~VectorCancellingEffect() {}
|
||
|
|
||
|
Vector2 VectorCancellingEffect::apply(int index, Vector2 input, double value, double frequency, double sampleRate) {
|
||
|
frequency = 1.0 + 9.0 * value;
|
||
|
if (index < lastIndex) {
|
||
|
nextInvert = nextInvert - lastIndex + frequency;
|
||
|
}
|
||
|
lastIndex = index;
|
||
|
if (index >= nextInvert) {
|
||
|
nextInvert += frequency;
|
||
|
} else {
|
||
|
input.scale(-1, -1);
|
||
|
}
|
||
|
return input;
|
||
|
}
|