Go to the source code of this file.
|
| namespace | fl |
| | Base definition for an LED controller.
|
| |
|
| CRGB | fl::sample (const CRGB *grid, const XYMap &xyMap, float x, float y, SampleMode mode=SampleMode::SAMPLE_BILINEAR) |
| | Sample a pixel from a 2D CRGB grid at floating-point coordinates.
|
| |
| CRGB | fl::sampleBilinear (const CRGB *grid, const XYMap &xyMap, float x, float y) |
| | Bilinear interpolation sample from a 2D CRGB grid.
|
| |
| CRGB | fl::sampleNearest (const CRGB *grid, const XYMap &xyMap, float x, float y) |
| | Nearest-neighbor sample from a 2D CRGB grid.
|
| |