forked from rai-opensource/spatialmath-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_graphics.py
More file actions
150 lines (132 loc) · 4.75 KB
/
Copy pathtest_graphics.py
File metadata and controls
150 lines (132 loc) · 4.75 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import unittest
import numpy as np
import matplotlib.pyplot as plt
import pytest
import sys
from spatialmath.base import *
# test graphics primitives
# TODO check they actually create artists
class TestGraphics(unittest.TestCase):
def teardown_method(self, method):
plt.close("all")
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plotvol2(self):
plotvol2(5)
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plotvol3(self):
plotvol3(5)
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plot_point(self):
plot_point((2, 3))
plot_point(np.r_[2, 3])
plot_point((2, 3), "x")
plot_point((2, 3), "x", text="foo")
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plot_text(self):
plot_text((2, 3), "foo")
plot_text(np.r_[2, 3], "foo")
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plot_box(self):
plot_box("r--", centre=(-2, -3), wh=(1, 1))
plot_box(lt=(1, 1), rb=(2, 0), filled=True, color="b")
plot_box(lrbt=(1, 2, 0, 1), filled=True, color="b")
plot_box(ltrb=(1, 0, 2, 0), filled=True, color="b")
plot_box(lt=(1, 2), wh=(2, 3))
plot_box(lbwh=(1, 2, 3, 4))
plot_box(centre=(1, 2), wh=(2, 3))
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plot_circle(self):
plot_circle(1, (0, 0), "r") # red circle
plot_circle(2, (0, 0), "b--") # blue dashed circle
plot_circle(0.5, (0, 0), filled=True, color="y") # yellow filled circle
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_ellipse(self):
plot_ellipse(np.diag((1, 2)), (0, 0), "r") # red ellipse
plot_ellipse(np.diag((1, 2)), (0, 0), "b--") # blue dashed ellipse
plot_ellipse(
np.diag((1, 2)), centre=(1, 1), filled=True, color="y"
) # yellow filled ellipse
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_plot_homline(self):
plot_homline((1, 2, 3))
plot_homline((2, 1, 3))
plot_homline((1, -2, 3), "k--")
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_cuboid(self):
plot_cuboid((1, 2, 3), color="g")
plot_cuboid((1, 2, 3), centre=(2, 3, 4), color="g")
plot_cuboid((1, 2, 3), filled=True, color="y")
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_sphere(self):
plot_sphere(0.3, color="r")
plot_sphere(1, centre=(1, 1, 1), filled=True, color="b")
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_ellipsoid(self):
plot_ellipsoid(np.diag((1, 2, 3)), color="r") # red ellipsoid
plot_ellipsoid(
np.diag((1, 2, 3)), centre=(1, 2, 3), filled=True, color="y"
) # yellow filled ellipsoid
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_cylinder(self):
plot_cylinder(radius=0.2, centre=(0.5, 0.5, 0), height=[-0.2, 0.2])
plot_cylinder(
radius=0.2,
centre=(0.5, 0.5, 0),
height=[-0.2, 0.2],
filled=True,
resolution=5,
color="red",
)
@pytest.mark.skipif(
sys.platform.startswith("darwin") and sys.version_info < (3, 11),
reason="tkinter bug with mac",
)
def test_cone(self):
plot_cone(radius=0.2, centre=(0.5, 0.5, 0), height=0.3)
plot_cone(
radius=0.2,
centre=(0.5, 0.5, 0),
height=0.3,
filled=True,
resolution=5,
color="red",
)
# ---------------------------------------------------------------------------------------#
if __name__ == "__main__":
unittest.main(buffer=True)