You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #if!defined VUMETER_HPP
- #define VUMETER_HPP
- #include <rack.hpp>
-
- class VuMeter : public rack::TransparentWidget
- {
- public:
- VuMeter(rack::Vec const& pos, rack::Vec const& size);
-
- void setValue(float cv);
- void draw(NVGcontext* vg) override;
- private:
- float m_currentValue;
- };
-
- #endif
|