robotic 0.2.9.dev1__cp311-cp311-manylinux2014_x86_64.whl → 0.3.4.dev5__cp311-cp311-manylinux2014_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (416) hide show
  1. robotic/DataGen.pyi +11 -1
  2. robotic/__init__.py +8 -1
  3. robotic/_robotic.pyi +228 -110
  4. robotic/_robotic.so +0 -0
  5. robotic/algo.pyi +17 -0
  6. robotic/include/rai/{Geo → Algo}/Lewiner/MarchingCubes.h +0 -29
  7. robotic/include/rai/Algo/SplineCtrlFeed.h +1 -1
  8. robotic/include/rai/Algo/marching_cubes.h +9 -0
  9. robotic/include/rai/Algo/rungeKutta.h +2 -2
  10. robotic/include/rai/Algo/spline.h +4 -8
  11. robotic/include/rai/Algo/trilinear.h +10 -0
  12. robotic/include/rai/Control/CtrlSolver.h +1 -1
  13. robotic/include/rai/Control/TimingMPC.h +2 -2
  14. robotic/include/rai/Core/array.h +99 -64
  15. robotic/include/rai/Core/array.ipp +290 -139
  16. robotic/include/rai/Core/arrayDouble.h +36 -26
  17. robotic/include/rai/Core/defines.h +7 -9
  18. robotic/include/rai/Core/graph.h +27 -23
  19. robotic/include/rai/Core/h5.h +3 -1
  20. robotic/include/rai/Core/thread.h +12 -12
  21. robotic/include/rai/Core/util.h +58 -79
  22. robotic/include/rai/DataGen/rndStableConfigs.h +1 -0
  23. robotic/include/rai/DataGen/shapenetGrasps.h +5 -3
  24. robotic/include/rai/Geo/depth2PointCloud.h +2 -0
  25. robotic/include/rai/Geo/geo.h +23 -15
  26. robotic/include/rai/Geo/{fclInterface.h → i_fcl.h} +3 -1
  27. robotic/include/rai/Geo/mesh.h +18 -13
  28. robotic/include/rai/Geo/pairCollision.h +43 -43
  29. robotic/include/rai/Geo/signedDistanceFunctions.h +7 -5
  30. robotic/include/rai/Geo/stb_image.h +1 -1
  31. robotic/include/rai/Gui/RenderData.h +9 -7
  32. robotic/include/rai/Gui/opengl.h +6 -6
  33. robotic/include/rai/Gui/plot.h +1 -1
  34. robotic/include/rai/KOMO/komo.h +6 -3
  35. robotic/include/rai/KOMO/komo_NLP.h +2 -2
  36. robotic/include/rai/KOMO/manipTools.h +7 -2
  37. robotic/include/rai/KOMO/testProblems_KOMO.h +5 -9
  38. robotic/include/rai/Kin/F_forces.h +3 -3
  39. robotic/include/rai/Kin/cameraview.h +24 -36
  40. robotic/include/rai/Kin/dof_forceExchange.h +7 -7
  41. robotic/include/rai/Kin/feature.h +1 -1
  42. robotic/include/rai/Kin/frame.h +22 -24
  43. robotic/include/rai/Kin/{kin_physx.h → i_Physx.h} +10 -8
  44. robotic/include/rai/Kin/kin.h +29 -21
  45. robotic/include/rai/Kin/proxy.h +1 -1
  46. robotic/include/rai/Kin/simulation.h +20 -10
  47. robotic/include/rai/Kin/viewer.h +14 -1
  48. robotic/include/rai/LGP/LGP_TAMP_Abstraction.h +33 -0
  49. robotic/include/rai/LGP/LGP_Tool.h +4 -25
  50. robotic/include/rai/LGP/LGP_computers.h +1 -1
  51. robotic/include/rai/LGP/LGP_computers2.h +196 -0
  52. robotic/include/rai/LGP/NLP_Descriptor.h +5 -0
  53. robotic/include/rai/Logic/folWorld.h +1 -1
  54. robotic/include/rai/Logic/treeSearchDomain.h +2 -2
  55. robotic/include/rai/Optim/BayesOpt.h +13 -6
  56. robotic/include/rai/Optim/CMA/boundary_transformation.h +73 -0
  57. robotic/include/rai/Optim/CMA/cmaes.h +175 -0
  58. robotic/include/rai/Optim/CMA/cmaes_interface.h +68 -0
  59. robotic/include/rai/Optim/GlobalIterativeNewton.h +7 -3
  60. robotic/include/rai/Optim/NLP.h +23 -7
  61. robotic/include/rai/Optim/NLP_GraphSolver.h +1 -1
  62. robotic/include/rai/Optim/NLP_Solver.h +5 -5
  63. robotic/include/rai/Optim/constrained.h +4 -4
  64. robotic/include/rai/Optim/{opt-ceres.h → i_Ceres.h} +2 -2
  65. robotic/include/rai/Optim/{opt-nlopt.h → i_NLopt.h} +4 -0
  66. robotic/include/rai/Optim/lagrangian.h +7 -5
  67. robotic/include/rai/Optim/liblbfgs/liblbfgs.h +755 -0
  68. robotic/include/rai/Optim/m_EvoStrategies.h +114 -0
  69. robotic/include/rai/Optim/{gradient.h → m_Gradient.h} +13 -12
  70. robotic/include/rai/Optim/m_LBFGS.h +21 -0
  71. robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h +104 -0
  72. robotic/include/rai/Optim/m_LocalGreedy.h +31 -0
  73. robotic/include/rai/Optim/m_NelderMead.h +23 -0
  74. robotic/include/rai/Optim/{newton.h → m_Newton.h} +7 -4
  75. robotic/include/rai/Optim/{SlackGaussNewton.h → m_SlackGaussNewton.h} +0 -10
  76. robotic/include/rai/Optim/options.h +8 -7
  77. robotic/include/rai/Optim/primalDual.h +10 -6
  78. robotic/include/rai/Optim/testProblems_Opt.h +25 -19
  79. robotic/include/rai/Optim/utils.h +16 -85
  80. robotic/include/rai/PathAlgos/ConfigurationProblem.h +3 -2
  81. robotic/include/rai/PathAlgos/RRT_PathFinder.h +2 -2
  82. robotic/include/rai/Perception/pcl.h +10 -10
  83. robotic/include/rai/Perception/surfels.h +1 -1
  84. robotic/include/rai/Search/TreeSearchNode.h +1 -1
  85. robotic/include/rai/ry/py-algo.h +17 -0
  86. robotic/include/rai/ry/types.h +4 -2
  87. robotic/librai.so +0 -0
  88. robotic/manipulation.py +5 -7
  89. robotic/meshTool +0 -0
  90. robotic/mujoco-import.py +8 -0
  91. robotic/rai-robotModels/g1/g1.g +11 -2
  92. robotic/rai-robotModels/g1/g1_29dof_conv.yml +64 -0
  93. robotic/rai-robotModels/g1/g1_clean.g +38 -73
  94. robotic/rai-robotModels/g1/meshes/head_link.h5 +0 -0
  95. robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.h5 +0 -0
  96. robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.h5 +0 -0
  97. robotic/rai-robotModels/g1/meshes/left_elbow_link.h5 +0 -0
  98. robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.h5 +0 -0
  99. robotic/rai-robotModels/g1/meshes/left_hip_roll_link.h5 +0 -0
  100. robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.h5 +0 -0
  101. robotic/rai-robotModels/g1/meshes/left_knee_link.h5 +0 -0
  102. robotic/rai-robotModels/g1/meshes/left_rubber_hand.h5 +0 -0
  103. robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.h5 +0 -0
  104. robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.h5 +0 -0
  105. robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.h5 +0 -0
  106. robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.h5 +0 -0
  107. robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.h5 +0 -0
  108. robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.h5 +0 -0
  109. robotic/rai-robotModels/g1/meshes/logo_link.h5 +0 -0
  110. robotic/rai-robotModels/g1/meshes/pelvis.h5 +0 -0
  111. robotic/rai-robotModels/g1/meshes/pelvis_contour_link.h5 +0 -0
  112. robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.h5 +0 -0
  113. robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.h5 +0 -0
  114. robotic/rai-robotModels/g1/meshes/right_elbow_link.h5 +0 -0
  115. robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.h5 +0 -0
  116. robotic/rai-robotModels/g1/meshes/right_hip_roll_link.h5 +0 -0
  117. robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.h5 +0 -0
  118. robotic/rai-robotModels/g1/meshes/right_knee_link.h5 +0 -0
  119. robotic/rai-robotModels/g1/meshes/right_rubber_hand.h5 +0 -0
  120. robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.h5 +0 -0
  121. robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.h5 +0 -0
  122. robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.h5 +0 -0
  123. robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.h5 +0 -0
  124. robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.h5 +0 -0
  125. robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.h5 +0 -0
  126. robotic/rai-robotModels/g1/meshes/torso_link.h5 +0 -0
  127. robotic/rai-robotModels/g1/meshes/waist_roll_link.h5 +0 -0
  128. robotic/rai-robotModels/g1/meshes/waist_support_link.h5 +0 -0
  129. robotic/rai-robotModels/g1/meshes/waist_yaw_link.h5 +0 -0
  130. robotic/rai-robotModels/objects/shelf.g +1 -1
  131. robotic/rai-robotModels/panda/meshes/finger.h5 +0 -0
  132. robotic/rai-robotModels/panda/meshes/hand.h5 +0 -0
  133. robotic/rai-robotModels/panda/meshes/link0.h5 +0 -0
  134. robotic/rai-robotModels/panda/meshes/link1.h5 +0 -0
  135. robotic/rai-robotModels/panda/meshes/link2.h5 +0 -0
  136. robotic/rai-robotModels/panda/meshes/link3.h5 +0 -0
  137. robotic/rai-robotModels/panda/meshes/link4.h5 +0 -0
  138. robotic/rai-robotModels/panda/meshes/link5.h5 +0 -0
  139. robotic/rai-robotModels/panda/meshes/link6.h5 +0 -0
  140. robotic/rai-robotModels/panda/meshes/link7.h5 +0 -0
  141. robotic/rai-robotModels/panda/panda.g +10 -10
  142. robotic/rai-robotModels/panda/panda_arm_hand_conv.g +24 -0
  143. robotic/rai-robotModels/panda/panda_arm_hand_conv.yml +24 -0
  144. robotic/rai-robotModels/panda/panda_clean.g +21 -45
  145. robotic/rai-robotModels/panda/panda_gripper.g +5 -7
  146. robotic/rai-robotModels/panda/panda_withoutCollisionModels.g +3 -11
  147. robotic/rai-robotModels/pr2/meshes/base.h5 +0 -0
  148. robotic/rai-robotModels/pr2/meshes/base_color.png +0 -0
  149. robotic/rai-robotModels/pr2/meshes/caster.h5 +0 -0
  150. robotic/rai-robotModels/pr2/meshes/elbow_flex.h5 +0 -0
  151. robotic/rai-robotModels/pr2/meshes/elbow_flex_color.png +0 -0
  152. robotic/rai-robotModels/pr2/meshes/forearm.h5 +0 -0
  153. robotic/rai-robotModels/pr2/meshes/forearm_color.png +0 -0
  154. robotic/rai-robotModels/pr2/meshes/forearm_roll.h5 +0 -0
  155. robotic/rai-robotModels/pr2/meshes/gripper_palm.h5 +0 -0
  156. robotic/rai-robotModels/pr2/meshes/gripper_palm_color.png +0 -0
  157. robotic/rai-robotModels/pr2/meshes/head_pan.h5 +0 -0
  158. robotic/rai-robotModels/pr2/meshes/head_pan_color.png +0 -0
  159. robotic/rai-robotModels/pr2/meshes/head_tilt.h5 +0 -0
  160. robotic/rai-robotModels/pr2/meshes/head_tilt_color.png +0 -0
  161. robotic/rai-robotModels/pr2/meshes/l_finger.h5 +0 -0
  162. robotic/rai-robotModels/pr2/meshes/l_finger_color.png +0 -0
  163. robotic/rai-robotModels/pr2/meshes/l_finger_tip.h5 +0 -0
  164. robotic/rai-robotModels/pr2/meshes/l_finger_tip_color.png +0 -0
  165. robotic/rai-robotModels/pr2/meshes/shoulder_lift.h5 +0 -0
  166. robotic/rai-robotModels/pr2/meshes/shoulder_lift_color.png +0 -0
  167. robotic/rai-robotModels/pr2/meshes/shoulder_pan.h5 +0 -0
  168. robotic/rai-robotModels/pr2/meshes/shoulder_pan_color.png +0 -0
  169. robotic/rai-robotModels/pr2/meshes/tilting_hokuyo.h5 +0 -0
  170. robotic/rai-robotModels/pr2/meshes/tilting_hokuyo_color.png +0 -0
  171. robotic/rai-robotModels/pr2/meshes/torso_lift.h5 +0 -0
  172. robotic/rai-robotModels/pr2/meshes/torso_lift_color.png +0 -0
  173. robotic/rai-robotModels/pr2/meshes/upper_arm.h5 +0 -0
  174. robotic/rai-robotModels/pr2/meshes/upper_arm_color.png +0 -0
  175. robotic/rai-robotModels/pr2/meshes/upper_arm_roll.h5 +0 -0
  176. robotic/rai-robotModels/pr2/meshes/upper_arm_roll_color.png +0 -0
  177. robotic/rai-robotModels/pr2/meshes/wheel.h5 +0 -0
  178. robotic/rai-robotModels/pr2/meshes/wheel_color.png +0 -0
  179. robotic/rai-robotModels/pr2/meshes/wrist_color.png +0 -0
  180. robotic/rai-robotModels/pr2/meshes/wrist_flex.h5 +0 -0
  181. robotic/rai-robotModels/pr2/meshes/wrist_roll.h5 +0 -0
  182. robotic/rai-robotModels/pr2/pr2.g +12 -12
  183. robotic/rai-robotModels/pr2/pr2_clean.g +122 -118
  184. robotic/rai-robotModels/pr2/pr2_conv.g +218 -0
  185. robotic/rai-robotModels/pr2/pr2_modifications.g +2 -2
  186. robotic/rai-robotModels/ranger/meshes/ranger_mini3.h5 +0 -0
  187. robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.h5 +0 -0
  188. robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.h5 +0 -0
  189. robotic/rai-robotModels/ranger/ranger.g +8 -8
  190. robotic/rai-robotModels/ranger/ranger_clean.g +5 -5
  191. robotic/rai-robotModels/ranger/ranger_mini_conv.g +14 -0
  192. robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_base_link.h5 +0 -0
  193. robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_finger.h5 +0 -0
  194. robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_knuckle.h5 +0 -0
  195. robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_finger.h5 +0 -0
  196. robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_knuckle.h5 +0 -0
  197. robotic/rai-robotModels/robotiq/robotiq.g +2 -2
  198. robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml +19 -0
  199. robotic/rai-robotModels/robotiq/robotiq_clean.g +16 -16
  200. robotic/rai-robotModels/scenarios/ballFinger.g +2 -2
  201. robotic/rai-robotModels/scenarios/liftRing.g +2 -2
  202. robotic/rai-robotModels/scenarios/pandaFloatingGripper.g +1 -1
  203. robotic/rai-robotModels/scenarios/pandaSingle.g +1 -1
  204. robotic/rai-robotModels/scenarios/panda_fixRobotiq.g +3 -3
  205. robotic/rai-robotModels/tests/arm.g +18 -19
  206. robotic/rai-robotModels/tests/compound.g +3 -6
  207. robotic/rai-robotModels/ur10/meshes/base.h5 +0 -0
  208. robotic/rai-robotModels/ur10/meshes/forearm.h5 +0 -0
  209. robotic/rai-robotModels/ur10/meshes/shoulder.h5 +0 -0
  210. robotic/rai-robotModels/ur10/meshes/upperarm.h5 +0 -0
  211. robotic/rai-robotModels/ur10/meshes/wrist1.h5 +0 -0
  212. robotic/rai-robotModels/ur10/meshes/wrist2.h5 +0 -0
  213. robotic/rai-robotModels/ur10/meshes/wrist3.h5 +0 -0
  214. robotic/rai-robotModels/ur10/ur10.g +2 -2
  215. robotic/rai-robotModels/ur10/ur10_clean.g +8 -8
  216. robotic/rai-robotModels/ur10/ur10_conv.g +17 -0
  217. robotic/ry-h5info +3 -12
  218. robotic/ry-test +5 -4
  219. robotic/ry-urdfConvert.py +74 -0
  220. robotic/ry-view +28 -6
  221. robotic/src/cleanMeshes.py +59 -0
  222. robotic/src/h5_helper.py +46 -0
  223. robotic/src/h5_helper.py~ +42 -0
  224. robotic/src/mesh_helper.py +395 -0
  225. robotic/{rai-robotModels/ranger/meshes/cleanMeshes.mlx → src/meshlabFilters.mlx} +0 -3
  226. robotic/src/mujoco_io.py +242 -0
  227. robotic/src/urdf_io.py +237 -0
  228. robotic/src/yaml_helper.py +29 -0
  229. robotic/version.py +1 -1
  230. robotic-0.3.4.dev5.data/scripts/ry-h5info +23 -0
  231. {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-test +5 -4
  232. robotic-0.3.4.dev5.data/scripts/ry-urdfConvert.py +74 -0
  233. robotic-0.3.4.dev5.data/scripts/ry-view +46 -0
  234. {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/METADATA +18 -22
  235. robotic-0.3.4.dev5.dist-info/RECORD +386 -0
  236. {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/WHEEL +1 -1
  237. robotic/nlp.py +0 -113
  238. robotic/rai-robotModels/baxter/baxter.g +0 -49
  239. robotic/rai-robotModels/baxter/baxter_clean.g +0 -116
  240. robotic/rai-robotModels/baxter/baxter_clean2.g +0 -205
  241. robotic/rai-robotModels/baxter/baxter_clean3.g +0 -223
  242. robotic/rai-robotModels/baxter/baxter_description/meshes/base/PEDESTAL.ply +0 -0
  243. robotic/rai-robotModels/baxter/baxter_description/meshes/base/pedestal_link_collision.ply +0 -0
  244. robotic/rai-robotModels/baxter/baxter_description/meshes/head/H0.ply +0 -0
  245. robotic/rai-robotModels/baxter/baxter_description/meshes/head/H1.ply +0 -0
  246. robotic/rai-robotModels/baxter/baxter_description/meshes/lower_elbow/E1.ply +0 -0
  247. robotic/rai-robotModels/baxter/baxter_description/meshes/lower_forearm/W1.ply +0 -0
  248. robotic/rai-robotModels/baxter/baxter_description/meshes/lower_shoulder/S1.ply +0 -0
  249. robotic/rai-robotModels/baxter/baxter_description/meshes/torso/base_link.ply +0 -0
  250. robotic/rai-robotModels/baxter/baxter_description/meshes/torso/base_link_collision.ply +0 -0
  251. robotic/rai-robotModels/baxter/baxter_description/meshes/upper_elbow/E0.ply +0 -0
  252. robotic/rai-robotModels/baxter/baxter_description/meshes/upper_forearm/W0.ply +0 -0
  253. robotic/rai-robotModels/baxter/baxter_description/meshes/upper_shoulder/S0.ply +0 -0
  254. robotic/rai-robotModels/baxter/baxter_description/meshes/wrist/W2.ply +0 -0
  255. robotic/rai-robotModels/baxter/baxter_new.g +0 -53
  256. robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/electric_gripper_base.ply +0 -0
  257. robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply +0 -0
  258. robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/half_round_tip.ply +0 -0
  259. robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/paddle_tip.ply +0 -0
  260. robotic/rai-robotModels/baxter/rethink_ee_description/meshes/pneumatic_gripper/pneumatic_gripper_base.ply +0 -0
  261. robotic/rai-robotModels/baxter/rethink_ee_description/meshes/pneumatic_gripper/pneumatic_gripper_w_cup.ply +0 -0
  262. robotic/rai-robotModels/g1/meshes/head_link.ply +0 -0
  263. robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.ply +0 -0
  264. robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.ply +0 -0
  265. robotic/rai-robotModels/g1/meshes/left_elbow_link.ply +0 -0
  266. robotic/rai-robotModels/g1/meshes/left_hand_index_0_link.ply +0 -0
  267. robotic/rai-robotModels/g1/meshes/left_hand_index_1_link.ply +0 -0
  268. robotic/rai-robotModels/g1/meshes/left_hand_middle_0_link.ply +0 -0
  269. robotic/rai-robotModels/g1/meshes/left_hand_middle_1_link.ply +0 -0
  270. robotic/rai-robotModels/g1/meshes/left_hand_palm_link.ply +0 -0
  271. robotic/rai-robotModels/g1/meshes/left_hand_thumb_0_link.ply +0 -0
  272. robotic/rai-robotModels/g1/meshes/left_hand_thumb_1_link.ply +0 -0
  273. robotic/rai-robotModels/g1/meshes/left_hand_thumb_2_link.ply +0 -0
  274. robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.ply +0 -0
  275. robotic/rai-robotModels/g1/meshes/left_hip_roll_link.ply +0 -0
  276. robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.ply +0 -0
  277. robotic/rai-robotModels/g1/meshes/left_knee_link.ply +0 -0
  278. robotic/rai-robotModels/g1/meshes/left_rubber_hand.ply +0 -0
  279. robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.ply +0 -0
  280. robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.ply +0 -0
  281. robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.ply +0 -0
  282. robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.ply +0 -0
  283. robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.ply +0 -0
  284. robotic/rai-robotModels/g1/meshes/left_wrist_roll_rubber_hand.ply +0 -0
  285. robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.ply +0 -0
  286. robotic/rai-robotModels/g1/meshes/logo_link.ply +0 -0
  287. robotic/rai-robotModels/g1/meshes/pelvis.ply +0 -0
  288. robotic/rai-robotModels/g1/meshes/pelvis_contour_link.ply +0 -0
  289. robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.ply +0 -0
  290. robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.ply +0 -0
  291. robotic/rai-robotModels/g1/meshes/right_elbow_link.ply +0 -0
  292. robotic/rai-robotModels/g1/meshes/right_hand_index_0_link.ply +0 -0
  293. robotic/rai-robotModels/g1/meshes/right_hand_index_1_link.ply +0 -0
  294. robotic/rai-robotModels/g1/meshes/right_hand_middle_0_link.ply +0 -0
  295. robotic/rai-robotModels/g1/meshes/right_hand_middle_1_link.ply +0 -0
  296. robotic/rai-robotModels/g1/meshes/right_hand_palm_link.ply +0 -0
  297. robotic/rai-robotModels/g1/meshes/right_hand_thumb_0_link.ply +0 -0
  298. robotic/rai-robotModels/g1/meshes/right_hand_thumb_1_link.ply +0 -0
  299. robotic/rai-robotModels/g1/meshes/right_hand_thumb_2_link.ply +0 -0
  300. robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.ply +0 -0
  301. robotic/rai-robotModels/g1/meshes/right_hip_roll_link.ply +0 -0
  302. robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.ply +0 -0
  303. robotic/rai-robotModels/g1/meshes/right_knee_link.ply +0 -0
  304. robotic/rai-robotModels/g1/meshes/right_rubber_hand.ply +0 -0
  305. robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.ply +0 -0
  306. robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.ply +0 -0
  307. robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.ply +0 -0
  308. robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.ply +0 -0
  309. robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.ply +0 -0
  310. robotic/rai-robotModels/g1/meshes/right_wrist_roll_rubber_hand.ply +0 -0
  311. robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.ply +0 -0
  312. robotic/rai-robotModels/g1/meshes/torso_constraint_L_link.ply +0 -0
  313. robotic/rai-robotModels/g1/meshes/torso_constraint_L_rod_link.ply +0 -0
  314. robotic/rai-robotModels/g1/meshes/torso_constraint_R_link.ply +0 -0
  315. robotic/rai-robotModels/g1/meshes/torso_constraint_R_rod_link.ply +0 -0
  316. robotic/rai-robotModels/g1/meshes/torso_link.ply +0 -0
  317. robotic/rai-robotModels/g1/meshes/waist_constraint_L.ply +0 -0
  318. robotic/rai-robotModels/g1/meshes/waist_constraint_R.ply +0 -0
  319. robotic/rai-robotModels/g1/meshes/waist_roll_link.ply +0 -0
  320. robotic/rai-robotModels/g1/meshes/waist_support_link.ply +0 -0
  321. robotic/rai-robotModels/g1/meshes/waist_yaw_link.ply +0 -0
  322. robotic/rai-robotModels/panda/franka_description/meshes/collision/finger.stl +0 -0
  323. robotic/rai-robotModels/panda/franka_description/meshes/collision/hand.stl +0 -0
  324. robotic/rai-robotModels/panda/franka_description/meshes/collision/link0.stl +0 -0
  325. robotic/rai-robotModels/panda/franka_description/meshes/collision/link1.stl +0 -0
  326. robotic/rai-robotModels/panda/franka_description/meshes/collision/link2.stl +0 -0
  327. robotic/rai-robotModels/panda/franka_description/meshes/collision/link3.stl +0 -0
  328. robotic/rai-robotModels/panda/franka_description/meshes/collision/link4.stl +0 -0
  329. robotic/rai-robotModels/panda/franka_description/meshes/collision/link5.stl +0 -0
  330. robotic/rai-robotModels/panda/franka_description/meshes/collision/link6.stl +0 -0
  331. robotic/rai-robotModels/panda/franka_description/meshes/collision/link7.stl +0 -0
  332. robotic/rai-robotModels/panda/franka_description/meshes/visual/HOWTO.sh +0 -10
  333. robotic/rai-robotModels/panda/franka_description/meshes/visual/HOWTO2.sh +0 -7
  334. robotic/rai-robotModels/panda/franka_description/meshes/visual/convMeshes.mlx +0 -38
  335. robotic/rai-robotModels/panda/franka_description/meshes/visual/finger.ply +0 -0
  336. robotic/rai-robotModels/panda/franka_description/meshes/visual/hand.ply +0 -0
  337. robotic/rai-robotModels/panda/franka_description/meshes/visual/link0.ply +0 -0
  338. robotic/rai-robotModels/panda/franka_description/meshes/visual/link1.ply +0 -0
  339. robotic/rai-robotModels/panda/franka_description/meshes/visual/link2.ply +0 -0
  340. robotic/rai-robotModels/panda/franka_description/meshes/visual/link3.ply +0 -0
  341. robotic/rai-robotModels/panda/franka_description/meshes/visual/link4.ply +0 -0
  342. robotic/rai-robotModels/panda/franka_description/meshes/visual/link5.ply +0 -0
  343. robotic/rai-robotModels/panda/franka_description/meshes/visual/link6.ply +0 -0
  344. robotic/rai-robotModels/panda/franka_description/meshes/visual/link7.ply +0 -0
  345. robotic/rai-robotModels/panda/franka_description/meshes/visual/script.mlx +0 -28
  346. robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/base.ply +0 -0
  347. robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/base_L.ply +0 -0
  348. robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/caster.ply +0 -0
  349. robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/caster_L.ply +0 -0
  350. robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/pr2_wheel.ply +0 -0
  351. robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/wheel.ply +0 -0
  352. robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/forearm.ply +0 -0
  353. robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_flex.ply +0 -0
  354. robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_roll.ply +0 -0
  355. robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_roll_L.ply +0 -0
  356. robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/gripper_palm.ply +0 -0
  357. robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/l_finger.ply +0 -0
  358. robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/l_finger_tip.ply +0 -0
  359. robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_pan.ply +0 -0
  360. robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_pan_L.ply +0 -0
  361. robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_tilt.ply +0 -0
  362. robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_tilt_L.ply +0 -0
  363. robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_lift.ply +0 -0
  364. robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_pan.ply +0 -0
  365. robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_yaw.ply +0 -0
  366. robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/upper_arm_roll.ply +0 -0
  367. robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/upper_arm_roll_L.ply +0 -0
  368. robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/hok_tilt.ply +0 -0
  369. robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/tilting_hokuyo.ply +0 -0
  370. robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/tilting_hokuyo_L.ply +0 -0
  371. robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso.ply +0 -0
  372. robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso_lift.ply +0 -0
  373. robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso_lift_L.ply +0 -0
  374. robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/elbow_flex.ply +0 -0
  375. robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll.ply +0 -0
  376. robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll_L.ply +0 -0
  377. robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/upper_arm.ply +0 -0
  378. robotic/rai-robotModels/ranger/meshes/cleanMeshes.sh +0 -8
  379. robotic/rai-robotModels/ranger/meshes/ranger_mini3.ply +0 -0
  380. robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.ply +0 -0
  381. robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.ply +0 -0
  382. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link.ply +0 -0
  383. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link_x.ply +0 -10
  384. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_inner_finger.ply +0 -0
  385. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_inner_knuckle.ply +0 -0
  386. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_finger.ply +0 -0
  387. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_knuckle.ply +0 -0
  388. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_pad.ply +0 -0
  389. robotic/rai-robotModels/robotiq/meshes/visual/robotiq_gripper_coupling.ply +0 -0
  390. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Base.ply +0 -0
  391. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Forearm.ply +0 -0
  392. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Shoulder.ply +0 -0
  393. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/UpperArm.ply +0 -0
  394. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist1.ply +0 -0
  395. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist2.ply +0 -0
  396. robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist3.ply +0 -0
  397. robotic/ry-urdf2rai +0 -222
  398. robotic/ry-urdf2yaml +0 -250
  399. robotic-0.2.9.dev1.data/scripts/ry-h5info +0 -32
  400. robotic-0.2.9.dev1.data/scripts/ry-urdf2rai +0 -222
  401. robotic-0.2.9.dev1.data/scripts/ry-urdf2yaml +0 -250
  402. robotic-0.2.9.dev1.data/scripts/ry-view +0 -24
  403. robotic-0.2.9.dev1.dist-info/RECORD +0 -421
  404. /robotic/include/rai/{Geo → Algo}/Lewiner/LookUpTable.h +0 -0
  405. /robotic/include/rai/Geo/{assimpInterface.h → i_assimp.h} +0 -0
  406. /robotic/include/rai/Kin/{kin_bullet.h → i_Bullet.h} +0 -0
  407. /robotic/include/rai/Kin/{kin_feather.h → i_Feather.h} +0 -0
  408. /robotic/include/rai/Kin/{kin_ode.h → i_Ode.h} +0 -0
  409. /robotic/include/rai/Optim/{opt-ipopt.h → i_Ipopt.h} +0 -0
  410. /robotic/rai-robotModels/robotiq/meshes/{visual/robotiq_ft300.ply → robotiq_ft300.ply} +0 -0
  411. /robotic/{import.py → src/__init__.py} +0 -0
  412. {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-bot +0 -0
  413. {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-info +0 -0
  414. {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-meshTool +0 -0
  415. {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/licenses/LICENSE +0 -0
  416. {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/top_level.txt +0 -0
@@ -1,49 +0,0 @@
1
- Include: <baxter_clean2.g>
2
-
3
- #Delete shape collision (head):
4
-
5
- #shape (head): { shape: mesh, size: [1, 1, 1, 1], Q: "T -0.0319886 -2.26154e-05 -0.00274816 -0.707107 0 -0.707107 0 ", mesh: <head/H0.STL>, color: [0.2, 0.2, 0.2, 1], rel_includes_mesh_center, }
6
- #shape (head): { shape: box, size: [0.218, 0.16, 0.001, 0], Q: "T -0.0157421 1.40048e-14 -0.119839 0.154854 -0.689942 -0.689942 0.154854 ", color: [0, 0, 0, 1] }
7
- #shape (head): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0055038, -0.000139031, -0.0938075, -0.453099, -0.453099, -0.542864, 0.542864], mesh: <head/H1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
8
-
9
- (head): { shape: box, size: [0.27, 0.19, 0.03, 0], Q: [-0.0157421, 0, -0.119839, 0.154854, -0.689942, -0.689942, 0.154854], color: [1, 0, 0] }
10
-
11
- ## zero position
12
-
13
- Edit right_s0: { q: 0.08, robot }
14
- Edit left_s0: { q: -0.08, robot }
15
- Edit right_s1: { q: -1, robot }
16
- Edit left_s1: { q: -1, robot }
17
- Edit right_e0: { q: 1.17, robot }
18
- Edit left_e0: { q: -1.17, robot }
19
- Edit right_e1: { q: 1.94, robot }
20
- Edit left_e1: { q: 1.94, robot }
21
- Edit right_w0: { q: -0.67, robot }
22
- Edit left_w0: { q: 0.67, robot }
23
- Edit right_w1: { q: 1.02, robot }
24
- Edit left_w1: { q: 1.02, robot }
25
- Edit right_w2: { q: 0.5, robot }
26
- Edit left_w2: { q: -0.5, robot }
27
-
28
- Edit joint: { ctrl_H: 1. }
29
-
30
- ## extra shapes to mimick pr2
31
-
32
- base_footprint: { mass: 100 }
33
- base_footprint_1(base_footprint): { shape: marker, size: [.1, 0, 0, 0] } #marker
34
- (base_footprint base): { joint: rigid, pre: "t(0 0 1)" }
35
- torso_lift_link_0 (base): { shape: marker, size: [.3, .3, .3, 0] }
36
-
37
- ## extra shapes
38
- #endeffBase(torso_lift_link): { Q: "T d(90 0 1 0) t(.2 0 0)", shape: marker, color: [1, 0, 0], size: [.1, 0, 0, 0]}
39
- endeffHead(head): { Q: "T d(-90 0 0 1) d(-15 1 0 0)", shape: marker, color: [1, 0, 0], size: [.2, 0, 0, 0]}
40
- #endeffWorkspace(torso_lift_link): { Q: "T d(90 0 1 0) t(.7 0 -.1) d(-90 0 0 1) ", shape: marker, color: [1, 0, 0], size: [.1, 0, 0, 0] }
41
-
42
- baxterR (right_wrist): { Q: "T d(-90 0 1 0) d(-90 0 0 1) t(0 0 -.26)", shape: marker, size: [.1, 0, 0, 0], color: [1, 1, 0] }
43
- baxterL (left_wrist): { Q: "T d(-90 0 1 0) d(-90 0 0 1) t(0 0 -.26)", shape: marker, size: [.1, 0, 0, 0], color: [1, 1, 0] }
44
-
45
- elbowL(left_lower_shoulder): { Q: "T d(180 1 0 0) t(0 0 .42)", shape: marker, color: [1, 0, 0], size: [.2, 0, 0, 0]}
46
- elbowR(right_lower_shoulder): { Q: "T d(180 1 0 0) t(0 0 .42)", shape: marker, color: [1, 0, 0], size: [.2, 0, 0, 0]}
47
-
48
- wristR(right_upper_forearm): { Q: "T d(180 1 0 0) t(0 0 .0)", shape: marker, color: [1, 0, 0], size: [.4, 0, 0, 0]}
49
- wristL(left_upper_forearm): { Q: "T d(180 1 0 0) t(0 0 .0)", shape: marker, color: [1, 0, 0], size: [.4, 0, 0, 0]}
@@ -1,116 +0,0 @@
1
- body base: { mass: 185.633 }
2
- body head: { X: [0.06, 0, 0.686, 0.707107, 0, -0.707107, 0], mass: 1.02313 }
3
- body right_upper_shoulder: { X: [0.0640272, -0.259027, 0.129626, 0.653281, -0.270599, -0.653281, -0.270599], mass: 8.77895 }
4
- body left_upper_shoulder: { X: [0.0640272, 0.259027, 0.129626, 0.653281, 0.270599, -0.653281, 0.270599], mass: 8.77895 }
5
- body right_lower_shoulder: { X: [0.112818, -0.307818, 0.399976, -0.653282, 0.653282, 0.270597, -0.270597], mass: 7.67181 }
6
- body left_lower_shoulder: { X: [0.112818, 0.307818, 0.399976, -0.270597, 0.270597, 0.653282, -0.653282], mass: 7.67181 }
7
- body right_upper_elbow: { X: [0.184942, -0.379943, 0.399976, 0.923879, 1.32497e-12, -3.19872e-12, -0.382684], mass: 5.52286 }
8
- body left_upper_elbow: { X: [0.184942, 0.379943, 0.399976, 0.923879, 3.19889e-12, -1.32491e-12, 0.382684], mass: 5.52286 }
9
- body right_lower_elbow: { X: [0.370501, -0.565502, 0.330976, -0.653282, 0.653282, 0.270597, -0.270597], mass: 6.27938 }
10
- body left_lower_elbow: { X: [0.370501, 0.565502, 0.330976, -0.270597, 0.270597, 0.653282, -0.653282], mass: 6.27938 }
11
- body right_upper_forearm: { X: [0.44375, -0.638751, 0.330976, 0.923879, 3.58688e-12, -4.13569e-12, -0.382684], mass: 3.24201 }
12
- body left_upper_forearm: { X: [0.44375, 0.638751, 0.330976, 0.923879, 5.46085e-12, -3.87967e-13, 0.382684], mass: 3.24201 }
13
- body right_lower_forearm: { X: [0.635163, -0.830166, 0.320976, -0.653282, 0.653282, 0.270597, -0.270597], mass: 2.74076 }
14
- body left_lower_forearm: { X: [0.635163, 0.830166, 0.320976, -0.270597, 0.270597, 0.653282, -0.653282], mass: 2.74076 }
15
- body right_wrist: { X: [0.71717, -0.912173, 0.320976, 0.923879, 5.8489e-12, -5.07266e-12, -0.382684], mass: 3.22029 }
16
- body left_wrist: { X: [0.71717, 0.912173, 0.320976, 0.923879, 7.72288e-12, 5.4895e-13, 0.382684], mass: 3.22029 }
17
- body r_gripper_l_finger: { X: [0.828221, -1.02535, 0.320976, -0.653282, -0.653282, -0.270597, -0.270597], mass: 0.0526538 }
18
- body r_gripper_r_finger: { X: [0.830342, -1.02322, 0.320976, -0.653282, -0.653282, -0.270597, -0.270597], mass: 0.0526538 }
19
- body l_gripper_l_finger: { X: [0.830342, 1.02322, 0.320976, -0.270597, -0.270597, -0.653282, -0.653282], mass: 0.0553155 }
20
- body l_gripper_r_finger: { X: [0.828221, 1.02535, 0.320976, -0.270597, -0.270597, -0.653282, -0.653282], mass: 0.0553155 }
21
-
22
- shape visual (base): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0286935, -0.000728762, 0.371004, 1, 0, 0, 0], mesh: <torso/base_link.STL>, color: [0.2, 0.2, 0.2, 1], rel_includes_mesh_center, }
23
- shape collision_base (base): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0648345, 1.53654e-05, 0.172863, 1, 0, 0, 0], contact: -2, mesh: <torso/base_link_collision.STL>, rel_includes_mesh_center, }
24
- shape visual (head): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0319886, -2.26154e-05, -0.00274816, -0.707107, 0, -0.707107, 0], mesh: <head/H0.STL>, color: [0.2, 0.2, 0.2, 1], rel_includes_mesh_center, }
25
- shape collision_head (head): { shape: sphere, size: [0, 0, 0, 0.001], Q: [-0, -0, -0, -0.707107, 0, -0.707107, 0], contact: -2 }
26
- shape visual (base): { shape: capsule, size: [0, 0, 0.01, 0.085], Q: [0.06, 8.1634e-19, 0.827118, -1, 0, 0, 0], color: [0.2, 0.2, 0.2, 1], rel_includes_mesh_center, }
27
- shape collision_base (base): { shape: sphere, size: [0, 0, 0, 0.001], Q: [0.0947, 0, 0.817, -1, 0, 0, 0], contact: -2 }
28
- shape visual (head): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0055038, -0.000139031, -0.0938075, -0.453099, -0.453099, -0.542864, 0.542864], mesh: <head/H1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
29
- shape collision_head (head): { shape: sphere, size: [0, 0, 0, 0.001], Q: [2.72449e-17, 0, -0.1227, 0.063474, -0.704252, -0.704252, 0.063474], contact: -2 }
30
- shape visual (head): { shape: box, size: [0.218, 0.16, 0.001, 0], Q: [-0.0157421, 1.40048e-14, -0.119839, 0.154854, -0.689942, -0.689942, 0.154854], color: [0, 0, 0, 1] }
31
- shape visual (base): { shape: sphere, size: [0, 0, 0, 0.001], Q: [0.11, 0, 0.75, 1, 0, 0, 0], color: [0.8, 0.3, 0.3, 0.3] }
32
- #shape collision_base (base): { shape: sphere, size: [0, 0, 0, 0.22], Q: [0.04, -0.04, 0.75, 1, 0, 0, 0], contact: -2 }
33
- shape visual (base): { shape: sphere, size: [0, 0, 0, 0.001], Q: [0.11, 0, 0.75, 1, 0, 0, 0], color: [0.8, 0.3, 0.3, 0.3] }
34
- #shape collision_base (base): { shape: sphere, size: [0, 0, 0, 0.22], Q: [0.04, 0.04, 0.75, 1, 0, 0, 0], contact: -2 }
35
- shape visual (right_upper_shoulder): { shape: mesh, size: [1, 1, 1, 1], Q: [0.204968, -0.000259649, -0.0560219, -0.707107, 0, -0.707107, 0], mesh: <upper_shoulder/S0.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
36
- shape collision_right_upper_shoulder (right_upper_shoulder): { shape: capsule, size: [0, 0, 0.2722, 0.06], Q: [0.152112, -1.33336e-18, 3.36804e-17, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
37
- shape visual (right_lower_shoulder): { shape: mesh, size: [1, 1, 1, 1], Q: [6.04869e-05, -2.01515e-05, -0.0561637, -0.707107, 0, -0.707107, 0], mesh: <lower_shoulder/S1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
38
- shape collision_right_lower_shoulder (right_lower_shoulder): { shape: capsule, size: [0, 0, 0.12, 0.06], Q: [0.00705882, -1.33336e-18, 1.47213e-18, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
39
- shape visual (right_upper_elbow): { shape: mesh, size: [1, 1, 1, 1], Q: [0.217587, -2.10593e-05, 0.0125858, -0.707107, 0, -0.707107, 0], mesh: <upper_elbow/E0.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
40
- shape collision_right_upper_elbow (right_upper_elbow): { shape: capsule, size: [0, 0, 0.107, 0.06], Q: [-0.0472059, -1.33336e-18, -1.05771e-17, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
41
- shape collision_right_lower_shoulder (right_lower_shoulder): { shape: capsule, size: [0, 0, 0.273, 0.06], Q: [7.47116e-13, -7.47017e-13, -0.259559, 3.46251e-12, 0.707107, 0.707107, 5.55112e-17], contact: -2, rel_includes_mesh_center, }
42
- shape visual (right_lower_elbow): { shape: mesh, size: [1, 1, 1, 1], Q: [4.23177e-05, 0.000105171, -0.0200289, -0.707107, 0, -0.707107, 0], mesh: <lower_elbow/E1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
43
- shape collision_right_lower_elbow (right_lower_elbow): { shape: capsule, size: [0, 0, 0.1, 0.06], Q: [0.00588235, -1.33336e-18, 1.21091e-18, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
44
- shape visual (right_upper_forearm): { shape: mesh, size: [1, 1, 1, 1], Q: [0.132336, -0.00156713, 0.0374155, -0.707107, 0, -0.707107, 0], mesh: <upper_forearm/W0.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
45
- shape collision_right_upper_forearm (right_upper_forearm): { shape: capsule, size: [0, 0, 0.088, 0.06], Q: [-0.0388235, -1.33336e-18, -8.71579e-18, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
46
- shape collision_right_lower_elbow (right_lower_elbow): { shape: capsule, size: [0, 0, 0.272, 0.06], Q: [7.44375e-13, -7.44281e-13, -0.24, 3.46251e-12, 0.707107, 0.707107, 5.55112e-17], contact: -10, rel_includes_mesh_center, }
47
- shape visual (right_lower_forearm): { shape: mesh, size: [1, 1, 1, 1], Q: [0.00191909, -0.00263826, -0.0345565, -0.707107, 0, -0.707107, 0], mesh: <lower_forearm/W1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
48
- shape collision_right_lower_forearm (right_lower_forearm): { shape: capsule, size: [0, 0, 0.1, 0.06], Q: [0.00588235, -1.33336e-18, 1.21091e-18, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
49
- shape visual (right_wrist): { shape: mesh, size: [1, 1, 1, 1], Q: [0.106397, 0.0019882, -0.0192091, -0.707107, 0, -0.707107, 0], mesh: <wrist/W2.STL>, color: [0.1, 0.1, 0.1, 1], rel_includes_mesh_center, }
50
- shape collision_right_wrist (right_wrist): { shape: capsule, size: [0, 0, 0.165, 0.06], Q: [0.00970588, -1.33336e-18, 2.0599e-18, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
51
- shape collision_right_wrist (right_wrist): { shape: capsule, size: [0, 0, 0.0464, 0.04], Q: [0.0930794, -1.00682e-18, 2.05368e-17, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
52
- shape visual (right_wrist): { shape: capsule, size: [0, 0, 0.01, 0.02], Q: [0.129493, 0.012, -0.03825, -0.5, 0.5, -0.5, 0.5], color: [0, 0, 1, 0.8], rel_includes_mesh_center, }
53
- shape visual (right_wrist): { shape: box, size: [0.005, 0.02, 0.005, 0], Q: [0.14235, -0.020245, -0.032, -0.707107, 0.707107, -1.73112e-12, 1.73128e-12], color: [0, 0, 1, 0.8] }
54
- shape visual (right_wrist): { shape: box, size: [0.01, 0.01, 0.01, 0], Q: [0.09895, 0.000133, -0.00198, -0.707107, 0, -0.707107, 0], color: [0, 0, 0, 1] }
55
- shape visual (left_upper_shoulder): { shape: mesh, size: [1, 1, 1, 1], Q: [0.204968, -0.000259649, -0.0560219, -0.707107, 0, -0.707107, 0], mesh: <upper_shoulder/S0.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
56
- shape collision_left_upper_shoulder (left_upper_shoulder): { shape: capsule, size: [0, 0, 0.2722, 0.06], Q: [0.152112, -1.33336e-18, 3.36804e-17, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
57
- shape visual (left_lower_shoulder): { shape: mesh, size: [1, 1, 1, 1], Q: [6.04869e-05, -2.01515e-05, -0.0561637, -0.707107, 0, -0.707107, 0], mesh: <lower_shoulder/S1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
58
- shape collision_left_lower_shoulder (left_lower_shoulder): { shape: capsule, size: [0, 0, 0.12, 0.06], Q: [0.00705882, -1.33336e-18, 1.47213e-18, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
59
- shape visual (left_upper_elbow): { shape: mesh, size: [1, 1, 1, 1], Q: [0.217587, -2.10593e-05, 0.0125858, -0.707107, 0, -0.707107, 0], mesh: <upper_elbow/E0.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
60
- shape collision_left_upper_elbow (left_upper_elbow): { shape: capsule, size: [0, 0, 0.107, 0.06], Q: [-0.0472059, -1.33336e-18, -1.05771e-17, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
61
- shape collision_left_lower_shoulder (left_lower_shoulder): { shape: capsule, size: [0, 0, 0.273, 0.06], Q: [7.47116e-13, -7.47017e-13, -0.259559, 3.46251e-12, 0.707107, 0.707107, 5.55112e-17], contact: -2, rel_includes_mesh_center, }
62
- shape visual (left_lower_elbow): { shape: mesh, size: [1, 1, 1, 1], Q: [4.23177e-05, 0.000105171, -0.0200289, -0.707107, 0, -0.707107, 0], mesh: <lower_elbow/E1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
63
- shape collision_left_lower_elbow (left_lower_elbow): { shape: capsule, size: [0, 0, 0.1, 0.06], Q: [0.00588235, -1.33336e-18, 1.21091e-18, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
64
- shape visual (left_upper_forearm): { shape: mesh, size: [1, 1, 1, 1], Q: [0.132336, -0.00156713, 0.0374155, -0.707107, 0, -0.707107, 0], mesh: <upper_forearm/W0.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
65
- shape collision_left_upper_forearm (left_upper_forearm): { shape: capsule, size: [0, 0, 0.088, 0.06], Q: [-0.0388235, -1.33336e-18, -8.71579e-18, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
66
- shape collision_left_lower_elbow (left_lower_elbow): { shape: capsule, size: [0, 0, 0.272, 0.06], Q: [7.44375e-13, -7.44281e-13, -0.24, 3.46251e-12, 0.707107, 0.707107, 5.55112e-17], contact: -2, rel_includes_mesh_center, }
67
- shape visual (left_lower_forearm): { shape: mesh, size: [1, 1, 1, 1], Q: [0.00191909, -0.00263826, -0.0345565, -0.707107, 0, -0.707107, 0], mesh: <lower_forearm/W1.STL>, color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, }
68
- shape collision_left_lower_forearm (left_lower_forearm): { shape: capsule, size: [0, 0, 0.1, 0.06], Q: [0.00588235, -1.33336e-18, 1.21091e-18, -0.707107, 0, -0.707107, 0], contact: -2, rel_includes_mesh_center, }
69
- shape visual (left_wrist): { shape: mesh, size: [1, 1, 1, 1], Q: [0.106397, 0.0019882, -0.0192091, -0.707107, 0, -0.707107, 0], mesh: <wrist/W2.STL>, color: [0.1, 0.1, 0.1, 1], rel_includes_mesh_center, }
70
- shape collision_left_wrist (left_wrist): { shape: capsule, size: [0, 0, 0.165, 0.06], Q: [0.00970588, -1.33336e-18, 2.0599e-18, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
71
- shape collision_left_wrist (left_wrist): { shape: capsule, size: [0, 0, 0.0464, 0.04], Q: [0.0930794, -1.00682e-18, 2.05368e-17, -0.707107, 0, -0.707107, 0], contact: -3, rel_includes_mesh_center, }
72
- shape visual (left_wrist): { shape: capsule, size: [0, 0, 0.01, 0.02], Q: [0.129493, 0.012, -0.03825, -0.5, 0.5, -0.5, 0.5], color: [0, 0, 1, 0.8], rel_includes_mesh_center, }
73
- shape visual (left_wrist): { shape: box, size: [0.005, 0.02, 0.005, 0], Q: [0.14235, -0.020245, -0.032, -0.707107, 0.707107, -1.73112e-12, 1.73128e-12], color: [0, 0, 1, 0.8] }
74
- shape visual (left_wrist): { shape: box, size: [0.01, 0.01, 0.01, 0], Q: [0.09895, 0.000133, -0.00198, -0.707107, 0, -0.707107, 0], color: [0, 0, 0, 1] }
75
- shape visual (base): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.026058, 0.000178965, -0.772106, 1, 0, 0, 0], mesh: <base/PEDESTAL.STL>, color: [0.2, 0.2, 0.2, 1], rel_includes_mesh_center, }
76
- shape collision_base (base): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0426509, -0.000255201, -0.589587, 1, 0, 0, 0], mesh: <base/pedestal_link_collision.STL>, rel_includes_mesh_center, }
77
- shape visual (left_wrist): { shape: mesh, size: [1, 1, 1, 1], Q: [0.139922, -0.000401862, 0.00785846, 0.5, -0.5, -0.5, -0.5], mesh: <electric_gripper/electric_gripper_base.STL>, rel_includes_mesh_center, }
78
- shape collision_left_wrist (left_wrist): { shape: capsule, size: [0, 0, 0.1, 0.029], Q: [0.13855, 0.00588235, 3.06724e-17, 0.5, -0.5, -0.5, -0.5], color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, contact: -2 }
79
- shape visual (l_gripper_l_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [0.00211614, 0.00383573, 0.0286702, 0.707107, -0, 0, 0.707107], mesh: <electric_gripper/fingers/extended_narrow.STL>, rel_includes_mesh_center, }
80
- shape collision_l_gripper_l_finger (l_gripper_l_finger): { shape: box, size: [0.01, 0.0135, 0.1127, 0], Q: [0.01725, 3.83027e-18, 0.0615, 0.707107, -0, 0, 0.707107] }
81
- shape visual (l_gripper_l_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [0.0110665, -6.99422e-05, 0.0992843, -0.707107, 0, 0, -0.707107], mesh: <electric_gripper/fingers/paddle_tip.STL>, rel_includes_mesh_center, }
82
- shape collision_l_gripper_l_finger (l_gripper_l_finger): { shape: box, size: [0.042, 0.0065, 0.037, 0], Q: [0.01275, 2.83107e-18, 0.0977, -0.707107, 0, 0, -0.707107] }
83
- shape visual (l_gripper_r_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.00211614, -0.00383573, 0.0286702, -0.707107, 0, 0, 0.707107], mesh: <electric_gripper/fingers/extended_narrow.STL>, rel_includes_mesh_center, }
84
- shape collision_l_gripper_r_finger (l_gripper_r_finger): { shape: box, size: [0.01, 0.0135, 0.1127, 0], Q: [-0.01725, -3.83027e-18, 0.0615, -0.707107, 0, 0, 0.707107] }
85
- shape visual (l_gripper_r_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0110665, 6.99422e-05, 0.0992843, -0.707107, 0, 0, 0.707107], mesh: <electric_gripper/fingers/paddle_tip.STL>, rel_includes_mesh_center, }
86
- shape collision_l_gripper_r_finger (l_gripper_r_finger): { shape: box, size: [0.042, 0.0065, 0.037, 0], Q: [-0.01275, -2.83107e-18, 0.0977, -0.707107, 0, 0, 0.707107] }
87
- shape visual (right_wrist): { shape: mesh, size: [1, 1, 1, 1], Q: [0.139922, -0.000401862, 0.00785846, 0.5, -0.5, -0.5, -0.5], mesh: <electric_gripper/electric_gripper_base.STL>, rel_includes_mesh_center, }
88
- shape collision_right_wrist (right_wrist): { shape: capsule, size: [0, 0, 0.1, 0.029], Q: [0.13855, 0.00588235, 3.06724e-17, 0.5, -0.5, -0.5, -0.5], color: [0.5, 0.1, 0.1, 1], rel_includes_mesh_center, contact: -2 }
89
- shape visual (r_gripper_l_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [0.00211614, 0.00383573, 0.0286702, 0.707107, -0, 0, 0.707107], mesh: <electric_gripper/fingers/extended_narrow.STL>, rel_includes_mesh_center, }
90
- shape collision_r_gripper_l_finger (r_gripper_l_finger): { shape: box, size: [0.01, 0.0135, 0.1127, 0], Q: [0.01725, 3.83027e-18, 0.0615, 0.707107, -0, 0, 0.707107] }
91
- shape visual (r_gripper_l_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [0.0119087, 0.0002756, 0.0933624, -0.707107, 0, 0, -0.707107], mesh: <electric_gripper/fingers/half_round_tip.STL>, rel_includes_mesh_center, }
92
- shape collision_r_gripper_l_finger (r_gripper_l_finger): { shape: capsule, size: [0, 0, 0.037, 0.008], Q: [0.01275, 2.83915e-18, 0.0998765, -0.707107, 0, 0, -0.707107], rel_includes_mesh_center, }
93
- shape visual (r_gripper_r_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.00211614, -0.00383573, 0.0286702, -0.707107, 0, 0, 0.707107], mesh: <electric_gripper/fingers/extended_narrow.STL>, rel_includes_mesh_center, }
94
- shape collision_r_gripper_r_finger (r_gripper_r_finger): { shape: box, size: [0.01, 0.0135, 0.1127, 0], Q: [-0.01725, -3.83027e-18, 0.0615, -0.707107, 0, 0, 0.707107] }
95
- shape visual (r_gripper_r_finger): { shape: mesh, size: [1, 1, 1, 1], Q: [-0.0119087, -0.0002756, 0.0933624, -0.707107, 0, 0, 0.707107], mesh: <electric_gripper/fingers/half_round_tip.STL>, rel_includes_mesh_center, }
96
- shape collision_r_gripper_r_finger (r_gripper_r_finger): { shape: capsule, size: [0, 0, 0.037, 0.008], Q: [-0.01275, -2.83915e-18, 0.0998765, -0.707107, 0, 0, 0.707107], rel_includes_mesh_center, }
97
-
98
- joint head_pan (base head): { joint: hingeX, from: [0.06, 0, 0.686, 0.707107, 0, -0.707107, 0], limits: [-1.3963, 1.3963], ctrl_limits: [10000, 50000, 1] }
99
- joint right_s0 (base right_upper_shoulder): { joint: hingeX, from: [0.0640272, -0.259027, 0.129626, 0.653281, -0.270599, -0.653281, -0.270599], limits: [-1.70168, 1.70168], ctrl_limits: [1.5, 50, 1] }
100
- joint left_s0 (base left_upper_shoulder): { joint: hingeX, from: [0.0640272, 0.259027, 0.129626, 0.653281, 0.270599, -0.653281, 0.270599], limits: [-1.70168, 1.70168], ctrl_limits: [1.5, 50, 1] }
101
- joint right_s1 (right_upper_shoulder right_lower_shoulder): { joint: hingeX, from: [0.27035, 0, -0.069, -0.707107, 1.11022e-16, -5.55112e-17, -0.707107], limits: [-2.147, 1.047], ctrl_limits: [1.5, 50, 1] }
102
- joint left_s1 (left_upper_shoulder left_lower_shoulder): { joint: hingeX, from: [0.27035, 0, -0.069, -0.707107, 1.11022e-16, -5.55112e-17, -0.707107], limits: [-2.147, 1.047], ctrl_limits: [1.5, 50, 1] }
103
- joint right_e0 (right_lower_shoulder right_upper_elbow): { joint: hingeX, from: [2.26485e-17, 0, -0.102, -0.5, -0.5, -0.5, 0.5], limits: [-3.05418, 3.05418], ctrl_limits: [1.5, 50, 1] }
104
- joint left_e0 (left_lower_shoulder left_upper_elbow): { joint: hingeX, from: [2.26485e-17, 0, -0.102, -0.5, -0.5, -0.5, 0.5], limits: [-3.05418, 3.05418], ctrl_limits: [1.5, 50, 1] }
105
- joint right_e1 (right_upper_elbow right_lower_elbow): { joint: hingeX, from: [0.26242, 0, -0.069, -0.5, 0.5, 0.5, -0.5], limits: [-0.05, 2.618], ctrl_limits: [1.5, 50, 1] }
106
- joint left_e1 (left_upper_elbow left_lower_elbow): { joint: hingeX, from: [0.26242, 0, -0.069, -0.5, 0.5, 0.5, -0.5], limits: [-0.05, 2.618], ctrl_limits: [1.5, 50, 1] }
107
- joint right_w0 (right_lower_elbow right_upper_forearm): { joint: hingeX, from: [2.30016e-17, 0, -0.10359, -0.5, -0.5, -0.5, 0.5], limits: [-3.059, 3.059], ctrl_limits: [4, 15, 1] }
108
- joint left_w0 (left_lower_elbow left_upper_forearm): { joint: hingeX, from: [2.30016e-17, 0, -0.10359, -0.5, -0.5, -0.5, 0.5], limits: [-3.059, 3.059], ctrl_limits: [4, 15, 1] }
109
- joint right_w1 (right_upper_forearm right_lower_forearm): { joint: hingeX, from: [0.2707, 0, -0.01, -0.5, 0.5, 0.5, -0.5], limits: [-1.5708, 2.094], ctrl_limits: [4, 15, 1] }
110
- joint left_w1 (left_upper_forearm left_lower_forearm): { joint: hingeX, from: [0.2707, 0, -0.01, -0.5, 0.5, 0.5, -0.5], limits: [-1.5708, 2.094], ctrl_limits: [4, 15, 1] }
111
- joint right_w2 (right_lower_forearm right_wrist): { joint: hingeX, from: [2.57516e-17, 0, -0.115975, -0.5, -0.5, -0.5, 0.5], limits: [-3.059, 3.059], ctrl_limits: [4, 15, 1] }
112
- joint left_w2 (left_lower_forearm left_wrist): { joint: hingeX, from: [2.57516e-17, 0, -0.115975, -0.5, -0.5, -0.5, 0.5], limits: [-3.059, 3.059], ctrl_limits: [4, 15, 1] }
113
- joint r_gripper_l_finger_joint (right_wrist r_gripper_l_finger): { joint: transX, from: [0.15855, -0.0015, 3.52052e-17, -0.5, -0.5, -0.5, -0.5], limits: [0, 0.020833], ctrl_limits: [5, 20, 1], r_gripper }
114
- joint r_gripper_r_finger_joint (right_wrist r_gripper_r_finger): { joint: transX, from: "t(0.15855 0.0015 0) d(90 1 0 0) d(-90 0 1 0) ", to: "d(-180 0 1 0)", mimic: "r_gripper_l_finger_joint", limits: [-0.020833, 0], ctrl_limits: [5, 20, 1], r_gripper }
115
- joint l_gripper_l_finger_joint (left_wrist l_gripper_l_finger): { joint: transX, from: [0.15855, -0.0015, 3.52052e-17, -0.5, -0.5, -0.5, -0.5], limits: [0, 0.020833], ctrl_limits: [5, 20, 1], l_gripper }
116
- joint l_gripper_r_finger_joint (left_wrist l_gripper_r_finger): { joint: transX, from: "t(0.15855 0.0015 0) d(90 1 0 0) d(-90 0 1 0) ", to: "d(-180 0 1 0)", mimic: "l_gripper_l_finger_joint", limits: [-0.020833, 0], ctrl_limits: [5, 20, 1], l_gripper}
@@ -1,205 +0,0 @@
1
- base: { }
2
- collision_head_1_origin(base): { rel: [0.11, 0, 0.75, 1, 0, 0, 0] }
3
- collision_head_2_origin(base): { rel: [0.11, 0, 0.75, 1, 0, 0, 0] }
4
- torso_t0(base): { joint: rigid, limits: [-3.01, 3.01], ctrl_limits: [10000, -1, 50000] }
5
- collision_head_1(collision_head_1_origin): { joint: rigid }
6
- collision_head_2(collision_head_2_origin): { joint: rigid }
7
- torso(torso_t0): { mass: 35.3365, inertia: [1.84916, -0.000354, -0.154188, 1.66267, 0.003292, 0.802239] }
8
- collision_head_link_1(collision_head_1): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
9
- collision_head_link_2(collision_head_2): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
10
- torso_0(torso): { shape: mesh, color: [0.2, 0.2, 0.2, 1], mesh: <baxter_description/meshes/torso/base_link.ply>, visual: True }
11
- left_torso_itb_fixed_origin(torso): { rel: [-0.08897, 0.15593, 0.389125, 3.2758e-05, -3.2758e-05, 0.707107, 0.707107] }
12
- right_torso_itb_fixed_origin(torso): { rel: [-0.08897, -0.15593, 0.389125, 0.707107, 0.707107, 0, 0] }
13
- head_pan_origin(torso): { rel: [0.06, 0, 0.686, 1, 0, 0, 0] }
14
- sonar_s0_origin(torso): { rel: [0.0947, 0, 0.817, 1, 0, 0, 0] }
15
- right_torso_arm_mount_origin(torso): { rel: [0.024645, -0.219645, 0.118588, 0.923879, 0, 0, -0.382684] }
16
- left_torso_arm_mount_origin(torso): { rel: [0.024645, 0.219645, 0.118588, 0.923879, 0, 0, 0.382684] }
17
- pedestal_fixed_origin(torso): { }
18
- collision_head_link_1_0(collision_head_link_1): { shape: sphere, size: [0, 0, 0, 0.001], color: [0.8, 0.3, 0.3, 0.3], visual: True }
19
- collision_head_link_2_0(collision_head_link_2): { shape: sphere, size: [0, 0, 0, 0.001], color: [0.8, 0.3, 0.3, 0.3], visual: True }
20
- left_torso_itb_fixed(left_torso_itb_fixed_origin): { joint: rigid }
21
- right_torso_itb_fixed(right_torso_itb_fixed_origin): { joint: rigid }
22
- head_pan(head_pan_origin): { joint: hingeZ, limits: [-1.3963, 1.3963, 10000, -1, 50000], ctrl_limits: [10000, -1, 50000] }
23
- sonar_s0(sonar_s0_origin): { joint: rigid }
24
- right_torso_arm_mount(right_torso_arm_mount_origin): { joint: rigid }
25
- left_torso_arm_mount(left_torso_arm_mount_origin): { joint: rigid }
26
- pedestal_fixed(pedestal_fixed_origin): { joint: rigid }
27
- left_torso_itb(left_torso_itb_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
28
- right_torso_itb(right_torso_itb_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
29
- head(head_pan): { mass: 0.547767, inertia: [0.004641, 0.000159, 0.000242, 0.003295, -0.001324, 0.003415] }
30
- sonar_ring(sonar_s0): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
31
- right_arm_mount(right_torso_arm_mount): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
32
- left_arm_mount(left_torso_arm_mount): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
33
- pedestal(pedestal_fixed): { mass: 60.864, inertia: [5.06359, 0.00103417, 0.801996, 6.08689, 0.00105311, 4.96192] }
34
- head_0(head): { rel: [0, 0, 0.00953, 1, 0, 0, 0], shape: mesh, color: [0.2, 0.2, 0.2, 1], mesh: <baxter_description/meshes/head/H0.ply>, visual: True }
35
- dummy(head): { joint: rigid }
36
- head_nod_origin(head): { rel: [0.1227, 0, 0, 0.453099, 0.542864, 0.542864, 0.453099] }
37
- head_camera_origin(head): { rel: [0.12839, 0, 0.06368, 0.453099, 0.542864, 0.542864, 0.453099] }
38
- sonar_ring_0(sonar_ring): { rel: [-0.0347, 0, 0.00953, 1, 0, 0, 0], shape: cylinder, size: [0, 0, 0.01, 0.085], color: [0.2, 0.2, 0.2, 1], visual: True }
39
- right_s0_origin(right_arm_mount): { rel: [0.055695, 0, 0.011038, 1, 0, 0, 0] }
40
- left_s0_origin(left_arm_mount): { rel: [0.055695, 0, 0.011038, 1, 0, 0, 0] }
41
- pedestal_0(pedestal): { shape: mesh, color: [0.2, 0.2, 0.2, 1], mesh: <baxter_description/meshes/base/PEDESTAL.ply>, visual: True }
42
- dummyhead1(dummy): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
43
- head_nod(head_nod_origin): { joint: rigid }
44
- head_camera(head_camera_origin): { joint: rigid }
45
- right_s0(right_s0_origin): { joint: hingeZ, limits: [-1.70168, 1.70168, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
46
- left_s0(left_s0_origin): { joint: hingeZ, limits: [-1.70168, 1.70168, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
47
- screen(head_nod): { mass: 0.440171, inertia: [0.004006, 0.00023, 2e-06, 0.0028, 2.9e-05, 0.001509] }
48
- head_camera_47(head_camera): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
49
- right_upper_shoulder(right_s0): { mass: 5.70044, inertia: [0.047091, 0.000127876, 0.0061487, 0.0376698, 0.000780869, 0.0359599] }
50
- left_upper_shoulder(left_s0): { mass: 5.70044, inertia: [0.047091, 0.000127876, 0.0061487, 0.0376698, 0.000780869, 0.0359599] }
51
- screen_0(screen): { rel: [0, -0.00953, -0.0347, 0.707107, 0, -0.707107, 0], shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/head/H1.ply>, visual: True }
52
- display_joint_origin(screen): { rel: [0, -0.016, 0, 1, 0, 0, 0] }
53
- right_upper_shoulder_0(right_upper_shoulder): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/upper_shoulder/S0.ply>, visual: True }
54
- right_s1_origin(right_upper_shoulder): { rel: [0.069, 0, 0.27035, 0.707107, -0.707107, 0, 0] }
55
- left_upper_shoulder_0(left_upper_shoulder): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/upper_shoulder/S0.ply>, visual: True }
56
- left_s1_origin(left_upper_shoulder): { rel: [0.069, 0, 0.27035, 0.707107, -0.707107, 0, 0] }
57
- display_joint(display_joint_origin): { joint: rigid }
58
- right_s1(right_s1_origin): { joint: hingeZ, limits: [-2.147, 1.047, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
59
- left_s1(left_s1_origin): { joint: hingeZ, limits: [-2.147, 1.047, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
60
- display(display_joint): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
61
- right_lower_shoulder(right_s1): { mass: 3.22698, inertia: [0.0117521, -0.000300964, 0.00207676, 0.027886, -0.00018822, 0.0207875] }
62
- left_lower_shoulder(left_s1): { mass: 3.22698, inertia: [0.0117521, -0.000300964, 0.00207676, 0.027886, -0.00018822, 0.0207875] }
63
- display_0(display): { rel: [0, 0, 0, 0.991445, 0.130526, 0, 0], shape: box, size: [0.218, 0.16, 0.001, 0], color: [0, 0, 0, 1], visual: True }
64
- right_lower_shoulder_0(right_lower_shoulder): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/lower_shoulder/S1.ply>, visual: True }
65
- right_e0_origin(right_lower_shoulder): { rel: [0.102, 0, 0, 0.5, 0.5, 0.5, 0.5] }
66
- right_e0_fixed_origin(right_lower_shoulder): { rel: [0.107, 0, 0, 0.5, 0.5, 0.5, 0.5] }
67
- left_lower_shoulder_0(left_lower_shoulder): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/lower_shoulder/S1.ply>, visual: True }
68
- left_e0_origin(left_lower_shoulder): { rel: [0.102, 0, 0, 0.5, 0.5, 0.5, 0.5] }
69
- left_e0_fixed_origin(left_lower_shoulder): { rel: [0.107, 0, 0, 0.5, 0.5, 0.5, 0.5] }
70
- right_e0(right_e0_origin): { joint: hingeZ, limits: [-3.05418, 3.05418, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
71
- right_e0_fixed(right_e0_fixed_origin): { joint: rigid }
72
- left_e0(left_e0_origin): { joint: hingeZ, limits: [-3.05418, 3.05418, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
73
- left_e0_fixed(left_e0_fixed_origin): { joint: rigid }
74
- right_upper_elbow(right_e0): { mass: 4.31272, inertia: [0.0266173, 0.000292706, 0.0039219, 0.0284436, 0.00108389, 0.0124801] }
75
- right_upper_elbow_visual(right_e0_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
76
- left_upper_elbow(left_e0): { mass: 4.31272, inertia: [0.0266173, 0.000292706, 0.0039219, 0.0284436, 0.00108389, 0.0124801] }
77
- left_upper_elbow_visual(left_e0_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
78
- right_upper_elbow_0(right_upper_elbow): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/upper_elbow/E0.ply>, visual: True }
79
- right_e1_origin(right_upper_elbow): { rel: [0.069, 0, 0.26242, 0.5, -0.5, -0.5, -0.5] }
80
- left_upper_elbow_0(left_upper_elbow): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/upper_elbow/E0.ply>, visual: True }
81
- left_e1_origin(left_upper_elbow): { rel: [0.069, 0, 0.26242, 0.5, -0.5, -0.5, -0.5] }
82
- right_e1(right_e1_origin): { joint: hingeZ, limits: [-0.05, 2.618, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
83
- left_e1(left_e1_origin): { joint: hingeZ, limits: [-0.05, 2.618, 1.5, -1, 50], ctrl_limits: [1.5, -1, 50] }
84
- right_lower_elbow(right_e1): { mass: 2.07206, inertia: [0.00711583, 0.000360362, 0.00074595, 0.0131823, -0.000196634, 0.00926852] }
85
- left_lower_elbow(left_e1): { mass: 2.07206, inertia: [0.00711583, 0.000360362, 0.00074595, 0.0131823, -0.000196634, 0.00926852] }
86
- right_lower_elbow_0(right_lower_elbow): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/lower_elbow/E1.ply>, visual: True }
87
- right_w0_origin(right_lower_elbow): { rel: [0.10359, 0, 0, 0.5, 0.5, 0.5, 0.5] }
88
- right_w0_fixed_origin(right_lower_elbow): { rel: [0.088, 0, 0, 0.5, 0.5, 0.5, 0.5] }
89
- left_lower_elbow_0(left_lower_elbow): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/lower_elbow/E1.ply>, visual: True }
90
- left_w0_origin(left_lower_elbow): { rel: [0.10359, 0, 0, 0.5, 0.5, 0.5, 0.5] }
91
- left_w0_fixed_origin(left_lower_elbow): { rel: [0.088, 0, 0, 0.5, 0.5, 0.5, 0.5] }
92
- right_w0(right_w0_origin): { joint: hingeZ, limits: [-3.059, 3.059, 4, -1, 15], ctrl_limits: [4, -1, 15] }
93
- right_w0_fixed(right_w0_fixed_origin): { joint: rigid }
94
- left_w0(left_w0_origin): { joint: hingeZ, limits: [-3.059, 3.059, 4, -1, 15], ctrl_limits: [4, -1, 15] }
95
- left_w0_fixed(left_w0_fixed_origin): { joint: rigid }
96
- right_upper_forearm(right_w0): { mass: 2.24665, inertia: [0.0166774, 0.000184037, 0.000186576, 0.0167546, -0.000647324, 0.00374631] }
97
- right_upper_forearm_visual(right_w0_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
98
- left_upper_forearm(left_w0): { mass: 2.24665, inertia: [0.0166774, 0.000184037, 0.000186576, 0.0167546, -0.000647324, 0.00374631] }
99
- left_upper_forearm_visual(left_w0_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
100
- right_upper_forearm_0(right_upper_forearm): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/upper_forearm/W0.ply>, visual: True }
101
- right_w0_to_itb_fixed_origin(right_upper_forearm): { rel: [-0.0565, 0, 0.12, 0.5, -0.5, -0.5, 0.5] }
102
- right_w1_origin(right_upper_forearm): { rel: [0.01, 0, 0.2707, 0.5, -0.5, -0.5, -0.5] }
103
- left_upper_forearm_0(left_upper_forearm): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/upper_forearm/W0.ply>, visual: True }
104
- left_w0_to_itb_fixed_origin(left_upper_forearm): { rel: [-0.0565, 0, 0.12, 0.5, -0.5, -0.5, 0.5] }
105
- left_w1_origin(left_upper_forearm): { rel: [0.01, 0, 0.2707, 0.5, -0.5, -0.5, -0.5] }
106
- right_w0_to_itb_fixed(right_w0_to_itb_fixed_origin): { joint: rigid }
107
- right_w1(right_w1_origin): { joint: hingeZ, limits: [-1.5708, 2.094, 4, -1, 15], ctrl_limits: [4, -1, 15] }
108
- left_w0_to_itb_fixed(left_w0_to_itb_fixed_origin): { joint: rigid }
109
- left_w1(left_w1_origin): { joint: hingeZ, limits: [-1.5708, 2.094, 4, -1, 15], ctrl_limits: [4, -1, 15] }
110
- right_arm_itb(right_w0_to_itb_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
111
- right_lower_forearm(right_w1): { mass: 1.60979, inertia: [0.00387607, -0.000443848, -0.00021115, 0.00700538, 0.000153481, 0.00552755] }
112
- left_arm_itb(left_w0_to_itb_fixed): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
113
- left_lower_forearm(left_w1): { mass: 1.60979, inertia: [0.00387607, -0.000443848, -0.00021115, 0.00700538, 0.000153481, 0.00552755] }
114
- right_lower_forearm_0(right_lower_forearm): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/lower_forearm/W1.ply>, visual: True }
115
- right_w2_origin(right_lower_forearm): { rel: [0.115975, 0, 0, 0.5, 0.5, 0.5, 0.5] }
116
- left_lower_forearm_0(left_lower_forearm): { shape: mesh, color: [0.5, 0.1, 0.1, 1], mesh: <baxter_description/meshes/lower_forearm/W1.ply>, visual: True }
117
- left_w2_origin(left_lower_forearm): { rel: [0.115975, 0, 0, 0.5, 0.5, 0.5, 0.5] }
118
- right_w2(right_w2_origin): { joint: hingeZ, limits: [-3.059, 3.059, 4, -1, 15], ctrl_limits: [4, -1, 15] }
119
- left_w2(left_w2_origin): { joint: hingeZ, limits: [-3.059, 3.059, 4, -1, 15], ctrl_limits: [4, -1, 15] }
120
- right_wrist(right_w2): { mass: 0.35093, inertia: [0.000252892, 5.75311e-06, -1.59345e-06, 0.00026886, -5.19818e-06, 0.000307412] }
121
- left_wrist(left_w2): { mass: 0.35093, inertia: [0.000252892, 5.75311e-06, -1.59345e-06, 0.00026886, -5.19818e-06, 0.000307412] }
122
- right_wrist_0(right_wrist): { shape: mesh, color: [0.1, 0.1, 0.1, 1], mesh: <baxter_description/meshes/wrist/W2.ply>, visual: True }
123
- right_hand_origin(right_wrist): { rel: [0, 0, 0.11355, 1, 0, 0, 0] }
124
- left_wrist_0(left_wrist): { shape: mesh, color: [0.1, 0.1, 0.1, 1], mesh: <baxter_description/meshes/wrist/W2.ply>, visual: True }
125
- left_hand_origin(left_wrist): { rel: [0, 0, 0.11355, 1, 0, 0, 0] }
126
- right_hand(right_hand_origin): { joint: rigid }
127
- left_hand(left_hand_origin): { joint: rigid }
128
- right_hand_127(right_hand): { mass: 0.19125, inertia: [0.00017588, 1.47073e-06, 2.43633e-05, 0.000211664, 1.72689e-06, 0.000237454] }
129
- left_hand_128(left_hand): { mass: 0.19125, inertia: [0.00017588, 1.47073e-06, 2.43633e-05, 0.000211664, 1.72689e-06, 0.000237454] }
130
- right_hand_camera_origin(right_hand_127): { rel: [0.03825, 0.012, 0.015355, 0.707107, 0, 0, -0.707107] }
131
- right_hand_camera_axis_origin(right_hand_127): { rel: [0.03825, 0.012, 0.015355, 1, 0, 0, 0] }
132
- right_hand_range_origin(right_hand_127): { rel: [0.032, -0.020245, 0.0288, 0.5, -0.5, -0.5, -0.5] }
133
- right_hand_accelerometer_origin(right_hand_127): { rel: [0.00198, 0.000133, -0.0146, 1, 0, 0, 0] }
134
- right_gripper_base_origin(right_hand_127): { rel: [0, 0, 0.025, 1, 0, 0, 0] }
135
- left_hand_camera_origin(left_hand_128): { rel: [0.03825, 0.012, 0.015355, 0.707107, 0, 0, -0.707107] }
136
- left_hand_camera_axis_origin(left_hand_128): { rel: [0.03825, 0.012, 0.015355, 1, 0, 0, 0] }
137
- left_hand_range_origin(left_hand_128): { rel: [0.032, -0.020245, 0.0288, 0.5, -0.5, -0.5, -0.5] }
138
- left_hand_accelerometer_origin(left_hand_128): { rel: [0.00198, 0.000133, -0.0146, 1, 0, 0, 0] }
139
- left_gripper_base_origin(left_hand_128): { rel: [0, 0, 0.025, 1, 0, 0, 0] }
140
- right_hand_camera(right_hand_camera_origin): { joint: rigid }
141
- right_hand_camera_axis(right_hand_camera_axis_origin): { joint: rigid }
142
- right_hand_range(right_hand_range_origin): { joint: rigid }
143
- right_hand_accelerometer(right_hand_accelerometer_origin): { joint: rigid }
144
- right_gripper_base(right_gripper_base_origin): { joint: rigid }
145
- left_hand_camera(left_hand_camera_origin): { joint: rigid }
146
- left_hand_camera_axis(left_hand_camera_axis_origin): { joint: rigid }
147
- left_hand_range(left_hand_range_origin): { joint: rigid }
148
- left_hand_accelerometer(left_hand_accelerometer_origin): { joint: rigid }
149
- left_gripper_base(left_gripper_base_origin): { joint: rigid }
150
- right_hand_camera_149(right_hand_camera): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
151
- right_hand_camera_axis_150(right_hand_camera_axis): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
152
- right_hand_range_151(right_hand_range): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
153
- right_hand_accelerometer_152(right_hand_accelerometer): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
154
- right_gripper_base_153(right_gripper_base): { mass: 0.3, inertia: [2e-08, 3e-08, 2e-08] }
155
- left_hand_camera_154(left_hand_camera): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
156
- left_hand_camera_axis_155(left_hand_camera_axis): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
157
- left_hand_range_156(left_hand_range): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
158
- left_hand_accelerometer_157(left_hand_accelerometer): { mass: 0.0001, inertia: [1e-08, 1e-08, 1e-08] }
159
- left_gripper_base_158(left_gripper_base): { mass: 0.3, inertia: [2e-08, 3e-08, 2e-08] }
160
- right_hand_camera_0(right_hand_camera_149): { shape: cylinder, size: [0, 0, 0.01, 0.02], color: [0, 0, 1, 0.8], visual: True }
161
- right_hand_range_0(right_hand_range_151): { shape: box, size: [0.005, 0.02, 0.005, 0], color: [0, 0, 1, 0.8], visual: True }
162
- right_hand_accelerometer_0(right_hand_accelerometer_152): { shape: box, size: [0.01, 0.01, 0.01, 0], color: [0, 0, 0, 1], visual: True }
163
- right_gripper_base_0(right_gripper_base_153): { rel: [0, 0, 0, -7.3123e-14, 7.3123e-14, 0.707107, 0.707107], shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/electric_gripper_base.ply>, visual: True }
164
- right_endpoint_origin(right_gripper_base_153): { rel: [0, 0, 0.1327, 1, 0, 0, 0] }
165
- r_gripper_l_finger_joint_origin(right_gripper_base_153): { rel: [0, -0.0015, 0.02, 1, 0, 0, 0] }
166
- r_gripper_r_finger_joint_origin(right_gripper_base_153): { rel: [0, 0.0015, 0.02, 1, 0, 0, 0] }
167
- left_hand_camera_0(left_hand_camera_154): { shape: cylinder, size: [0, 0, 0.01, 0.02], color: [0, 0, 1, 0.8], visual: True }
168
- left_hand_range_0(left_hand_range_156): { shape: box, size: [0.005, 0.02, 0.005, 0], color: [0, 0, 1, 0.8], visual: True }
169
- left_hand_accelerometer_0(left_hand_accelerometer_157): { shape: box, size: [0.01, 0.01, 0.01, 0], color: [0, 0, 0, 1], visual: True }
170
- left_gripper_base_0(left_gripper_base_158): { rel: [0, 0, 0, -7.3123e-14, 7.3123e-14, 0.707107, 0.707107], shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/electric_gripper_base.ply>, visual: True }
171
- left_endpoint_origin(left_gripper_base_158): { rel: [0, 0, 0.1327, 1, 0, 0, 0] }
172
- l_gripper_l_finger_joint_origin(left_gripper_base_158): { rel: [0, -0.0015, 0.02, 1, 0, 0, 0] }
173
- l_gripper_r_finger_joint_origin(left_gripper_base_158): { rel: [0, 0.0015, 0.02, 1, 0, 0, 0] }
174
- right_endpoint(right_endpoint_origin): { joint: rigid }
175
- r_gripper_l_finger_joint(r_gripper_l_finger_joint_origin): { joint: transY, limits: [0, 0.020833, 5, -1, 20], ctrl_limits: [5, -1, 20] }
176
- r_gripper_r_finger_joint(r_gripper_r_finger_joint_origin): { joint: transY, limits: [-0.020833, 0, 5, -1, 20], mimic: "r_gripper_l_finger_joint", ctrl_limits: [5, -1, 20] }
177
- left_endpoint(left_endpoint_origin): { joint: rigid }
178
- l_gripper_l_finger_joint(l_gripper_l_finger_joint_origin): { joint: transY, limits: [0, 0.020833, 5, -1, 20], ctrl_limits: [5, -1, 20] }
179
- l_gripper_r_finger_joint(l_gripper_r_finger_joint_origin): { joint: transY, limits: [-0.020833, 0, 5, -1, 20], mimic: "l_gripper_l_finger_joint", ctrl_limits: [5, -1, 20] }
180
- right_gripper(right_endpoint): { mass: 0.0001, inertia: [0, 0, 0] }
181
- r_gripper_l_finger(r_gripper_l_finger_joint): { mass: 0.02, inertia: [0.01, 0.01, 0.01] }
182
- r_gripper_r_finger(r_gripper_r_finger_joint): { mass: 0.02, inertia: [0.01, 0.01, 0.01] }
183
- left_gripper(left_endpoint): { mass: 0.0001, inertia: [0, 0, 0] }
184
- l_gripper_l_finger(l_gripper_l_finger_joint): { mass: 0.02, inertia: [0.01, 0.01, 0.01] }
185
- l_gripper_r_finger(l_gripper_r_finger_joint): { mass: 0.02, inertia: [0.01, 0.01, 0.01] }
186
- r_gripper_l_finger_0(r_gripper_l_finger): { rel: [0, 0, 0, -1.03412e-13, 0, 0, -1], shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply>, visual: True }
187
- r_gripper_l_finger_tip_joint_origin(r_gripper_l_finger): { rel: [0, 0.01725, 0.1127, 1, 0, 0, 0] }
188
- r_gripper_r_finger_0(r_gripper_r_finger): { shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply>, visual: True }
189
- r_gripper_r_finger_tip_joint_origin(r_gripper_r_finger): { rel: [0, -0.01725, 0.1127, 1, 0, 0, 0] }
190
- l_gripper_l_finger_0(l_gripper_l_finger): { rel: [0, 0, 0, -1.03412e-13, 0, 0, -1], shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply>, visual: True }
191
- l_gripper_l_finger_tip_joint_origin(l_gripper_l_finger): { rel: [0, 0.01725, 0.1127, 1, 0, 0, 0] }
192
- l_gripper_r_finger_0(l_gripper_r_finger): { shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply>, visual: True }
193
- l_gripper_r_finger_tip_joint_origin(l_gripper_r_finger): { rel: [0, -0.01725, 0.1127, 1, 0, 0, 0] }
194
- r_gripper_l_finger_tip_joint(r_gripper_l_finger_tip_joint_origin): { joint: rigid }
195
- r_gripper_r_finger_tip_joint(r_gripper_r_finger_tip_joint_origin): { joint: rigid }
196
- l_gripper_l_finger_tip_joint(l_gripper_l_finger_tip_joint_origin): { joint: rigid }
197
- l_gripper_r_finger_tip_joint(l_gripper_r_finger_tip_joint_origin): { joint: rigid }
198
- r_gripper_l_finger_tip(r_gripper_l_finger_tip_joint): { mass: 0.01, inertia: [0.01, 0.01, 0.01] }
199
- r_gripper_r_finger_tip(r_gripper_r_finger_tip_joint): { mass: 0.01, inertia: [0.01, 0.01, 0.01] }
200
- l_gripper_l_finger_tip(l_gripper_l_finger_tip_joint): { mass: 0.01, inertia: [0.01, 0.01, 0.01] }
201
- l_gripper_r_finger_tip(l_gripper_r_finger_tip_joint): { mass: 0.01, inertia: [0.01, 0.01, 0.01] }
202
- r_gripper_l_finger_tip_0(r_gripper_l_finger_tip): { rel: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/half_round_tip.ply>, visual: True }
203
- r_gripper_r_finger_tip_0(r_gripper_r_finger_tip): { shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/half_round_tip.ply>, visual: True }
204
- l_gripper_l_finger_tip_0(l_gripper_l_finger_tip): { rel: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/paddle_tip.ply>, visual: True }
205
- l_gripper_r_finger_tip_0(l_gripper_r_finger_tip): { shape: mesh, color: [0.8, 0.8, 0.8], mesh: <rethink_ee_description/meshes/electric_gripper/fingers/paddle_tip.ply>, visual: True }