8000 Fixed cube -> cuboid · olamarre/robotics-toolbox-python@2c3361b · GitHub
[go: up one dir, main page]

Skip to content

Commit 2c3361b

Browse files
committed
Fixed cube -> cuboid
1 parent 8ec5cac commit 2c3361b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

roboticstoolbox/models/ETS/Omni.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ def __init__(self):
4747

4848
g0 = ELink(name="gripper", parent=b2)
4949

50-
b2.geometry = sg.Box([l, w, h], base=sm.SE3(0, 0, h / 2), color=(163, 157, 134))
50+
b2.geometry = sg.Cuboid(
51+
[l, w, h], base=sm.SE3(0, 0, h / 2), color=(163, 157, 134)
52+
)
5153

5254
elinks = [b0, b1, b2, g0]
5355

0 commit comments

Comments
 (0)
0