Crate unorm
Source - Unorm
- Unsigned normalized float in the range from 0 <= x <= 1 represented as an unsigend 32 Bit
integer.
- EPSILON
1 / (2^32 - 1)
. Smallest number different from zero representable by Unorm.- MAX
1
. Largest number representable by Unorm.- MIN
0
. Smallest number representable by Unorm.- ONE
1
. Largest number representable by Unorm.- ZERO
0
. Smallest number representable by Unorm.