14template <
typename T>
class Grid {
39 T minValue =
mData[0];
40 T maxValue =
mData[0];
42 if (
mData[i] < minValue) {
45 if (
mData[i] > maxValue) {
51 vec2<T> out(minValue, maxValue);
Grid() FL_NOEXCEPT=default
const T & operator()(u32 x, u32 y) const
const T & at(u32 x, u32 y) const
fl::vector_psram< T > mData
fl::span< const T > span() const
T & operator()(u32 x, u32 y)
fl::MatrixSlice< T > mSlice
const T & access(u32 x, u32 y) const
void reset(u32 width, u32 height)
Base definition for an LED controller.