-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlimits.py
44 lines (29 loc) · 903 Bytes
/
limits.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
def mapToLimits(value, upper_limit = 100, lower_limit = - 100):
output = value
if (value > upper_limit):
output = upper_limit
elif (value < lower_limit):
output = lower_limit
return output
def angleMod(angle):
output = angle
while (output > 180):
output -= 360
while (output <= -180):
output += 360
return output
def mod4(number):
output = number
# output= number%4 is the same as this function. % is the modulus operator
while (output >= 4):
output -= 4
while (output < 0):
output += 4
return output
def rightAngleMod(angle):
output = angle
while (output > 45):
output -= 90
while (output <= -45):
output += 90
return output