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.
- robotic/DataGen.pyi +11 -1
- robotic/__init__.py +8 -1
- robotic/_robotic.pyi +228 -110
- robotic/_robotic.so +0 -0
- robotic/algo.pyi +17 -0
- robotic/include/rai/{Geo → Algo}/Lewiner/MarchingCubes.h +0 -29
- robotic/include/rai/Algo/SplineCtrlFeed.h +1 -1
- robotic/include/rai/Algo/marching_cubes.h +9 -0
- robotic/include/rai/Algo/rungeKutta.h +2 -2
- robotic/include/rai/Algo/spline.h +4 -8
- robotic/include/rai/Algo/trilinear.h +10 -0
- robotic/include/rai/Control/CtrlSolver.h +1 -1
- robotic/include/rai/Control/TimingMPC.h +2 -2
- robotic/include/rai/Core/array.h +99 -64
- robotic/include/rai/Core/array.ipp +290 -139
- robotic/include/rai/Core/arrayDouble.h +36 -26
- robotic/include/rai/Core/defines.h +7 -9
- robotic/include/rai/Core/graph.h +27 -23
- robotic/include/rai/Core/h5.h +3 -1
- robotic/include/rai/Core/thread.h +12 -12
- robotic/include/rai/Core/util.h +58 -79
- robotic/include/rai/DataGen/rndStableConfigs.h +1 -0
- robotic/include/rai/DataGen/shapenetGrasps.h +5 -3
- robotic/include/rai/Geo/depth2PointCloud.h +2 -0
- robotic/include/rai/Geo/geo.h +23 -15
- robotic/include/rai/Geo/{fclInterface.h → i_fcl.h} +3 -1
- robotic/include/rai/Geo/mesh.h +18 -13
- robotic/include/rai/Geo/pairCollision.h +43 -43
- robotic/include/rai/Geo/signedDistanceFunctions.h +7 -5
- robotic/include/rai/Geo/stb_image.h +1 -1
- robotic/include/rai/Gui/RenderData.h +9 -7
- robotic/include/rai/Gui/opengl.h +6 -6
- robotic/include/rai/Gui/plot.h +1 -1
- robotic/include/rai/KOMO/komo.h +6 -3
- robotic/include/rai/KOMO/komo_NLP.h +2 -2
- robotic/include/rai/KOMO/manipTools.h +7 -2
- robotic/include/rai/KOMO/testProblems_KOMO.h +5 -9
- robotic/include/rai/Kin/F_forces.h +3 -3
- robotic/include/rai/Kin/cameraview.h +24 -36
- robotic/include/rai/Kin/dof_forceExchange.h +7 -7
- robotic/include/rai/Kin/feature.h +1 -1
- robotic/include/rai/Kin/frame.h +22 -24
- robotic/include/rai/Kin/{kin_physx.h → i_Physx.h} +10 -8
- robotic/include/rai/Kin/kin.h +29 -21
- robotic/include/rai/Kin/proxy.h +1 -1
- robotic/include/rai/Kin/simulation.h +20 -10
- robotic/include/rai/Kin/viewer.h +14 -1
- robotic/include/rai/LGP/LGP_TAMP_Abstraction.h +33 -0
- robotic/include/rai/LGP/LGP_Tool.h +4 -25
- robotic/include/rai/LGP/LGP_computers.h +1 -1
- robotic/include/rai/LGP/LGP_computers2.h +196 -0
- robotic/include/rai/LGP/NLP_Descriptor.h +5 -0
- robotic/include/rai/Logic/folWorld.h +1 -1
- robotic/include/rai/Logic/treeSearchDomain.h +2 -2
- robotic/include/rai/Optim/BayesOpt.h +13 -6
- robotic/include/rai/Optim/CMA/boundary_transformation.h +73 -0
- robotic/include/rai/Optim/CMA/cmaes.h +175 -0
- robotic/include/rai/Optim/CMA/cmaes_interface.h +68 -0
- robotic/include/rai/Optim/GlobalIterativeNewton.h +7 -3
- robotic/include/rai/Optim/NLP.h +23 -7
- robotic/include/rai/Optim/NLP_GraphSolver.h +1 -1
- robotic/include/rai/Optim/NLP_Solver.h +5 -5
- robotic/include/rai/Optim/constrained.h +4 -4
- robotic/include/rai/Optim/{opt-ceres.h → i_Ceres.h} +2 -2
- robotic/include/rai/Optim/{opt-nlopt.h → i_NLopt.h} +4 -0
- robotic/include/rai/Optim/lagrangian.h +7 -5
- robotic/include/rai/Optim/liblbfgs/liblbfgs.h +755 -0
- robotic/include/rai/Optim/m_EvoStrategies.h +114 -0
- robotic/include/rai/Optim/{gradient.h → m_Gradient.h} +13 -12
- robotic/include/rai/Optim/m_LBFGS.h +21 -0
- robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h +104 -0
- robotic/include/rai/Optim/m_LocalGreedy.h +31 -0
- robotic/include/rai/Optim/m_NelderMead.h +23 -0
- robotic/include/rai/Optim/{newton.h → m_Newton.h} +7 -4
- robotic/include/rai/Optim/{SlackGaussNewton.h → m_SlackGaussNewton.h} +0 -10
- robotic/include/rai/Optim/options.h +8 -7
- robotic/include/rai/Optim/primalDual.h +10 -6
- robotic/include/rai/Optim/testProblems_Opt.h +25 -19
- robotic/include/rai/Optim/utils.h +16 -85
- robotic/include/rai/PathAlgos/ConfigurationProblem.h +3 -2
- robotic/include/rai/PathAlgos/RRT_PathFinder.h +2 -2
- robotic/include/rai/Perception/pcl.h +10 -10
- robotic/include/rai/Perception/surfels.h +1 -1
- robotic/include/rai/Search/TreeSearchNode.h +1 -1
- robotic/include/rai/ry/py-algo.h +17 -0
- robotic/include/rai/ry/types.h +4 -2
- robotic/librai.so +0 -0
- robotic/manipulation.py +5 -7
- robotic/meshTool +0 -0
- robotic/mujoco-import.py +8 -0
- robotic/rai-robotModels/g1/g1.g +11 -2
- robotic/rai-robotModels/g1/g1_29dof_conv.yml +64 -0
- robotic/rai-robotModels/g1/g1_clean.g +38 -73
- robotic/rai-robotModels/g1/meshes/head_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_elbow_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_knee_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_rubber_hand.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/logo_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis_contour_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_elbow_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_knee_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_rubber_hand.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/torso_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/waist_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/waist_support_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/waist_yaw_link.h5 +0 -0
- robotic/rai-robotModels/objects/shelf.g +1 -1
- robotic/rai-robotModels/panda/meshes/finger.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/hand.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link0.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link1.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link2.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link3.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link4.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link5.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link6.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link7.h5 +0 -0
- robotic/rai-robotModels/panda/panda.g +10 -10
- robotic/rai-robotModels/panda/panda_arm_hand_conv.g +24 -0
- robotic/rai-robotModels/panda/panda_arm_hand_conv.yml +24 -0
- robotic/rai-robotModels/panda/panda_clean.g +21 -45
- robotic/rai-robotModels/panda/panda_gripper.g +5 -7
- robotic/rai-robotModels/panda/panda_withoutCollisionModels.g +3 -11
- robotic/rai-robotModels/pr2/meshes/base.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/base_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/caster.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/elbow_flex.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/elbow_flex_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/forearm.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/forearm_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/forearm_roll.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/gripper_palm.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/gripper_palm_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/head_pan.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/head_pan_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/head_tilt.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/head_tilt_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger_tip.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger_tip_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_lift.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_lift_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_pan.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_pan_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/tilting_hokuyo.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/tilting_hokuyo_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/torso_lift.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/torso_lift_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm_roll.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm_roll_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/wheel.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/wheel_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/wrist_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/wrist_flex.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/wrist_roll.h5 +0 -0
- robotic/rai-robotModels/pr2/pr2.g +12 -12
- robotic/rai-robotModels/pr2/pr2_clean.g +122 -118
- robotic/rai-robotModels/pr2/pr2_conv.g +218 -0
- robotic/rai-robotModels/pr2/pr2_modifications.g +2 -2
- robotic/rai-robotModels/ranger/meshes/ranger_mini3.h5 +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.h5 +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.h5 +0 -0
- robotic/rai-robotModels/ranger/ranger.g +8 -8
- robotic/rai-robotModels/ranger/ranger_clean.g +5 -5
- robotic/rai-robotModels/ranger/ranger_mini_conv.g +14 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_base_link.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_finger.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_knuckle.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_finger.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_knuckle.h5 +0 -0
- robotic/rai-robotModels/robotiq/robotiq.g +2 -2
- robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml +19 -0
- robotic/rai-robotModels/robotiq/robotiq_clean.g +16 -16
- robotic/rai-robotModels/scenarios/ballFinger.g +2 -2
- robotic/rai-robotModels/scenarios/liftRing.g +2 -2
- robotic/rai-robotModels/scenarios/pandaFloatingGripper.g +1 -1
- robotic/rai-robotModels/scenarios/pandaSingle.g +1 -1
- robotic/rai-robotModels/scenarios/panda_fixRobotiq.g +3 -3
- robotic/rai-robotModels/tests/arm.g +18 -19
- robotic/rai-robotModels/tests/compound.g +3 -6
- robotic/rai-robotModels/ur10/meshes/base.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/forearm.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/shoulder.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/upperarm.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/wrist1.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/wrist2.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/wrist3.h5 +0 -0
- robotic/rai-robotModels/ur10/ur10.g +2 -2
- robotic/rai-robotModels/ur10/ur10_clean.g +8 -8
- robotic/rai-robotModels/ur10/ur10_conv.g +17 -0
- robotic/ry-h5info +3 -12
- robotic/ry-test +5 -4
- robotic/ry-urdfConvert.py +74 -0
- robotic/ry-view +28 -6
- robotic/src/cleanMeshes.py +59 -0
- robotic/src/h5_helper.py +46 -0
- robotic/src/h5_helper.py~ +42 -0
- robotic/src/mesh_helper.py +395 -0
- robotic/{rai-robotModels/ranger/meshes/cleanMeshes.mlx → src/meshlabFilters.mlx} +0 -3
- robotic/src/mujoco_io.py +242 -0
- robotic/src/urdf_io.py +237 -0
- robotic/src/yaml_helper.py +29 -0
- robotic/version.py +1 -1
- robotic-0.3.4.dev5.data/scripts/ry-h5info +23 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-test +5 -4
- robotic-0.3.4.dev5.data/scripts/ry-urdfConvert.py +74 -0
- robotic-0.3.4.dev5.data/scripts/ry-view +46 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/METADATA +18 -22
- robotic-0.3.4.dev5.dist-info/RECORD +386 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/WHEEL +1 -1
- robotic/nlp.py +0 -113
- robotic/rai-robotModels/baxter/baxter.g +0 -49
- robotic/rai-robotModels/baxter/baxter_clean.g +0 -116
- robotic/rai-robotModels/baxter/baxter_clean2.g +0 -205
- robotic/rai-robotModels/baxter/baxter_clean3.g +0 -223
- robotic/rai-robotModels/baxter/baxter_description/meshes/base/PEDESTAL.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/base/pedestal_link_collision.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/head/H0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/head/H1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/lower_elbow/E1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/lower_forearm/W1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/lower_shoulder/S1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/torso/base_link.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/torso/base_link_collision.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/upper_elbow/E0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/upper_forearm/W0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/upper_shoulder/S0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/wrist/W2.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_new.g +0 -53
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/electric_gripper_base.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/half_round_tip.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/paddle_tip.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/pneumatic_gripper/pneumatic_gripper_base.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/pneumatic_gripper/pneumatic_gripper_w_cup.ply +0 -0
- robotic/rai-robotModels/g1/meshes/head_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_elbow_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_index_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_index_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_middle_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_middle_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_palm_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_thumb_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_thumb_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_thumb_2_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_knee_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_roll_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/logo_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis.ply +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis_contour_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_elbow_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_index_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_index_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_middle_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_middle_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_palm_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_thumb_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_thumb_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_thumb_2_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_knee_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_roll_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_L_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_L_rod_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_R_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_R_rod_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_constraint_L.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_constraint_R.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_support_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_yaw_link.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/finger.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/hand.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link0.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link1.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link2.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link3.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link4.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link5.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link6.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link7.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/HOWTO.sh +0 -10
- robotic/rai-robotModels/panda/franka_description/meshes/visual/HOWTO2.sh +0 -7
- robotic/rai-robotModels/panda/franka_description/meshes/visual/convMeshes.mlx +0 -38
- robotic/rai-robotModels/panda/franka_description/meshes/visual/finger.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/hand.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link0.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link1.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link2.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link3.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link4.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link5.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link6.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link7.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/script.mlx +0 -28
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/base.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/base_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/caster.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/caster_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/pr2_wheel.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/wheel.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/forearm.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_flex.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_roll.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_roll_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/gripper_palm.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/l_finger.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/l_finger_tip.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_pan.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_pan_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_tilt.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_tilt_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_lift.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_pan.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_yaw.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/upper_arm_roll.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/upper_arm_roll_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/hok_tilt.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/tilting_hokuyo.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/tilting_hokuyo_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso_lift.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso_lift_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/elbow_flex.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/upper_arm.ply +0 -0
- robotic/rai-robotModels/ranger/meshes/cleanMeshes.sh +0 -8
- robotic/rai-robotModels/ranger/meshes/ranger_mini3.ply +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.ply +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link_x.ply +0 -10
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_inner_finger.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_inner_knuckle.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_finger.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_knuckle.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_pad.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_gripper_coupling.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Base.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Forearm.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Shoulder.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/UpperArm.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist1.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist2.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist3.ply +0 -0
- robotic/ry-urdf2rai +0 -222
- robotic/ry-urdf2yaml +0 -250
- robotic-0.2.9.dev1.data/scripts/ry-h5info +0 -32
- robotic-0.2.9.dev1.data/scripts/ry-urdf2rai +0 -222
- robotic-0.2.9.dev1.data/scripts/ry-urdf2yaml +0 -250
- robotic-0.2.9.dev1.data/scripts/ry-view +0 -24
- robotic-0.2.9.dev1.dist-info/RECORD +0 -421
- /robotic/include/rai/{Geo → Algo}/Lewiner/LookUpTable.h +0 -0
- /robotic/include/rai/Geo/{assimpInterface.h → i_assimp.h} +0 -0
- /robotic/include/rai/Kin/{kin_bullet.h → i_Bullet.h} +0 -0
- /robotic/include/rai/Kin/{kin_feather.h → i_Feather.h} +0 -0
- /robotic/include/rai/Kin/{kin_ode.h → i_Ode.h} +0 -0
- /robotic/include/rai/Optim/{opt-ipopt.h → i_Ipopt.h} +0 -0
- /robotic/rai-robotModels/robotiq/meshes/{visual/robotiq_ft300.ply → robotiq_ft300.ply} +0 -0
- /robotic/{import.py → src/__init__.py} +0 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-bot +0 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-info +0 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-meshTool +0 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/top_level.txt +0 -0
|
@@ -1,43 +1,47 @@
|
|
|
1
1
|
base_footprint: { mass: 1, inertia: [0.01, 0.01, 0.01] }
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
|
|
3
|
+
base_footprint_0(base_footprint): { shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
4
|
+
|
|
5
|
+
base_link(base_footprint): { pose: [0, 0, 0.051, 1, 0, 0, 0], mass: 116, inertia: [5.65223, -0.00971993, 1.29399, 5.66947, -0.00737958, 3.6832] }
|
|
6
|
+
base_link_0(base_footprint): { pose: [0, 0, 0.051, 1, 0, 0, 0], shape: mesh, mesh: <meshes/base.h5>, visual: True }
|
|
7
|
+
base_laser_link(base_footprint): { pose: [0.275, 0, 0.303, 1, 0, 0, 0], mass: 0.001, inertia: [0.0001, 1e-06, 0.0001] }
|
|
8
|
+
base_laser_link_0(base_footprint): { pose: [0.275, 0, 0.303, 1, 0, 0, 0], shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
9
|
+
|
|
10
|
+
fl_caster_rotation_joint_origin(base_footprint): { pose: [0.2246, 0.2246, 0.0792, 1, 0, 0, 0] }
|
|
11
|
+
fr_caster_rotation_joint_origin(base_footprint): { pose: [0.2246, -0.2246, 0.0792, 1, 0, 0, 0] }
|
|
12
|
+
bl_caster_rotation_joint_origin(base_footprint): { pose: [-0.2246, 0.2246, 0.0792, 1, 0, 0, 0] }
|
|
13
|
+
br_caster_rotation_joint_origin(base_footprint): { pose: [-0.2246, -0.2246, 0.0792, 1, 0, 0, 0] }
|
|
14
|
+
|
|
15
|
+
torso_lift_joint_origin(base_footprint): { pose: [-0.05, 0, 0.790675, 1, 0, 0, 0] }
|
|
12
16
|
fl_caster_rotation_joint(fl_caster_rotation_joint_origin): { joint: hingeZ, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
13
17
|
fr_caster_rotation_joint(fr_caster_rotation_joint_origin): { joint: hingeZ, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
14
18
|
bl_caster_rotation_joint(bl_caster_rotation_joint_origin): { joint: hingeZ, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
15
19
|
br_caster_rotation_joint(br_caster_rotation_joint_origin): { joint: hingeZ, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
16
20
|
torso_lift_joint(torso_lift_joint_origin): { joint: transZ, limits: [0, 0.31, 0.013, -1, 10000], ctrl_limits: [0.013, -1, 10000] }
|
|
17
21
|
fl_caster_rotation_link(fl_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
18
|
-
fl_caster_rotation_link_0(fl_caster_rotation_joint): { shape: mesh, mesh: <
|
|
19
|
-
fl_caster_l_wheel_joint_origin(fl_caster_rotation_joint): {
|
|
20
|
-
fl_caster_r_wheel_joint_origin(fl_caster_rotation_joint): {
|
|
22
|
+
fl_caster_rotation_link_0(fl_caster_rotation_joint): { shape: mesh, mesh: <meshes/caster.h5>, visual: True }
|
|
23
|
+
fl_caster_l_wheel_joint_origin(fl_caster_rotation_joint): { pose: [0, 0.049, 0, 1, 0, 0, 0] }
|
|
24
|
+
fl_caster_r_wheel_joint_origin(fl_caster_rotation_joint): { pose: [0, -0.049, 0, 1, 0, 0, 0] }
|
|
21
25
|
fr_caster_rotation_link(fr_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
22
|
-
fr_caster_rotation_link_0(fr_caster_rotation_joint): { shape: mesh, mesh: <
|
|
23
|
-
fr_caster_l_wheel_joint_origin(fr_caster_rotation_joint): {
|
|
24
|
-
fr_caster_r_wheel_joint_origin(fr_caster_rotation_joint): {
|
|
26
|
+
fr_caster_rotation_link_0(fr_caster_rotation_joint): { shape: mesh, mesh: <meshes/caster.h5>, visual: True }
|
|
27
|
+
fr_caster_l_wheel_joint_origin(fr_caster_rotation_joint): { pose: [0, 0.049, 0, 1, 0, 0, 0] }
|
|
28
|
+
fr_caster_r_wheel_joint_origin(fr_caster_rotation_joint): { pose: [0, -0.049, 0, 1, 0, 0, 0] }
|
|
25
29
|
bl_caster_rotation_link(bl_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
26
|
-
bl_caster_rotation_link_0(bl_caster_rotation_joint): { shape: mesh, mesh: <
|
|
27
|
-
bl_caster_l_wheel_joint_origin(bl_caster_rotation_joint): {
|
|
28
|
-
bl_caster_r_wheel_joint_origin(bl_caster_rotation_joint): {
|
|
30
|
+
bl_caster_rotation_link_0(bl_caster_rotation_joint): { shape: mesh, mesh: <meshes/caster.h5>, visual: True }
|
|
31
|
+
bl_caster_l_wheel_joint_origin(bl_caster_rotation_joint): { pose: [0, 0.049, 0, 1, 0, 0, 0] }
|
|
32
|
+
bl_caster_r_wheel_joint_origin(bl_caster_rotation_joint): { pose: [0, -0.049, 0, 1, 0, 0, 0] }
|
|
29
33
|
br_caster_rotation_link(br_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
30
|
-
br_caster_rotation_link_0(br_caster_rotation_joint): { shape: mesh, mesh: <
|
|
31
|
-
br_caster_l_wheel_joint_origin(br_caster_rotation_joint): {
|
|
32
|
-
br_caster_r_wheel_joint_origin(br_caster_rotation_joint): {
|
|
34
|
+
br_caster_rotation_link_0(br_caster_rotation_joint): { shape: mesh, mesh: <meshes/caster.h5>, visual: True }
|
|
35
|
+
br_caster_l_wheel_joint_origin(br_caster_rotation_joint): { pose: [0, 0.049, 0, 1, 0, 0, 0] }
|
|
36
|
+
br_caster_r_wheel_joint_origin(br_caster_rotation_joint): { pose: [0, -0.049, 0, 1, 0, 0, 0] }
|
|
33
37
|
torso_lift_link(torso_lift_joint): { mass: 36.248, inertia: [2.77165, 0.00428452, -0.160419, 2.51002, 0.0296645, 0.526432] }
|
|
34
|
-
torso_lift_link_0(torso_lift_joint): { shape: mesh, mesh: <
|
|
35
|
-
imu_link(torso_lift_joint): {
|
|
36
|
-
imu_link_0(torso_lift_joint): {
|
|
37
|
-
head_pan_joint_origin(torso_lift_joint): {
|
|
38
|
-
laser_tilt_mount_joint_origin(torso_lift_joint): {
|
|
39
|
-
r_shoulder_pan_joint_origin(torso_lift_joint): {
|
|
40
|
-
l_shoulder_pan_joint_origin(torso_lift_joint): {
|
|
38
|
+
torso_lift_link_0(torso_lift_joint): { shape: mesh, mesh: <meshes/torso_lift.h5>, visual: True }
|
|
39
|
+
imu_link(torso_lift_joint): { pose: [-0.02977, -0.1497, 0.164, -1.03412e-13, 0, 1, 0], mass: 0.001, inertia: [0.0001, 1e-06, 0.0001] }
|
|
40
|
+
imu_link_0(torso_lift_joint): { pose: [-0.02977, -0.1497, 0.164, -1.03412e-13, 0, 1, 0], shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
41
|
+
head_pan_joint_origin(torso_lift_joint): { pose: [-0.01707, 0, 0.38145, 1, 0, 0, 0] }
|
|
42
|
+
laser_tilt_mount_joint_origin(torso_lift_joint): { pose: [0.09893, 0, 0.227, 1, 0, 0, 0] }
|
|
43
|
+
r_shoulder_pan_joint_origin(torso_lift_joint): { pose: [0, -0.188, 0, 1, 0, 0, 0] }
|
|
44
|
+
l_shoulder_pan_joint_origin(torso_lift_joint): { pose: [0, 0.188, 0, 1, 0, 0, 0] }
|
|
41
45
|
fl_caster_l_wheel_joint(fl_caster_l_wheel_joint_origin): { joint: hingeY, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
42
46
|
fl_caster_r_wheel_joint(fl_caster_r_wheel_joint_origin): { joint: hingeY, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
43
47
|
fr_caster_l_wheel_joint(fr_caster_l_wheel_joint_origin): { joint: hingeY, limits: [0, 0, 0, 100, -1, 100], ctrl_limits: [100, -1, 100] }
|
|
@@ -51,127 +55,127 @@ laser_tilt_mount_joint(laser_tilt_mount_joint_origin): { joint: hingeY, limits:
|
|
|
51
55
|
r_shoulder_pan_joint(r_shoulder_pan_joint_origin): { joint: hingeZ, limits: [-2.2854, 0.714602, 2.088, -1, 30], ctrl_limits: [2.088, -1, 30] }
|
|
52
56
|
l_shoulder_pan_joint(l_shoulder_pan_joint_origin): { joint: hingeZ, limits: [-0.714602, 2.2854, 2.088, -1, 30], ctrl_limits: [2.088, -1, 30] }
|
|
53
57
|
fl_caster_l_wheel_link(fl_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
54
|
-
fl_caster_l_wheel_link_0(fl_caster_l_wheel_joint): { shape: mesh, mesh: <
|
|
58
|
+
fl_caster_l_wheel_link_0(fl_caster_l_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
55
59
|
fl_caster_r_wheel_link(fl_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
56
|
-
fl_caster_r_wheel_link_0(fl_caster_r_wheel_joint): { shape: mesh, mesh: <
|
|
60
|
+
fl_caster_r_wheel_link_0(fl_caster_r_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
57
61
|
fr_caster_l_wheel_link(fr_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
58
|
-
fr_caster_l_wheel_link_0(fr_caster_l_wheel_joint): { shape: mesh, mesh: <
|
|
62
|
+
fr_caster_l_wheel_link_0(fr_caster_l_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
59
63
|
fr_caster_r_wheel_link(fr_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
60
|
-
fr_caster_r_wheel_link_0(fr_caster_r_wheel_joint): { shape: mesh, mesh: <
|
|
64
|
+
fr_caster_r_wheel_link_0(fr_caster_r_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
61
65
|
bl_caster_l_wheel_link(bl_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
62
|
-
bl_caster_l_wheel_link_0(bl_caster_l_wheel_joint): { shape: mesh, mesh: <
|
|
66
|
+
bl_caster_l_wheel_link_0(bl_caster_l_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
63
67
|
bl_caster_r_wheel_link(bl_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
64
|
-
bl_caster_r_wheel_link_0(bl_caster_r_wheel_joint): { shape: mesh, mesh: <
|
|
68
|
+
bl_caster_r_wheel_link_0(bl_caster_r_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
65
69
|
br_caster_l_wheel_link(br_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
66
|
-
br_caster_l_wheel_link_0(br_caster_l_wheel_joint): { shape: mesh, mesh: <
|
|
70
|
+
br_caster_l_wheel_link_0(br_caster_l_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
67
71
|
br_caster_r_wheel_link(br_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] }
|
|
68
|
-
br_caster_r_wheel_link_0(br_caster_r_wheel_joint): { shape: mesh, mesh: <
|
|
72
|
+
br_caster_r_wheel_link_0(br_caster_r_wheel_joint): { shape: mesh, mesh: <meshes/wheel.h5>, visual: True }
|
|
69
73
|
head_pan_link(head_pan_joint): { mass: 1.61112, inertia: [0.00482611, -0.000144684, 0.000110076, 0.00521899, -0.00031424, 0.00861878] }
|
|
70
|
-
head_pan_link_0(head_pan_joint): { shape: mesh, mesh: <
|
|
71
|
-
head_tilt_joint_origin(head_pan_joint): {
|
|
74
|
+
head_pan_link_0(head_pan_joint): { shape: mesh, mesh: <meshes/head_pan.h5>, visual: True }
|
|
75
|
+
head_tilt_joint_origin(head_pan_joint): { pose: [0.068, 0, 0, 1, 0, 0, 0] }
|
|
72
76
|
laser_tilt_mount_link(laser_tilt_mount_joint): { mass: 0.05, inertia: [0.0001, 1e-05, 0.0001] }
|
|
73
|
-
laser_tilt_mount_link_0(laser_tilt_mount_joint): { shape: mesh, mesh: <
|
|
74
|
-
laser_tilt_link(laser_tilt_mount_joint): {
|
|
75
|
-
laser_tilt_link_0(laser_tilt_mount_joint): {
|
|
77
|
+
laser_tilt_mount_link_0(laser_tilt_mount_joint): { shape: mesh, mesh: <meshes/tilting_hokuyo.h5>, visual: True }
|
|
78
|
+
laser_tilt_link(laser_tilt_mount_joint): { pose: [0, 0, 0.03, 1, 0, 0, 0], mass: 0.001, inertia: [0.0001, 1e-06, 0.0001] }
|
|
79
|
+
laser_tilt_link_0(laser_tilt_mount_joint): { pose: [0, 0, 0.03, 1, 0, 0, 0], shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
76
80
|
r_shoulder_pan_link(r_shoulder_pan_joint): { mass: 25.7993, inertia: [0.866179, -0.0608651, -0.121181, 0.874217, -0.0588661, 0.273538] }
|
|
77
|
-
r_shoulder_pan_link_0(r_shoulder_pan_joint): { shape: mesh, mesh: <
|
|
78
|
-
r_shoulder_lift_joint_origin(r_shoulder_pan_joint): {
|
|
81
|
+
r_shoulder_pan_link_0(r_shoulder_pan_joint): { shape: mesh, mesh: <meshes/shoulder_pan.h5>, visual: True }
|
|
82
|
+
r_shoulder_lift_joint_origin(r_shoulder_pan_joint): { pose: [0.1, 0, 0, 1, 0, 0, 0] }
|
|
79
83
|
l_shoulder_pan_link(l_shoulder_pan_joint): { mass: 25.7993, inertia: [0.866179, -0.0608651, -0.121181, 0.874217, -0.0588661, 0.273538] }
|
|
80
|
-
l_shoulder_pan_link_0(l_shoulder_pan_joint): { shape: mesh, mesh: <
|
|
81
|
-
l_shoulder_lift_joint_origin(l_shoulder_pan_joint): {
|
|
84
|
+
l_shoulder_pan_link_0(l_shoulder_pan_joint): { shape: mesh, mesh: <meshes/shoulder_pan.h5>, visual: True }
|
|
85
|
+
l_shoulder_lift_joint_origin(l_shoulder_pan_joint): { pose: [0.1, 0, 0, 1, 0, 0, 0] }
|
|
82
86
|
head_tilt_joint(head_tilt_joint_origin): { joint: hingeY, limits: [-0.471238, 1.39626, 5, -1, 15], ctrl_limits: [5, -1, 15] }
|
|
83
87
|
r_shoulder_lift_joint(r_shoulder_lift_joint_origin): { joint: hingeY, limits: [-0.5236, 1.3963, 2.082, -1, 30], ctrl_limits: [2.082, -1, 30] }
|
|
84
88
|
l_shoulder_lift_joint(l_shoulder_lift_joint_origin): { joint: hingeY, limits: [-0.5236, 1.3963, 2.082, -1, 30], ctrl_limits: [2.082, -1, 30] }
|
|
85
89
|
head_tilt_link(head_tilt_joint): { mass: 1.74973, inertia: [0.0106023, -0.000408814, 0.00198304, 0.0118744, 0.000197909, 0.00551679] }
|
|
86
|
-
head_tilt_link_0(head_tilt_joint): { shape: mesh, mesh: <
|
|
87
|
-
head_plate_frame(head_tilt_joint): {
|
|
88
|
-
head_plate_frame_0(head_tilt_joint): {
|
|
89
|
-
sensor_mount_link(head_tilt_joint): {
|
|
90
|
-
sensor_mount_link_0(head_tilt_joint): {
|
|
91
|
-
high_def_frame(head_tilt_joint): {
|
|
92
|
-
high_def_frame_0(head_tilt_joint): {
|
|
93
|
-
high_def_optical_frame(head_tilt_joint): {
|
|
94
|
-
high_def_optical_frame_0(head_tilt_joint): {
|
|
95
|
-
double_stereo_link(head_tilt_joint): {
|
|
96
|
-
double_stereo_link_0(head_tilt_joint): {
|
|
97
|
-
wide_stereo_link(head_tilt_joint): {
|
|
98
|
-
wide_stereo_link_0(head_tilt_joint): {
|
|
99
|
-
wide_stereo_gazebo_l_stereo_camera_frame(head_tilt_joint): {
|
|
100
|
-
wide_stereo_gazebo_l_stereo_camera_frame_0(head_tilt_joint): {
|
|
101
|
-
wide_stereo_gazebo_r_stereo_camera_frame(head_tilt_joint): {
|
|
102
|
-
wide_stereo_gazebo_r_stereo_camera_frame_0(head_tilt_joint): {
|
|
103
|
-
narrow_stereo_link(head_tilt_joint): {
|
|
104
|
-
narrow_stereo_link_0(head_tilt_joint): {
|
|
105
|
-
narrow_stereo_gazebo_l_stereo_camera_frame(head_tilt_joint): {
|
|
106
|
-
narrow_stereo_gazebo_l_stereo_camera_frame_0(head_tilt_joint): {
|
|
107
|
-
narrow_stereo_gazebo_r_stereo_camera_frame(head_tilt_joint): {
|
|
108
|
-
narrow_stereo_gazebo_r_stereo_camera_frame_0(head_tilt_joint): {
|
|
90
|
+
head_tilt_link_0(head_tilt_joint): { shape: mesh, mesh: <meshes/head_tilt.h5>, visual: True }
|
|
91
|
+
head_plate_frame(head_tilt_joint): { pose: [0.0232, 0, 0.0645, 1, 0, 0, 0], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
92
|
+
head_plate_frame_0(head_tilt_joint): { pose: [0.0232, 0, 0.0645, 1, 0, 0, 0], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
93
|
+
sensor_mount_link(head_tilt_joint): { pose: [0.0232, 0, 0.0645, 1, 0, 0, 0], mass: 0.05, inertia: [0.001, 0.001, 0.01] }
|
|
94
|
+
sensor_mount_link_0(head_tilt_joint): { pose: [0.0232, 0, 0.0645, 1, 0, 0, 0], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
95
|
+
high_def_frame(head_tilt_joint): { pose: [0.0232, -0.109, 0.0995, 1, 0, 0, 0], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
96
|
+
high_def_frame_0(head_tilt_joint): { pose: [0.0032, -0.109, 0.0995, 1, 0, 0, 0], shape: box, size: [0.04, 0.04, 0.04], visual: True }
|
|
97
|
+
high_def_optical_frame(head_tilt_joint): { pose: [0.0232, -0.109, 0.0995, 0.5, -0.5, 0.5, -0.5], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
98
|
+
high_def_optical_frame_0(head_tilt_joint): { pose: [0.0232, -0.109, 0.0995, 0.707107, -3.46245e-12, 0.707107, -5.55112e-17], shape: cylinder, size: [0.05, 0.02], visual: True }
|
|
99
|
+
double_stereo_link(head_tilt_joint): { pose: [0.0232, 0, 0.0675, 1, 0, 0, 0], mass: 0.1, inertia: [0.001, 0.001, 0.01] }
|
|
100
|
+
double_stereo_link_0(head_tilt_joint): { pose: [0.0132, 0, 0.0925, 1, 0, 0, 0], shape: box, size: [0.02, 0.12, 0.05], visual: True }
|
|
101
|
+
wide_stereo_link(head_tilt_joint): { pose: [0.0232, 0.03, 0.098, 1, 0, 0, 0], mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
102
|
+
wide_stereo_link_0(head_tilt_joint): { pose: [0.0232, 0.03, 0.098, 1, 0, 0, 0], shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
103
|
+
wide_stereo_gazebo_l_stereo_camera_frame(head_tilt_joint): { pose: [0.0232, 0.03, 0.098, 1, 0, 0, 0], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
104
|
+
wide_stereo_gazebo_l_stereo_camera_frame_0(head_tilt_joint): { pose: [0.0232, 0.03, 0.098, 1, 0, 0, 0], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
105
|
+
wide_stereo_gazebo_r_stereo_camera_frame(head_tilt_joint): { pose: [0.0232, -0.06, 0.098, 1, 0, 0, 0], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
106
|
+
wide_stereo_gazebo_r_stereo_camera_frame_0(head_tilt_joint): { pose: [0.0232, -0.06, 0.098, 1, 0, 0, 0], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
107
|
+
narrow_stereo_link(head_tilt_joint): { pose: [0.0232, 0.06, 0.098, 1, 0, 0, 0], mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
108
|
+
narrow_stereo_link_0(head_tilt_joint): { pose: [0.0232, 0.06, 0.098, 1, 0, 0, 0], shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
109
|
+
narrow_stereo_gazebo_l_stereo_camera_frame(head_tilt_joint): { pose: [0.0232, 0.06, 0.098, 1, 0, 0, 0], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
110
|
+
narrow_stereo_gazebo_l_stereo_camera_frame_0(head_tilt_joint): { pose: [0.0232, 0.06, 0.098, 1, 0, 0, 0], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
111
|
+
narrow_stereo_gazebo_r_stereo_camera_frame(head_tilt_joint): { pose: [0.0232, -0.03, 0.098, 1, 0, 0, 0], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
112
|
+
narrow_stereo_gazebo_r_stereo_camera_frame_0(head_tilt_joint): { pose: [0.0232, -0.03, 0.098, 1, 0, 0, 0], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
109
113
|
r_shoulder_lift_link(r_shoulder_lift_joint): { mass: 2.74988, inertia: [0.0210558, 0.00496704, -0.00194809, 0.0212722, 0.00110425, 0.0197575] }
|
|
110
|
-
r_shoulder_lift_link_0(r_shoulder_lift_joint): { shape: mesh, mesh: <
|
|
114
|
+
r_shoulder_lift_link_0(r_shoulder_lift_joint): { shape: mesh, mesh: <meshes/shoulder_lift.h5>, visual: True }
|
|
111
115
|
l_shoulder_lift_link(l_shoulder_lift_joint): { mass: 2.74988, inertia: [0.0210558, 0.00496704, -0.00194809, 0.0212722, 0.00110425, 0.0197575] }
|
|
112
|
-
l_shoulder_lift_link_0(l_shoulder_lift_joint): { shape: mesh, mesh: <
|
|
116
|
+
l_shoulder_lift_link_0(l_shoulder_lift_joint): { shape: mesh, mesh: <meshes/shoulder_lift.h5>, visual: True }
|
|
113
117
|
r_upper_arm_roll_joint(r_shoulder_lift_link): { joint: hingeX, limits: [-3.9, 0.8, 3.27, -1, 30], ctrl_limits: [3.27, -1, 30] }
|
|
114
118
|
l_upper_arm_roll_joint(l_shoulder_lift_link): { joint: hingeX, limits: [-0.8, 3.9, 3.27, -1, 30], ctrl_limits: [3.27, -1, 30] }
|
|
115
119
|
r_upper_arm_roll_link(r_upper_arm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
116
|
-
r_upper_arm_roll_link_0(r_upper_arm_roll_joint): { shape: mesh, mesh: <
|
|
120
|
+
r_upper_arm_roll_link_0(r_upper_arm_roll_joint): { shape: mesh, mesh: <meshes/upper_arm_roll.h5>, visual: True }
|
|
117
121
|
r_upper_arm_link(r_upper_arm_roll_joint): { mass: 6.01769, inertia: [0.0153775, 0.00375711, -0.000708529, 0.0747367, -0.000179365, 0.0760876] }
|
|
118
|
-
r_upper_arm_link_0(r_upper_arm_roll_joint): { shape: mesh, mesh: <
|
|
119
|
-
r_elbow_flex_joint_origin(r_upper_arm_roll_joint): {
|
|
122
|
+
r_upper_arm_link_0(r_upper_arm_roll_joint): { shape: mesh, mesh: <meshes/upper_arm.h5>, visual: True }
|
|
123
|
+
r_elbow_flex_joint_origin(r_upper_arm_roll_joint): { pose: [0.4, 0, 0, 1, 0, 0, 0] }
|
|
120
124
|
l_upper_arm_roll_link(l_upper_arm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
121
|
-
l_upper_arm_roll_link_0(l_upper_arm_roll_joint): { shape: mesh, mesh: <
|
|
125
|
+
l_upper_arm_roll_link_0(l_upper_arm_roll_joint): { shape: mesh, mesh: <meshes/upper_arm_roll.h5>, visual: True }
|
|
122
126
|
l_upper_arm_link(l_upper_arm_roll_joint): { mass: 6.01769, inertia: [0.015306, -0.00339325, 0.000607655, 0.0747369, -0.000199537, 0.0760159] }
|
|
123
|
-
l_upper_arm_link_0(l_upper_arm_roll_joint): { shape: mesh, mesh: <
|
|
124
|
-
l_elbow_flex_joint_origin(l_upper_arm_roll_joint): {
|
|
127
|
+
l_upper_arm_link_0(l_upper_arm_roll_joint): { shape: mesh, mesh: <meshes/upper_arm.h5>, visual: True }
|
|
128
|
+
l_elbow_flex_joint_origin(l_upper_arm_roll_joint): { pose: [0.4, 0, 0, 1, 0, 0, 0] }
|
|
125
129
|
r_elbow_flex_joint(r_elbow_flex_joint_origin): { joint: hingeY, limits: [-2.3213, 0, 3.3, -1, 30], ctrl_limits: [3.3, -1, 30] }
|
|
126
130
|
l_elbow_flex_joint(l_elbow_flex_joint_origin): { joint: hingeY, limits: [-2.3213, 0, 3.3, -1, 30], ctrl_limits: [3.3, -1, 30] }
|
|
127
131
|
r_elbow_flex_link(r_elbow_flex_joint): { mass: 1.90327, inertia: [0.00346542, 4.06683e-05, 0.000431716, 0.00441606, -3.96891e-05, 0.00359157] }
|
|
128
|
-
r_elbow_flex_link_0(r_elbow_flex_joint): { shape: mesh, mesh: <
|
|
132
|
+
r_elbow_flex_link_0(r_elbow_flex_joint): { shape: mesh, mesh: <meshes/elbow_flex.h5>, visual: True }
|
|
129
133
|
l_elbow_flex_link(l_elbow_flex_joint): { mass: 1.90327, inertia: [0.00346542, 4.06683e-05, 0.000431716, 0.00441606, -3.96891e-05, 0.00359157] }
|
|
130
|
-
l_elbow_flex_link_0(l_elbow_flex_joint): { shape: mesh, mesh: <
|
|
134
|
+
l_elbow_flex_link_0(l_elbow_flex_joint): { shape: mesh, mesh: <meshes/elbow_flex.h5>, visual: True }
|
|
131
135
|
r_forearm_roll_joint(r_elbow_flex_link): { joint: hingeX, limits: [0, 0, 0, 3.6, -1, 30], ctrl_limits: [3.6, -1, 30] }
|
|
132
136
|
l_forearm_roll_joint(l_elbow_flex_link): { joint: hingeX, limits: [0, 0, 0, 3.6, -1, 30], ctrl_limits: [3.6, -1, 30] }
|
|
133
137
|
r_forearm_roll_link(r_forearm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
134
|
-
r_forearm_roll_link_0(r_forearm_roll_joint): { shape: mesh, mesh: <
|
|
138
|
+
r_forearm_roll_link_0(r_forearm_roll_joint): { shape: mesh, mesh: <meshes/forearm_roll.h5>, visual: True }
|
|
135
139
|
r_forearm_link(r_forearm_roll_joint): { mass: 2.57968, inertia: [0.00364857, 5.21588e-05, 0.000715348, 0.0150774, -1.31077e-05, 0.0165931] }
|
|
136
|
-
r_forearm_link_0(r_forearm_roll_joint): { shape: mesh, mesh: <
|
|
137
|
-
r_forearm_cam_frame(r_forearm_roll_joint): {
|
|
138
|
-
r_forearm_cam_frame_0(r_forearm_roll_joint): {
|
|
139
|
-
r_wrist_flex_joint_origin(r_forearm_roll_joint): {
|
|
140
|
+
r_forearm_link_0(r_forearm_roll_joint): { shape: mesh, mesh: <meshes/forearm.h5>, visual: True }
|
|
141
|
+
r_forearm_cam_frame(r_forearm_roll_joint): { pose: [0.135, 0, 0.044, 0.679288, 0.679288, -0.196387, 0.196387], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
142
|
+
r_forearm_cam_frame_0(r_forearm_roll_joint): { pose: [0.135, 0, 0.044, 0.679288, 0.679288, -0.196387, 0.196387], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
143
|
+
r_wrist_flex_joint_origin(r_forearm_roll_joint): { pose: [0.321, 0, 0, 1, 0, 0, 0] }
|
|
140
144
|
l_forearm_roll_link(l_forearm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
141
|
-
l_forearm_roll_link_0(l_forearm_roll_joint): { shape: mesh, mesh: <
|
|
145
|
+
l_forearm_roll_link_0(l_forearm_roll_joint): { shape: mesh, mesh: <meshes/forearm_roll.h5>, visual: True }
|
|
142
146
|
l_forearm_link(l_forearm_roll_joint): { mass: 2.57968, inertia: [0.00364857, 5.21588e-05, 0.000715348, 0.0150774, -1.31077e-05, 0.0165931] }
|
|
143
|
-
l_forearm_link_0(l_forearm_roll_joint): { shape: mesh, mesh: <
|
|
144
|
-
l_forearm_cam_frame(l_forearm_roll_joint): {
|
|
145
|
-
l_forearm_cam_frame_0(l_forearm_roll_joint): {
|
|
146
|
-
l_wrist_flex_joint_origin(l_forearm_roll_joint): {
|
|
147
|
+
l_forearm_link_0(l_forearm_roll_joint): { shape: mesh, mesh: <meshes/forearm.h5>, visual: True }
|
|
148
|
+
l_forearm_cam_frame(l_forearm_roll_joint): { pose: [0.135, 0, 0.044, 0.679288, -0.679288, -0.196387, -0.196387], mass: 0.01, inertia: [0.001, 0.001, 0.001] }
|
|
149
|
+
l_forearm_cam_frame_0(l_forearm_roll_joint): { pose: [0.135, 0, 0.044, 0.679288, -0.679288, -0.196387, -0.196387], shape: box, size: [0.01, 0.01, 0.01], visual: True }
|
|
150
|
+
l_wrist_flex_joint_origin(l_forearm_roll_joint): { pose: [0.321, 0, 0, 1, 0, 0, 0] }
|
|
147
151
|
r_wrist_flex_joint(r_wrist_flex_joint_origin): { joint: hingeY, limits: [-2.094, 0, 3.078, -1, 10], ctrl_limits: [3.078, -1, 10] }
|
|
148
152
|
l_wrist_flex_joint(l_wrist_flex_joint_origin): { joint: hingeY, limits: [-2.094, 0, 3.078, -1, 10], ctrl_limits: [3.078, -1, 10] }
|
|
149
153
|
r_wrist_flex_link(r_wrist_flex_joint): { mass: 0.61402, inertia: [0.000651657, 2.8864e-07, 3.03477e-06, 0.000198244, -2.2645e-07, 0.000644505] }
|
|
150
|
-
r_wrist_flex_link_0(r_wrist_flex_joint): { shape: mesh, mesh: <
|
|
154
|
+
r_wrist_flex_link_0(r_wrist_flex_joint): { shape: mesh, mesh: <meshes/wrist_flex.h5>, visual: True }
|
|
151
155
|
l_wrist_flex_link(l_wrist_flex_joint): { mass: 0.61402, inertia: [0.000651657, 2.8864e-07, 3.03477e-06, 0.000198244, -2.2645e-07, 0.000644505] }
|
|
152
|
-
l_wrist_flex_link_0(l_wrist_flex_joint): { shape: mesh, mesh: <
|
|
156
|
+
l_wrist_flex_link_0(l_wrist_flex_joint): { shape: mesh, mesh: <meshes/wrist_flex.h5>, visual: True }
|
|
153
157
|
r_wrist_roll_joint(r_wrist_flex_link): { joint: hingeX, limits: [0, 0, 0, 3.6, -1, 10], ctrl_limits: [3.6, -1, 10] }
|
|
154
158
|
l_wrist_roll_joint(l_wrist_flex_link): { joint: hingeX, limits: [0, 0, 0, 3.6, -1, 10], ctrl_limits: [3.6, -1, 10] }
|
|
155
159
|
r_wrist_roll_link(r_wrist_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
156
|
-
r_wrist_roll_link_0(r_wrist_roll_joint): { shape: mesh, mesh: <
|
|
160
|
+
r_wrist_roll_link_0(r_wrist_roll_joint): { shape: mesh, mesh: <meshes/wrist_roll.h5>, visual: True }
|
|
157
161
|
r_gripper_palm_link(r_wrist_roll_joint): { mass: 0.58007, inertia: [0.000352239, -1.58048e-05, -9.175e-07, 0.000677413, -5.9554e-07, 0.000865633] }
|
|
158
|
-
r_gripper_palm_link_0(r_wrist_roll_joint): { shape: mesh, mesh: <
|
|
162
|
+
r_gripper_palm_link_0(r_wrist_roll_joint): { shape: mesh, mesh: <meshes/gripper_palm.h5>, visual: True }
|
|
159
163
|
r_gripper_motor_accelerometer_link(r_wrist_roll_joint): { mass: 0.001, inertia: [0.001, 0.001, 0.001] }
|
|
160
|
-
r_gripper_motor_accelerometer_link_0(r_wrist_roll_joint): { shape: box, size: [0.001, 0.001, 0.001
|
|
161
|
-
r_gripper_l_finger_joint_origin(r_wrist_roll_joint): {
|
|
162
|
-
r_gripper_r_finger_joint_origin(r_wrist_roll_joint): {
|
|
163
|
-
r_gripper_l_parallel_root_joint_origin(r_wrist_roll_joint): {
|
|
164
|
-
r_gripper_r_parallel_root_joint_origin(r_wrist_roll_joint): {
|
|
164
|
+
r_gripper_motor_accelerometer_link_0(r_wrist_roll_joint): { shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
165
|
+
r_gripper_l_finger_joint_origin(r_wrist_roll_joint): { pose: [0.07691, 0.01, 0, 1, 0, 0, 0] }
|
|
166
|
+
r_gripper_r_finger_joint_origin(r_wrist_roll_joint): { pose: [0.07691, -0.01, 0, 1, 0, 0, 0] }
|
|
167
|
+
r_gripper_l_parallel_root_joint_origin(r_wrist_roll_joint): { pose: [0.05891, 0.031, 0, 1, 0, 0, 0] }
|
|
168
|
+
r_gripper_r_parallel_root_joint_origin(r_wrist_roll_joint): { pose: [0.05891, -0.031, 0, 1, 0, 0, 0] }
|
|
165
169
|
l_wrist_roll_link(l_wrist_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] }
|
|
166
|
-
l_wrist_roll_link_0(l_wrist_roll_joint): { shape: mesh, mesh: <
|
|
170
|
+
l_wrist_roll_link_0(l_wrist_roll_joint): { shape: mesh, mesh: <meshes/wrist_roll.h5>, visual: True }
|
|
167
171
|
l_gripper_palm_link(l_wrist_roll_joint): { mass: 0.58007, inertia: [0.000352239, -1.58048e-05, -9.175e-07, 0.000677413, -5.9554e-07, 0.000865633] }
|
|
168
|
-
l_gripper_palm_link_0(l_wrist_roll_joint): { shape: mesh, mesh: <
|
|
172
|
+
l_gripper_palm_link_0(l_wrist_roll_joint): { shape: mesh, mesh: <meshes/gripper_palm.h5>, visual: True }
|
|
169
173
|
l_gripper_motor_accelerometer_link(l_wrist_roll_joint): { mass: 0.001, inertia: [0.001, 0.001, 0.001] }
|
|
170
|
-
l_gripper_motor_accelerometer_link_0(l_wrist_roll_joint): { shape: box, size: [0.001, 0.001, 0.001
|
|
171
|
-
l_gripper_l_finger_joint_origin(l_wrist_roll_joint): {
|
|
172
|
-
l_gripper_r_finger_joint_origin(l_wrist_roll_joint): {
|
|
173
|
-
l_gripper_l_parallel_root_joint_origin(l_wrist_roll_joint): {
|
|
174
|
-
l_gripper_r_parallel_root_joint_origin(l_wrist_roll_joint): {
|
|
174
|
+
l_gripper_motor_accelerometer_link_0(l_wrist_roll_joint): { shape: box, size: [0.001, 0.001, 0.001], visual: True }
|
|
175
|
+
l_gripper_l_finger_joint_origin(l_wrist_roll_joint): { pose: [0.07691, 0.01, 0, 1, 0, 0, 0] }
|
|
176
|
+
l_gripper_r_finger_joint_origin(l_wrist_roll_joint): { pose: [0.07691, -0.01, 0, 1, 0, 0, 0] }
|
|
177
|
+
l_gripper_l_parallel_root_joint_origin(l_wrist_roll_joint): { pose: [0.05891, 0.031, 0, 1, 0, 0, 0] }
|
|
178
|
+
l_gripper_r_parallel_root_joint_origin(l_wrist_roll_joint): { pose: [0.05891, -0.031, 0, 1, 0, 0, 0] }
|
|
175
179
|
r_gripper_l_finger_joint(r_gripper_l_finger_joint_origin): { joint: hingeZ, limits: [0, 0.548, 0.5, -1, 1000], ctrl_limits: [0.5, -1, 1000] }
|
|
176
180
|
r_gripper_r_finger_joint(r_gripper_r_finger_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548, 0.5, -1, 1000], mimic: "r_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
177
181
|
r_gripper_l_parallel_root_joint(r_gripper_l_parallel_root_joint_origin): { joint: hingeZ, limits: [0, 0.548, 0.5, -1, 1000], mimic: "r_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
@@ -181,19 +185,19 @@ l_gripper_r_finger_joint(l_gripper_r_finger_joint_origin): { joint: hingeZ, join
|
|
|
181
185
|
l_gripper_l_parallel_root_joint(l_gripper_l_parallel_root_joint_origin): { joint: hingeZ, limits: [0, 0.548, 0.5, -1, 1000], mimic: "l_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
182
186
|
l_gripper_r_parallel_root_joint(l_gripper_r_parallel_root_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548, 0.5, -1, 1000], mimic: "l_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
183
187
|
r_gripper_l_finger_link(r_gripper_l_finger_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] }
|
|
184
|
-
r_gripper_l_finger_link_0(r_gripper_l_finger_joint): { shape: mesh, mesh: <
|
|
185
|
-
r_gripper_l_finger_tip_joint_origin(r_gripper_l_finger_joint): {
|
|
188
|
+
r_gripper_l_finger_link_0(r_gripper_l_finger_joint): { shape: mesh, mesh: <meshes/l_finger.h5>, visual: True }
|
|
189
|
+
r_gripper_l_finger_tip_joint_origin(r_gripper_l_finger_joint): { pose: [0.09137, 0.00495, 0, 1, 0, 0, 0] }
|
|
186
190
|
r_gripper_r_finger_link(r_gripper_r_finger_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] }
|
|
187
|
-
r_gripper_r_finger_link_0(r_gripper_r_finger_joint): {
|
|
188
|
-
r_gripper_r_finger_tip_joint_origin(r_gripper_r_finger_joint): {
|
|
191
|
+
r_gripper_r_finger_link_0(r_gripper_r_finger_joint): { pose: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, mesh: <meshes/l_finger.h5>, visual: True }
|
|
192
|
+
r_gripper_r_finger_tip_joint_origin(r_gripper_r_finger_joint): { pose: [0.09137, -0.00495, 0, 1, 0, 0, 0] }
|
|
189
193
|
r_gripper_l_parallel_link(r_gripper_l_parallel_root_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] }
|
|
190
194
|
r_gripper_r_parallel_link(r_gripper_r_parallel_root_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] }
|
|
191
195
|
l_gripper_l_finger_link(l_gripper_l_finger_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] }
|
|
192
|
-
l_gripper_l_finger_link_0(l_gripper_l_finger_joint): { shape: mesh, mesh: <
|
|
193
|
-
l_gripper_l_finger_tip_joint_origin(l_gripper_l_finger_joint): {
|
|
196
|
+
l_gripper_l_finger_link_0(l_gripper_l_finger_joint): { shape: mesh, mesh: <meshes/l_finger.h5>, visual: True }
|
|
197
|
+
l_gripper_l_finger_tip_joint_origin(l_gripper_l_finger_joint): { pose: [0.09137, 0.00495, 0, 1, 0, 0, 0] }
|
|
194
198
|
l_gripper_r_finger_link(l_gripper_r_finger_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] }
|
|
195
|
-
l_gripper_r_finger_link_0(l_gripper_r_finger_joint): {
|
|
196
|
-
l_gripper_r_finger_tip_joint_origin(l_gripper_r_finger_joint): {
|
|
199
|
+
l_gripper_r_finger_link_0(l_gripper_r_finger_joint): { pose: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, mesh: <meshes/l_finger.h5>, visual: True }
|
|
200
|
+
l_gripper_r_finger_tip_joint_origin(l_gripper_r_finger_joint): { pose: [0.09137, -0.00495, 0, 1, 0, 0, 0] }
|
|
197
201
|
l_gripper_l_parallel_link(l_gripper_l_parallel_root_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] }
|
|
198
202
|
l_gripper_r_parallel_link(l_gripper_r_parallel_root_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] }
|
|
199
203
|
r_gripper_l_finger_tip_joint(r_gripper_l_finger_tip_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548, 0.5, -1, 1000], mimic: "r_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
@@ -201,12 +205,12 @@ r_gripper_r_finger_tip_joint(r_gripper_r_finger_tip_joint_origin): { joint: hing
|
|
|
201
205
|
l_gripper_l_finger_tip_joint(l_gripper_l_finger_tip_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548, 0.5, -1, 1000], mimic: "l_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
202
206
|
l_gripper_r_finger_tip_joint(l_gripper_r_finger_tip_joint_origin): { joint: hingeZ, limits: [0, 0.548, 0.5, -1, 1000], mimic: "l_gripper_l_finger_joint", ctrl_limits: [0.5, -1, 1000] }
|
|
203
207
|
r_gripper_l_finger_tip_link(r_gripper_l_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, 5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] }
|
|
204
|
-
r_gripper_l_finger_tip_link_0(r_gripper_l_finger_tip_joint): { shape: mesh, mesh: <
|
|
208
|
+
r_gripper_l_finger_tip_link_0(r_gripper_l_finger_tip_joint): { shape: mesh, mesh: <meshes/l_finger_tip.h5>, visual: True }
|
|
205
209
|
r_gripper_r_finger_tip_link(r_gripper_r_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, -5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] }
|
|
206
|
-
r_gripper_r_finger_tip_link_0(r_gripper_r_finger_tip_joint): {
|
|
210
|
+
r_gripper_r_finger_tip_link_0(r_gripper_r_finger_tip_joint): { pose: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, mesh: <meshes/l_finger_tip.h5>, visual: True }
|
|
207
211
|
l_gripper_l_finger_tip_link(l_gripper_l_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, 5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] }
|
|
208
|
-
l_gripper_l_finger_tip_link_0(l_gripper_l_finger_tip_joint): { shape: mesh, mesh: <
|
|
212
|
+
l_gripper_l_finger_tip_link_0(l_gripper_l_finger_tip_joint): { shape: mesh, mesh: <meshes/l_finger_tip.h5>, visual: True }
|
|
209
213
|
l_gripper_r_finger_tip_link(l_gripper_r_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, -5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] }
|
|
210
|
-
l_gripper_r_finger_tip_link_0(l_gripper_r_finger_tip_joint): {
|
|
214
|
+
l_gripper_r_finger_tip_link_0(l_gripper_r_finger_tip_joint): { pose: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, mesh: <meshes/l_finger_tip.h5>, visual: True }
|
|
211
215
|
r_gripper_joint(r_gripper_r_finger_tip_link): { joint: transY, limits: [0, 0.09, 0.2, -1, 1000], ctrl_limits: [0.2, -1, 1000] }
|
|
212
|
-
l_gripper_joint(l_gripper_r_finger_tip_link): { joint: transY, limits: [0, 0.09, 0.2, -1, 1000], ctrl_limits: [0.2, -1, 1000] }
|
|
216
|
+
l_gripper_joint(l_gripper_r_finger_tip_link): { joint: transY, limits: [0, 0.09, 0.2, -1, 1000], ctrl_limits: [0.2, -1, 1000] }
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
base_footprint: { shape: box, size: [0.01, 0.01, 0.01], mass: 1, inertia: [0.01, 0.01, 0.01] },
|
|
2
|
+
base_footprint_joint_origin(base_footprint): { Q: [0, 0, 0.051] },
|
|
3
|
+
base_footprint_joint(base_footprint_joint_origin): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/base.h5> },
|
|
4
|
+
base_link(base_footprint_joint): { mass: 116, inertia: [5.65223, -0.00971993, 1.29399, 5.66947, -0.00737958, 3.6832] },
|
|
5
|
+
base_laser_joint_origin(base_footprint_joint): { Q: [0.275, 0, 0.252] },
|
|
6
|
+
fl_caster_rotation_joint_origin(base_footprint_joint): { Q: [0.2246, 0.2246, 0.0282] },
|
|
7
|
+
fr_caster_rotation_joint_origin(base_footprint_joint): { Q: [0.2246, -0.2246, 0.0282] },
|
|
8
|
+
bl_caster_rotation_joint_origin(base_footprint_joint): { Q: [-0.2246, 0.2246, 0.0282] },
|
|
9
|
+
br_caster_rotation_joint_origin(base_footprint_joint): { Q: [-0.2246, -0.2246, 0.0282] },
|
|
10
|
+
torso_lift_joint_origin(base_footprint_joint): { Q: [-0.05, 0, 0.739675] },
|
|
11
|
+
base_laser_joint(base_laser_joint_origin): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
12
|
+
fl_caster_rotation_joint(fl_caster_rotation_joint_origin): { joint: hingeZ, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/caster.h5> },
|
|
13
|
+
fr_caster_rotation_joint(fr_caster_rotation_joint_origin): { joint: hingeZ, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/caster.h5> },
|
|
14
|
+
bl_caster_rotation_joint(bl_caster_rotation_joint_origin): { joint: hingeZ, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/caster.h5> },
|
|
15
|
+
br_caster_rotation_joint(br_caster_rotation_joint_origin): { joint: hingeZ, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/caster.h5> },
|
|
16
|
+
torso_lift_joint(torso_lift_joint_origin): { joint: transZ, limits: [0, 0.31], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/torso_lift.h5> },
|
|
17
|
+
base_laser_link(base_laser_joint): { mass: 0.001, inertia: [0.0001, 1e-06, 0.0001] },
|
|
18
|
+
fl_caster_rotation_link(fl_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
19
|
+
fl_caster_l_wheel_joint_origin(fl_caster_rotation_joint): { Q: [0, 0.049, 0] },
|
|
20
|
+
fl_caster_r_wheel_joint_origin(fl_caster_rotation_joint): { Q: [0, -0.049, 0] },
|
|
21
|
+
fr_caster_rotation_link(fr_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
22
|
+
fr_caster_l_wheel_joint_origin(fr_caster_rotation_joint): { Q: [0, 0.049, 0] },
|
|
23
|
+
fr_caster_r_wheel_joint_origin(fr_caster_rotation_joint): { Q: [0, -0.049, 0] },
|
|
24
|
+
bl_caster_rotation_link(bl_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
25
|
+
bl_caster_l_wheel_joint_origin(bl_caster_rotation_joint): { Q: [0, 0.049, 0] },
|
|
26
|
+
bl_caster_r_wheel_joint_origin(bl_caster_rotation_joint): { Q: [0, -0.049, 0] },
|
|
27
|
+
br_caster_rotation_link(br_caster_rotation_joint): { mass: 3.47308, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
28
|
+
br_caster_l_wheel_joint_origin(br_caster_rotation_joint): { Q: [0, 0.049, 0] },
|
|
29
|
+
br_caster_r_wheel_joint_origin(br_caster_rotation_joint): { Q: [0, -0.049, 0] },
|
|
30
|
+
torso_lift_link(torso_lift_joint): { mass: 36.248, inertia: [2.77165, 0.00428452, -0.160419, 2.51002, 0.0296645, 0.526432] },
|
|
31
|
+
imu_joint_origin(torso_lift_joint): { Q: [-0.02977, -0.1497, 0.164, -1.03412e-13, 0, 1, 0] },
|
|
32
|
+
head_pan_joint_origin(torso_lift_joint): { Q: [-0.01707, 0, 0.38145] },
|
|
33
|
+
laser_tilt_mount_joint_origin(torso_lift_joint): { Q: [0.09893, 0, 0.227] },
|
|
34
|
+
r_shoulder_pan_joint_origin(torso_lift_joint): { Q: [0, -0.188, 0] },
|
|
35
|
+
l_shoulder_pan_joint_origin(torso_lift_joint): { Q: [0, 0.188, 0] },
|
|
36
|
+
fl_caster_l_wheel_joint(fl_caster_l_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
37
|
+
fl_caster_r_wheel_joint(fl_caster_r_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
38
|
+
fr_caster_l_wheel_joint(fr_caster_l_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
39
|
+
fr_caster_r_wheel_joint(fr_caster_r_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
40
|
+
bl_caster_l_wheel_joint(bl_caster_l_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
41
|
+
bl_caster_r_wheel_joint(bl_caster_r_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
42
|
+
br_caster_l_wheel_joint(br_caster_l_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
43
|
+
br_caster_r_wheel_joint(br_caster_r_wheel_joint_origin): { joint: hingeY, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wheel.h5> },
|
|
44
|
+
imu_joint(imu_joint_origin): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
45
|
+
head_pan_joint(head_pan_joint_origin): { joint: hingeZ, limits: [-3.007, 3.007], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/head_pan.h5> },
|
|
46
|
+
laser_tilt_mount_joint(laser_tilt_mount_joint_origin): { joint: hingeY, limits: [-0.7854, 1.48353], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/tilting_hokuyo.h5> },
|
|
47
|
+
r_shoulder_pan_joint(r_shoulder_pan_joint_origin): { joint: hingeZ, limits: [-2.2854, 0.714602], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/shoulder_pan.h5> },
|
|
48
|
+
l_shoulder_pan_joint(l_shoulder_pan_joint_origin): { joint: hingeZ, limits: [-0.714602, 2.2854], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/shoulder_pan.h5> },
|
|
49
|
+
fl_caster_l_wheel_link(fl_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
50
|
+
fl_caster_r_wheel_link(fl_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
51
|
+
fr_caster_l_wheel_link(fr_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
52
|
+
fr_caster_r_wheel_link(fr_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
53
|
+
bl_caster_l_wheel_link(bl_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
54
|
+
bl_caster_r_wheel_link(bl_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
55
|
+
br_caster_l_wheel_link(br_caster_l_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
56
|
+
br_caster_r_wheel_link(br_caster_r_wheel_joint): { mass: 0.44036, inertia: [0.0124118, -0.000711734, 0.00050273, 0.0152182, -4.27347e-06, 0.011764] },
|
|
57
|
+
imu_link(imu_joint): { mass: 0.001, inertia: [0.0001, 1e-06, 0.0001] },
|
|
58
|
+
head_pan_link(head_pan_joint): { mass: 1.61112, inertia: [0.00482611, -0.000144684, 0.000110076, 0.00521899, -0.00031424, 0.00861878] },
|
|
59
|
+
head_tilt_joint_origin(head_pan_joint): { Q: [0.068, 0, 0] },
|
|
60
|
+
laser_tilt_mount_link(laser_tilt_mount_joint): { mass: 0.05, inertia: [0.0001, 1e-05, 0.0001] },
|
|
61
|
+
laser_tilt_joint_origin(laser_tilt_mount_joint): { Q: [0, 0, 0.03] },
|
|
62
|
+
r_shoulder_pan_link(r_shoulder_pan_joint): { mass: 25.7993, inertia: [0.866179, -0.0608651, -0.121181, 0.874217, -0.0588661, 0.273538] },
|
|
63
|
+
r_shoulder_lift_joint_origin(r_shoulder_pan_joint): { Q: [0.1, 0, 0] },
|
|
64
|
+
l_shoulder_pan_link(l_shoulder_pan_joint): { mass: 25.7993, inertia: [0.866179, -0.0608651, -0.121181, 0.874217, -0.0588661, 0.273538] },
|
|
65
|
+
l_shoulder_lift_joint_origin(l_shoulder_pan_joint): { Q: [0.1, 0, 0] },
|
|
66
|
+
head_tilt_joint(head_tilt_joint_origin): { joint: hingeY, limits: [-0.471238, 1.39626], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/head_tilt.h5> },
|
|
67
|
+
laser_tilt_joint(laser_tilt_joint_origin): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
68
|
+
r_shoulder_lift_joint(r_shoulder_lift_joint_origin): { joint: hingeY, limits: [-0.5236, 1.3963], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/shoulder_lift.h5> },
|
|
69
|
+
l_shoulder_lift_joint(l_shoulder_lift_joint_origin): { joint: hingeY, limits: [-0.5236, 1.3963], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/shoulder_lift.h5> },
|
|
70
|
+
head_tilt_link(head_tilt_joint): { mass: 1.74973, inertia: [0.0106023, -0.000408814, 0.00198304, 0.0118744, 0.000197909, 0.00551679] },
|
|
71
|
+
head_plate_frame_joint_origin(head_tilt_joint): { Q: [0.0232, 0, 0.0645] },
|
|
72
|
+
laser_tilt_link(laser_tilt_joint): { mass: 0.001, inertia: [0.0001, 1e-06, 0.0001] },
|
|
73
|
+
r_shoulder_lift_link(r_shoulder_lift_joint): { mass: 2.74988, inertia: [0.0210558, 0.00496704, -0.00194809, 0.0212722, 0.00110425, 0.0197575] },
|
|
74
|
+
r_upper_arm_roll_joint(r_shoulder_lift_joint): { joint: hingeX, limits: [-3.9, 0.8], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/upper_arm_roll.h5> },
|
|
75
|
+
l_shoulder_lift_link(l_shoulder_lift_joint): { mass: 2.74988, inertia: [0.0210558, 0.00496704, -0.00194809, 0.0212722, 0.00110425, 0.0197575] },
|
|
76
|
+
l_upper_arm_roll_joint(l_shoulder_lift_joint): { joint: hingeX, limits: [-0.8, 3.9], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/upper_arm_roll.h5> },
|
|
77
|
+
head_plate_frame_joint(head_plate_frame_joint_origin): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
78
|
+
r_upper_arm_roll_link(r_upper_arm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
79
|
+
r_upper_arm_joint(r_upper_arm_roll_joint): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/upper_arm.h5> },
|
|
80
|
+
l_upper_arm_roll_link(l_upper_arm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
81
|
+
l_upper_arm_joint(l_upper_arm_roll_joint): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/upper_arm.h5> },
|
|
82
|
+
head_plate_frame(head_plate_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
83
|
+
sensor_mount_frame_joint(head_plate_frame_joint): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
84
|
+
r_upper_arm_link(r_upper_arm_joint): { mass: 6.01769, inertia: [0.0153775, 0.00375711, -0.000708529, 0.0747367, -0.000179365, 0.0760876] },
|
|
85
|
+
r_elbow_flex_joint_origin(r_upper_arm_joint): { Q: [0.4, 0, 0] },
|
|
86
|
+
l_upper_arm_link(l_upper_arm_joint): { mass: 6.01769, inertia: [0.015306, -0.00339325, 0.000607655, 0.0747369, -0.000199537, 0.0760159] },
|
|
87
|
+
l_elbow_flex_joint_origin(l_upper_arm_joint): { Q: [0.4, 0, 0] },
|
|
88
|
+
sensor_mount_link(sensor_mount_frame_joint): { mass: 0.05, inertia: [0.001, 0.001, 0.01] },
|
|
89
|
+
high_def_frame_joint_origin(sensor_mount_frame_joint): { Q: [0, -0.109, 0.035] },
|
|
90
|
+
double_stereo_frame_joint_origin(sensor_mount_frame_joint): { Q: [0, 0, 0.003] },
|
|
91
|
+
r_elbow_flex_joint(r_elbow_flex_joint_origin): { joint: hingeY, limits: [-2.3213, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/elbow_flex.h5> },
|
|
92
|
+
l_elbow_flex_joint(l_elbow_flex_joint_origin): { joint: hingeY, limits: [-2.3213, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/elbow_flex.h5> },
|
|
93
|
+
high_def_frame_joint(high_def_frame_joint_origin): { joint: rigid },
|
|
94
|
+
double_stereo_frame_joint(double_stereo_frame_joint_origin): { joint: rigid },
|
|
95
|
+
r_elbow_flex_link(r_elbow_flex_joint): { mass: 1.90327, inertia: [0.00346542, 4.06683e-05, 0.000431716, 0.00441606, -3.96891e-05, 0.00359157] },
|
|
96
|
+
r_forearm_roll_joint(r_elbow_flex_joint): { joint: hingeX, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/forearm_roll.h5> },
|
|
97
|
+
l_elbow_flex_link(l_elbow_flex_joint): { mass: 1.90327, inertia: [0.00346542, 4.06683e-05, 0.000431716, 0.00441606, -3.96891e-05, 0.00359157] },
|
|
98
|
+
l_forearm_roll_joint(l_elbow_flex_joint): { joint: hingeX, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/forearm_roll.h5> },
|
|
99
|
+
high_def_frame(high_def_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
100
|
+
high_def_frame_0(high_def_frame_joint): { Q: [-0.02, 0, 0], shape: box, size: [0.04, 0.04, 0.04] },
|
|
101
|
+
high_def_optical_frame_joint_origin(high_def_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
102
|
+
double_stereo_link(double_stereo_frame_joint): { mass: 0.1, inertia: [0.001, 0.001, 0.01] },
|
|
103
|
+
double_stereo_link_0(double_stereo_frame_joint): { Q: [-0.01, 0, 0.025], shape: box, size: [0.02, 0.12, 0.05] },
|
|
104
|
+
wide_stereo_frame_joint_origin(double_stereo_frame_joint): { Q: [0, 0.03, 0.0305] },
|
|
105
|
+
narrow_stereo_frame_joint_origin(double_stereo_frame_joint): { Q: [0, 0.06, 0.0305] },
|
|
106
|
+
r_forearm_roll_link(r_forearm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
107
|
+
r_forearm_cam_frame_joint_origin(r_forearm_roll_joint): { Q: [0.135, 0, 0.044, 0.679288, 0.679288, -0.196387, -0.196387] },
|
|
108
|
+
r_forearm_joint(r_forearm_roll_joint): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/forearm.h5> },
|
|
109
|
+
l_forearm_roll_link(l_forearm_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
110
|
+
l_forearm_cam_frame_joint_origin(l_forearm_roll_joint): { Q: [0.135, 0, 0.044, 0.679288, -0.679288, -0.196387, 0.196387] },
|
|
111
|
+
l_forearm_joint(l_forearm_roll_joint): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/forearm.h5> },
|
|
112
|
+
high_def_optical_frame_joint(high_def_optical_frame_joint_origin): { joint: rigid },
|
|
113
|
+
wide_stereo_frame_joint(wide_stereo_frame_joint_origin): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
114
|
+
narrow_stereo_frame_joint(narrow_stereo_frame_joint_origin): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
115
|
+
r_forearm_cam_frame_joint(r_forearm_cam_frame_joint_origin): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
116
|
+
r_forearm_link(r_forearm_joint): { mass: 2.57968, inertia: [0.00364857, 5.21588e-05, 0.000715348, 0.0150774, -1.31077e-05, 0.0165931] },
|
|
117
|
+
r_wrist_flex_joint_origin(r_forearm_joint): { Q: [0.321, 0, 0] },
|
|
118
|
+
l_forearm_cam_frame_joint(l_forearm_cam_frame_joint_origin): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
119
|
+
l_forearm_link(l_forearm_joint): { mass: 2.57968, inertia: [0.00364857, 5.21588e-05, 0.000715348, 0.0150774, -1.31077e-05, 0.0165931] },
|
|
120
|
+
l_wrist_flex_joint_origin(l_forearm_joint): { Q: [0.321, 0, 0] },
|
|
121
|
+
high_def_optical_frame(high_def_optical_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
122
|
+
high_def_optical_frame_0(high_def_optical_frame_joint): { Q: [0, 0, 0, 0.707107, 0, 0, 0.707107], shape: cylinder, size: [0.05, 0.02] },
|
|
123
|
+
wide_stereo_link(wide_stereo_frame_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
124
|
+
wide_stereo_optical_frame_joint_origin(wide_stereo_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
125
|
+
wide_stereo_gazebo_l_stereo_camera_frame_joint(wide_stereo_frame_joint): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
126
|
+
narrow_stereo_link(narrow_stereo_frame_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
127
|
+
narrow_stereo_optical_frame_joint_origin(narrow_stereo_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
128
|
+
narrow_stereo_gazebo_l_stereo_camera_frame_joint(narrow_stereo_frame_joint): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
129
|
+
r_forearm_cam_frame(r_forearm_cam_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
130
|
+
r_forearm_cam_optical_frame_joint_origin(r_forearm_cam_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
131
|
+
r_wrist_flex_joint(r_wrist_flex_joint_origin): { joint: hingeY, limits: [-2.094, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wrist_flex.h5> },
|
|
132
|
+
l_forearm_cam_frame(l_forearm_cam_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
133
|
+
l_forearm_cam_optical_frame_joint_origin(l_forearm_cam_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
134
|
+
l_wrist_flex_joint(l_wrist_flex_joint_origin): { joint: hingeY, limits: [-2.094, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wrist_flex.h5> },
|
|
135
|
+
wide_stereo_optical_frame_joint(wide_stereo_optical_frame_joint_origin): { joint: rigid },
|
|
136
|
+
wide_stereo_gazebo_l_stereo_camera_frame(wide_stereo_gazebo_l_stereo_camera_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
137
|
+
wide_stereo_gazebo_l_stereo_camera_optical_frame_joint_origin(wide_stereo_gazebo_l_stereo_camera_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
138
|
+
wide_stereo_gazebo_r_stereo_camera_frame_joint_origin(wide_stereo_gazebo_l_stereo_camera_frame_joint): { Q: [0, -0.09, 0] },
|
|
139
|
+
narrow_stereo_optical_frame_joint(narrow_stereo_optical_frame_joint_origin): { joint: rigid },
|
|
140
|
+
narrow_stereo_gazebo_l_stereo_camera_frame(narrow_stereo_gazebo_l_stereo_camera_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
141
|
+
narrow_stereo_gazebo_l_stereo_camera_optical_frame_joint_origin(narrow_stereo_gazebo_l_stereo_camera_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
142
|
+
narrow_stereo_gazebo_r_stereo_camera_frame_joint_origin(narrow_stereo_gazebo_l_stereo_camera_frame_joint): { Q: [0, -0.09, 0] },
|
|
143
|
+
r_forearm_cam_optical_frame_joint(r_forearm_cam_optical_frame_joint_origin): { joint: rigid },
|
|
144
|
+
r_wrist_flex_link(r_wrist_flex_joint): { mass: 0.61402, inertia: [0.000651657, 2.8864e-07, 3.03477e-06, 0.000198244, -2.2645e-07, 0.000644505] },
|
|
145
|
+
r_wrist_roll_joint(r_wrist_flex_joint): { joint: hingeX, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wrist_roll.h5> },
|
|
146
|
+
l_forearm_cam_optical_frame_joint(l_forearm_cam_optical_frame_joint_origin): { joint: rigid },
|
|
147
|
+
l_wrist_flex_link(l_wrist_flex_joint): { mass: 0.61402, inertia: [0.000651657, 2.8864e-07, 3.03477e-06, 0.000198244, -2.2645e-07, 0.000644505] },
|
|
148
|
+
l_wrist_roll_joint(l_wrist_flex_joint): { joint: hingeX, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/wrist_roll.h5> },
|
|
149
|
+
wide_stereo_gazebo_l_stereo_camera_optical_frame_joint(wide_stereo_gazebo_l_stereo_camera_optical_frame_joint_origin): { joint: rigid },
|
|
150
|
+
wide_stereo_gazebo_r_stereo_camera_frame_joint(wide_stereo_gazebo_r_stereo_camera_frame_joint_origin): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
151
|
+
narrow_stereo_gazebo_l_stereo_camera_optical_frame_joint(narrow_stereo_gazebo_l_stereo_camera_optical_frame_joint_origin): { joint: rigid },
|
|
152
|
+
narrow_stereo_gazebo_r_stereo_camera_frame_joint(narrow_stereo_gazebo_r_stereo_camera_frame_joint_origin): { joint: rigid, shape: box, size: [0.01, 0.01, 0.01] },
|
|
153
|
+
r_wrist_roll_link(r_wrist_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
154
|
+
r_gripper_palm_joint(r_wrist_roll_joint): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/gripper_palm.h5> },
|
|
155
|
+
l_wrist_roll_link(l_wrist_roll_joint): { mass: 0.1, inertia: [0.01, 0.01, 0.01] },
|
|
156
|
+
l_gripper_palm_joint(l_wrist_roll_joint): { joint: rigid, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/gripper_palm.h5> },
|
|
157
|
+
wide_stereo_gazebo_r_stereo_camera_frame(wide_stereo_gazebo_r_stereo_camera_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
158
|
+
wide_stereo_gazebo_r_stereo_camera_optical_frame_joint_origin(wide_stereo_gazebo_r_stereo_camera_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
159
|
+
narrow_stereo_gazebo_r_stereo_camera_frame(narrow_stereo_gazebo_r_stereo_camera_frame_joint): { mass: 0.01, inertia: [0.001, 0.001, 0.001] },
|
|
160
|
+
narrow_stereo_gazebo_r_stereo_camera_optical_frame_joint_origin(narrow_stereo_gazebo_r_stereo_camera_frame_joint): { Q: [0, 0, 0, 0.5, -0.5, -0.5, -0.5] },
|
|
161
|
+
r_gripper_palm_link(r_gripper_palm_joint): { mass: 0.58007, inertia: [0.000352239, -1.58048e-05, -9.175e-07, 0.000677413, -5.9554e-07, 0.000865633] },
|
|
162
|
+
r_gripper_led_joint_origin(r_gripper_palm_joint): { Q: [0.0513, 0, 0.0244] },
|
|
163
|
+
r_gripper_tool_joint_origin(r_gripper_palm_joint): { Q: [0.18, 0, 0] },
|
|
164
|
+
r_gripper_l_finger_joint_origin(r_gripper_palm_joint): { Q: [0.07691, 0.01, 0] },
|
|
165
|
+
r_gripper_r_finger_joint_origin(r_gripper_palm_joint): { Q: [0.07691, -0.01, 0] },
|
|
166
|
+
r_gripper_l_parallel_root_joint_origin(r_gripper_palm_joint): { Q: [0.05891, 0.031, 0] },
|
|
167
|
+
r_gripper_r_parallel_root_joint_origin(r_gripper_palm_joint): { Q: [0.05891, -0.031, 0] },
|
|
168
|
+
r_gripper_motor_accelerometer_joint(r_gripper_palm_joint): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
169
|
+
l_gripper_palm_link(l_gripper_palm_joint): { mass: 0.58007, inertia: [0.000352239, -1.58048e-05, -9.175e-07, 0.000677413, -5.9554e-07, 0.000865633] },
|
|
170
|
+
l_gripper_led_joint_origin(l_gripper_palm_joint): { Q: [0.0513, 0, 0.0244] },
|
|
171
|
+
l_gripper_tool_joint_origin(l_gripper_palm_joint): { Q: [0.18, 0, 0] },
|
|
172
|
+
l_gripper_l_finger_joint_origin(l_gripper_palm_joint): { Q: [0.07691, 0.01, 0] },
|
|
173
|
+
l_gripper_r_finger_joint_origin(l_gripper_palm_joint): { Q: [0.07691, -0.01, 0] },
|
|
174
|
+
l_gripper_l_parallel_root_joint_origin(l_gripper_palm_joint): { Q: [0.05891, 0.031, 0] },
|
|
175
|
+
l_gripper_r_parallel_root_joint_origin(l_gripper_palm_joint): { Q: [0.05891, -0.031, 0] },
|
|
176
|
+
l_gripper_motor_accelerometer_joint(l_gripper_palm_joint): { joint: rigid, shape: box, size: [0.001, 0.001, 0.001] },
|
|
177
|
+
wide_stereo_gazebo_r_stereo_camera_optical_frame_joint(wide_stereo_gazebo_r_stereo_camera_optical_frame_joint_origin): { joint: rigid },
|
|
178
|
+
narrow_stereo_gazebo_r_stereo_camera_optical_frame_joint(narrow_stereo_gazebo_r_stereo_camera_optical_frame_joint_origin): { joint: rigid },
|
|
179
|
+
r_gripper_led_joint(r_gripper_led_joint_origin): { joint: rigid },
|
|
180
|
+
r_gripper_tool_joint(r_gripper_tool_joint_origin): { joint: rigid },
|
|
181
|
+
r_gripper_l_finger_joint(r_gripper_l_finger_joint_origin): { joint: hingeZ, limits: [0, 0.548], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger.h5> },
|
|
182
|
+
r_gripper_r_finger_joint(r_gripper_r_finger_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548], mimic: r_gripper_l_finger_joint },
|
|
183
|
+
r_gripper_l_parallel_root_joint(r_gripper_l_parallel_root_joint_origin): { joint: hingeZ, limits: [0, 0.548], mimic: r_gripper_l_finger_joint },
|
|
184
|
+
r_gripper_r_parallel_root_joint(r_gripper_r_parallel_root_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548], mimic: r_gripper_l_finger_joint },
|
|
185
|
+
r_gripper_motor_accelerometer_link(r_gripper_motor_accelerometer_joint): { mass: 0.001, inertia: [0.001, 0.001, 0.001] },
|
|
186
|
+
l_gripper_led_joint(l_gripper_led_joint_origin): { joint: rigid },
|
|
187
|
+
l_gripper_tool_joint(l_gripper_tool_joint_origin): { joint: rigid },
|
|
188
|
+
l_gripper_l_finger_joint(l_gripper_l_finger_joint_origin): { joint: hingeZ, limits: [0, 0.548], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger.h5> },
|
|
189
|
+
l_gripper_r_finger_joint(l_gripper_r_finger_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548], mimic: l_gripper_l_finger_joint },
|
|
190
|
+
l_gripper_l_parallel_root_joint(l_gripper_l_parallel_root_joint_origin): { joint: hingeZ, limits: [0, 0.548], mimic: l_gripper_l_finger_joint },
|
|
191
|
+
l_gripper_r_parallel_root_joint(l_gripper_r_parallel_root_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548], mimic: l_gripper_l_finger_joint },
|
|
192
|
+
l_gripper_motor_accelerometer_link(l_gripper_motor_accelerometer_joint): { mass: 0.001, inertia: [0.001, 0.001, 0.001] },
|
|
193
|
+
r_gripper_l_finger_link(r_gripper_l_finger_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] },
|
|
194
|
+
r_gripper_l_finger_tip_joint_origin(r_gripper_l_finger_joint): { Q: [0.09137, 0.00495, 0] },
|
|
195
|
+
r_gripper_r_finger_link(r_gripper_r_finger_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] },
|
|
196
|
+
r_gripper_r_finger_link_0(r_gripper_r_finger_joint): { Q: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger.h5> },
|
|
197
|
+
r_gripper_r_finger_tip_joint_origin(r_gripper_r_finger_joint): { Q: [0.09137, -0.00495, 0] },
|
|
198
|
+
r_gripper_l_parallel_link(r_gripper_l_parallel_root_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] },
|
|
199
|
+
r_gripper_r_parallel_link(r_gripper_r_parallel_root_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] },
|
|
200
|
+
l_gripper_l_finger_link(l_gripper_l_finger_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] },
|
|
201
|
+
l_gripper_l_finger_tip_joint_origin(l_gripper_l_finger_joint): { Q: [0.09137, 0.00495, 0] },
|
|
202
|
+
l_gripper_r_finger_link(l_gripper_r_finger_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] },
|
|
203
|
+
l_gripper_r_finger_link_0(l_gripper_r_finger_joint): { Q: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger.h5> },
|
|
204
|
+
l_gripper_r_finger_tip_joint_origin(l_gripper_r_finger_joint): { Q: [0.09137, -0.00495, 0] },
|
|
205
|
+
l_gripper_l_parallel_link(l_gripper_l_parallel_root_joint): { mass: 0.17126, inertia: [7.7562e-05, 1.49095e-06, -9.83385e-06, 0.000197083, -3.06125e-06, 0.000181054] },
|
|
206
|
+
l_gripper_r_parallel_link(l_gripper_r_parallel_root_joint): { mass: 0.17389, inertia: [7.73841e-05, -2.09309e-06, -8.36228e-06, 0.000198474, 2.4611e-06, 0.00018107] },
|
|
207
|
+
r_gripper_l_finger_tip_joint(r_gripper_l_finger_tip_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548], mimic: r_gripper_l_finger_joint, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger_tip.h5> },
|
|
208
|
+
r_gripper_r_finger_tip_joint(r_gripper_r_finger_tip_joint_origin): { joint: hingeZ, limits: [0, 0.548], mimic: r_gripper_l_finger_joint },
|
|
209
|
+
l_gripper_l_finger_tip_joint(l_gripper_l_finger_tip_joint_origin): { joint: hingeZ, joint_scale: -1, limits: [0, 0.548], mimic: l_gripper_l_finger_joint, shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger_tip.h5> },
|
|
210
|
+
l_gripper_r_finger_tip_joint(l_gripper_r_finger_tip_joint_origin): { joint: hingeZ, limits: [0, 0.548], mimic: l_gripper_l_finger_joint },
|
|
211
|
+
r_gripper_l_finger_tip_link(r_gripper_l_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, 5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] },
|
|
212
|
+
r_gripper_r_finger_tip_link(r_gripper_r_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, -5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] },
|
|
213
|
+
r_gripper_r_finger_tip_link_0(r_gripper_r_finger_tip_joint): { Q: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger_tip.h5> },
|
|
214
|
+
r_gripper_joint(r_gripper_r_finger_tip_joint): { joint: transY, limits: [0, 0.09] },
|
|
215
|
+
l_gripper_l_finger_tip_link(l_gripper_l_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, 5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] },
|
|
216
|
+
l_gripper_r_finger_tip_link(l_gripper_r_finger_tip_joint): { mass: 0.04419, inertia: [8.37047e-06, -5.83632e-06, 0, 9.87067e-06, 0, 1.54177e-05] },
|
|
217
|
+
l_gripper_r_finger_tip_link_0(l_gripper_r_finger_tip_joint): { Q: [0, 0, 0, -1.03412e-13, 1, 0, 0], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/l_finger_tip.h5> },
|
|
218
|
+
l_gripper_joint(l_gripper_r_finger_tip_joint): { joint: transY, limits: [0, 0.09] }
|