kopia lustrzana https://github.com/jameshball/osci-render
17 wiersze
446 B
C++
17 wiersze
446 B
C++
#include "BulgeEffect.h"
|
|
|
|
BulgeEffect::BulgeEffect() {}
|
|
|
|
BulgeEffect::~BulgeEffect() {}
|
|
|
|
Vector2 BulgeEffect::apply(int index, Vector2 input, const std::vector<double>& values, double sampleRate) {
|
|
double value = values[0];
|
|
double translatedBulge = -value + 1;
|
|
|
|
double r = input.magnitude();
|
|
double theta = atan2(input.y, input.x);
|
|
double rn = pow(r, translatedBulge);
|
|
|
|
return Vector2(rn * cos(theta), rn * sin(theta));
|
|
}
|