mirror of
https://github.com/AquaMorph/Droplets.git
synced 2025-04-30 09:45:35 +00:00
24 lines
473 B
C++
24 lines
473 B
C++
#pragma once
|
|
|
|
#ifndef CASCADE_DROPLETS_NOISE_DROPLET_H_
|
|
#define CASCADE_DROPLETS_NOISE_DROPLET_H_
|
|
|
|
#include "daisysp.h"
|
|
#include "daisy_patch.h"
|
|
|
|
#include "droplet.h"
|
|
#include "../util.h"
|
|
|
|
class NoiseDroplet: public Droplet {
|
|
private:
|
|
daisysp::WhiteNoise noise;
|
|
daisysp::NlFilt filter;
|
|
public:
|
|
NoiseDroplet(DaisyPatch*, float, DropletState);
|
|
void Control();
|
|
void Process(float**, float**, size_t);
|
|
void Draw();
|
|
};
|
|
|
|
#endif // CASCADE_DROPLETS_NOISE_DROPLET_H_
|