MCPcopy Create free account
hub / github.com/FastLED/FastLED / fxName

Method fxName

src/fl/fx/2d/blend.cpp.hpp:26–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26string Blend2d::fxName() const {
27 fl::string out = "LayeredFx2d(";
28 for (size_t i = 0; i < mLayers.size(); ++i) {
29 out += mLayers[i].fx->fxName();
30 if (i != mLayers.size() - 1) {
31 out += ",";
32 }
33 }
34 out += ")";
35 return out;
36}
37
38void Blend2d::add(Fx2dPtr layer, const Params &p) {
39 if (!layer->getXYMap().isRectangularGrid()) {

Callers 1

addMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected