Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:28:27 +02:00
parent 0a2f7993f7
commit 98b5f67412
23 changed files with 68 additions and 59 deletions

View File

@ -5,11 +5,12 @@ tags: math,beginner
Maps a number from one range to another range.
- Returns `num` mapped between `outMin`-`outMax` from `inMin`-`inMax`.
- Return `num` mapped between `outMin`-`outMax` from `inMin`-`inMax`.
```py
def num_to_range(num, inMin, inMax, outMin, outMax):
return outMin + ((float(num - inMin) / float((inMax - inMin))) * (outMax - outMin))
return outMin(float(num - inMin) / float(inMax - inMin) * (outMax
- outMin))
```
```py