2023-03-26 12:58:31 +00:00
|
|
|
#pragma once
|
2023-03-28 12:44:46 +00:00
|
|
|
#include "EffectApplication.h"
|
2024-10-23 11:44:31 +00:00
|
|
|
#include "../shape/OsciPoint.h"
|
2023-03-26 12:58:31 +00:00
|
|
|
|
2023-03-28 12:44:46 +00:00
|
|
|
class BulgeEffect : public EffectApplication {
|
2023-03-26 12:58:31 +00:00
|
|
|
public:
|
|
|
|
BulgeEffect();
|
|
|
|
~BulgeEffect();
|
|
|
|
|
2024-10-23 11:44:31 +00:00
|
|
|
OsciPoint apply(int index, OsciPoint input, const std::vector<std::atomic<double>>&, double sampleRate) override;
|
2024-08-26 17:09:29 +00:00
|
|
|
};
|