Name | norm() |
||||||
---|---|---|---|---|---|---|---|
Examples |
value = 20 n = norm(value, 0, 50) print(n) # Prints "0.4000000059604645" value = -10 n = norm(value, 0, 100) print(n) # Prints "-0.10000000149011612" | ||||||
Description |
Normalizes a number from another range into a value between 0 and 1. Identical to map(value, low, high, 0, 1). Numbers outside of the range are not clamped to 0 and 1, because out-of-range values are often intentional and useful. (See the second example above.) |
||||||
Syntax | norm(value, start, stop) | ||||||
Parameters |
| ||||||
Related |
map() lerp() |
Updated on Tue Feb 27 14:07:12 2024.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License