Loading...
Searching...
No Matches
ColorInterpolator.hpp
1#pragma once
2#include <QColor>
3
4#include <score_lib_base_export.h>
5class QPen;
6namespace score
7{
8class SCORE_LIB_BASE_EXPORT ColorBang
9{
10public:
11 const QPen& getNextPen(QColor c1, QColor c2, const QPen& pen) noexcept;
12 void start() noexcept;
13 void stop() noexcept;
14 bool running() const noexcept;
15
16private:
17 int8_t pos{};
18};
19}
Definition ColorInterpolator.hpp:9
Base toolkit upon which the software is built.
Definition Application.cpp:97