-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtest_math3d.py
39 lines (29 loc) · 1003 Bytes
/
test_math3d.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
#!/usr/bin/env python
import numpy as np
import cffirmware
def test_that_vec_is_converted_to_numpy_array():
# Fixture
v_cf = cffirmware.mkvec(1, 2, 3)
# Test
actual = np.array(v_cf)
# Assert
expected = np.array([1, 2, 3])
assert np.allclose(expected, actual)
def test_normalize_radians():
# Fixture
angles = [-100, -5, 0, np.pi + 0.1, -np.pi - 0.1, 100]
for angle in angles:
# Test
actual = cffirmware.normalize_radians(angle)
# Assert
expected = np.arctan2(np.sin(angle), np.cos(angle))
assert np.allclose(expected, actual)
def test_shortest_signed_angle_radians():
# Fixture
angle_pairs = [(-np.pi/2, np.pi), (np.pi/2, np.pi), (np.pi, -np.pi/3)]
for start, goal in angle_pairs:
# Test
actual = cffirmware.shortest_signed_angle_radians(start, goal)
# Assert
expected = np.arctan2(np.sin(goal - start), np.cos(goal - start))
assert np.allclose(expected, actual)