We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcde356 commit 62b2c5fCopy full SHA for 62b2c5f
tests/graphics_test_features.py
@@ -149,13 +149,33 @@ def test_clear_scene():
149
del puma560
150
151
152
+def test_clear_scene_with_grid_updating():
153
+ the_grid = init_canvas()
154
+ puma560 = import_puma_560()
155
+ the_grid.update_grid()
156
+
157
+ puma560.move_base(vector(1, 1, 0))
158
159
160
+ sleep(2)
161
162
163
+ the_grid.clear_scene()
164
+ del puma560
165
166
+ while True:
167
+ sleep(1)
168
169
170
171
def test_animate_joints():
172
pass
173
174
175
def test_import_textures():
176
177
178
179
if __name__ == "__main__":
180
# run the Puma demo by default
181
test_puma560_angle_change()
0 commit comments