|
Oscilloscope 0.5.0
A simple oscilloscope VST
|
#include <UntriggeredOscilloscope.h>
Public Member Functions | |
| UntriggeredOscilloscope (OscilloscopeAudioProcessor &aProcessor, int sampleRate) | |
Public Member Functions inherited from OscilloscopeComponent | |
| OscilloscopeComponent (OscilloscopeAudioProcessor &aProcessor, int sampleRate, int framesPerSecond) | |
| ~OscilloscopeComponent () | |
| void | setFramesPerSecond (int framesPerSecond) |
| void | drawGrid (juce::Graphics &g, float w, float h) |
| void | paint (juce::Graphics &g) override |
| void | resized () override |
Additional Inherited Members | |
Protected Attributes inherited from OscilloscopeComponent | |
| int | sampleRate |
| std::vector< float > | sampleData |
| OscilloscopeAudioProcessor & | audioProcessor |
Untriggered oscilloscope. Displays data continuously updating with no control over trigger point and phase.
Definition at line 20 of file UntriggeredOscilloscope.h.
| UntriggeredOscilloscope::UntriggeredOscilloscope | ( | OscilloscopeAudioProcessor & | aProcessor, |
| int | sampleRate | ||
| ) |
Construct a new Untriggered Oscilloscope object
| aProcessor | AudioProcessor |
| sampleRate | Host sample rate |
Definition at line 13 of file UntriggeredOscilloscope.cpp.