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.

12 lines
380B

  1. #include "rack.hpp"
  2. namespace rack_plugin_rcm {
  3. static const NVGcolor NV_BLACK = nvgRGBAf(0.f, 0.f, 0.f, 1.0);
  4. static const NVGcolor NV_WHITE = nvgRGBAf(1.f, 1.f, 1.f, 1.0);
  5. static const NVGcolor NV_YELLOW = nvgRGBAf(1.f, 0.9f, 0.3f, 1.f);
  6. static const NVGcolor NV_YELLOW_H = nvgRGBAf(1.f, 0.9f, 0.3f, 0.5);
  7. static const float TAU = 6.283185307;
  8. } // namespace rack_plugin_rcm