kopia lustrzana https://github.com/jameshball/osci-render
17 wiersze
517 B
C++
17 wiersze
517 B
C++
#pragma once
|
|
#include <JuceHeader.h>
|
|
|
|
class BulgeEffect : public osci::EffectApplication {
|
|
public:
|
|
osci::Point apply(int index, osci::Point input, const std::vector<std::atomic<double>>& values, double sampleRate) override {
|
|
double value = values[0];
|
|
double translatedBulge = -value + 1;
|
|
|
|
double r = sqrt(pow(input.x, 2) + pow(input.y, 2));
|
|
double theta = atan2(input.y, input.x);
|
|
double rn = pow(r, translatedBulge);
|
|
|
|
return osci::Point(rn * cos(theta), rn * sin(theta), input.z);
|
|
}
|
|
};
|