|
FastLED 3.9.15
|
Template class for representing fractional ints.
| T | underlying type for data storage |
| F | number of fractional bits |
| I | number of integer bits |
#include <qfx.h>
Inheritance diagram for qfx< T, F, I >:Public Member Functions | |
| qfx (float fx) | |
| Constructor, storing a float as a fractional int. | |
| qfx (uint8_t _i, uint8_t _f) | |
| Constructor, storing a fractional int directly. | |
| int16_t | operator* (int16_t v) |
| Multiply the fractional int by a value. | |
| int32_t | operator* (int32_t v) |
| Multiply the fractional int by a value. | |
| uint16_t | operator* (uint16_t v) |
| Multiply the fractional int by a value. | |
| uint32_t | operator* (uint32_t v) |
| Multiply the fractional int by a value. | |
Private Attributes | |
| T | f:F |
| Fractional value of number. | |
| T | i:I |
| Integer value of number. | |