-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #407 from compas-dev/robot_library_remove_old_robots
Robot library remove old robots
- Loading branch information
Showing
56 changed files
with
185 additions
and
427,378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
docs/examples/03_backends_ros/files/02_robot_model_urdf.py
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
docs/examples/03_backends_ros/files/03_forward_kinematics_urdf.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from compas_robots import Configuration | ||
from compas_fab.robots.ur5 import Robot | ||
from compas_fab.robots import RobotLibrary | ||
|
||
robot = Robot() | ||
robot = RobotLibrary.ur5() | ||
configuration = Configuration.from_revolute_values([-2.238, -1.153, -2.174, 0.185, 0.667, 0.0]) | ||
|
||
frame_WCF = robot.forward_kinematics(configuration) | ||
|
||
print("Frame in the world coordinate system") | ||
print(frame_WCF) | ||
print(str(frame_WCF.point)) | ||
|
||
assert str(frame_WCF.point) == "Point(x=0.300, y=0.100, z=0.500)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
from compas.geometry import Frame | ||
from compas_fab.robots.ur5 import Robot | ||
from compas_fab.robots import RobotLibrary | ||
from compas_fab.backends import AnalyticalInverseKinematics | ||
|
||
ik = AnalyticalInverseKinematics() | ||
robot = Robot() | ||
robot = RobotLibrary.ur5() | ||
|
||
frame_WCF = Frame((0.381, 0.093, 0.382), (0.371, -0.292, -0.882), (0.113, 0.956, -0.269)) | ||
|
||
for jp, jn in ik.inverse_kinematics(robot, frame_WCF, options={'solver': 'ur5'}): # knows that we need the IK for the UR5 robot | ||
print(jp) | ||
# The solver must be one of the supported PLANNER_BACKENDS | ||
for joint_positions, joint_names in ik.inverse_kinematics(robot, frame_WCF, options={'solver': 'ur5'}): | ||
print(joint_positions) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 0 additions & 51 deletions
51
src/compas_fab/data/universal_robot/ur10e_moveit_config/config/ur10e.srdf
This file was deleted.
Oops, something went wrong.
50 changes: 0 additions & 50 deletions
50
src/compas_fab/data/universal_robot/ur5_moveit_config/config/ur5.srdf
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-22.4 KB
src/compas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/base.stl
Binary file not shown.
Binary file removed
BIN
-65.7 KB
...mpas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/forearm.stl
Binary file not shown.
Binary file removed
BIN
-83.3 KB
...pas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/shoulder.stl
Binary file not shown.
Binary file removed
BIN
-91.6 KB
...pas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/upperarm.stl
Binary file not shown.
Binary file removed
BIN
-65.4 KB
...ompas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/wrist1.stl
Binary file not shown.
Binary file removed
BIN
-87.1 KB
...ompas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/wrist2.stl
Binary file not shown.
Binary file removed
BIN
-6.82 KB
...ompas_fab/data/universal_robot/ur_description/meshes/ur10e/collision/wrist3.stl
Binary file not shown.
Oops, something went wrong.