FastLED 3.9.15
Loading...
Searching...
No Matches
rings.h
Go to the documentation of this file.
1#pragma once
2
3// Rings visualizer class
4// Extracted from animartrix_detail.hpp
5
8
9namespace fl {
10
11class Rings : public IAnimartrix2Viz {
12public:
13 void draw(Context &ctx) override;
14};
15
16
17// Fixed-point Q31 scalar implementation of Rings.
18class Rings_FP : public IAnimartrix2Viz {
19public:
20 void draw(Context &ctx) override;
21private:
22 FPVizState mState;
23};
24
25} // namespace fl
void draw(Context &ctx) override
Definition rings.cpp.hpp:62
FPVizState mState
Definition rings.h:22
void draw(Context &ctx) override
Definition rings.cpp.hpp:11
Base definition for an LED controller.
Definition crgb.hpp:179