FastLED 3.9.15
Loading...
Searching...
No Matches
yves.h
Go to the documentation of this file.
1#pragma once
2
3// Yves visualizer class
4// Extracted from animartrix_detail.hpp
5
8
9namespace fl {
10
11class Yves : public IAnimartrix2Viz {
12public:
13 void draw(Context &ctx) override;
14};
15
16
17// Fixed-point Q31 scalar implementation of Yves.
18class Yves_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 yves.cpp.hpp:92
FPVizState mState
Definition yves.h:22
void draw(Context &ctx) override
Definition yves.cpp.hpp:11
Base definition for an LED controller.
Definition crgb.hpp:179