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
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -10,6 +10,6 @@ shelf: { X: "t(1. 1. 0) d(120 0 0 1)" fixed }
|
|
|
10
10
|
(shelf): { shape: ssBox, color: [0, .3, .7], Q: "T t(0 0 1.5)", size: [.6, 1., .1, .02], contact }
|
|
11
11
|
(shelf): { shape: ssBox, color: [0, .3, .7], Q: "T t(0 0 1.95)", size: [.6, 1., .1, .02], contact }
|
|
12
12
|
|
|
13
|
-
target(shelf): { shape: sphere, color: [1., 0., 0.], Q: "T t(0 0 1.25)", size: [
|
|
13
|
+
target(shelf): { shape: sphere, color: [1., 0., 0.], Q: "T t(0 0 1.25)", size: [.07] }
|
|
14
14
|
|
|
15
15
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
## create standard base frame before including
|
|
2
2
|
|
|
3
3
|
panda_base: { multibody: true, multibody_gravity: false }
|
|
4
|
-
Include: <
|
|
4
|
+
Include: <panda_arm_hand_conv.yml>
|
|
5
5
|
Edit panda_link0(panda_base): {}
|
|
6
6
|
|
|
7
7
|
## simpler collision models
|
|
@@ -32,15 +32,15 @@ panda_coll7(panda_joint7): { shape: capsule, color: [1.,1.,1.,.1], size: [.1, .0
|
|
|
32
32
|
|
|
33
33
|
## zero position
|
|
34
34
|
|
|
35
|
-
Edit panda_joint1: { q: 0.0 }
|
|
36
|
-
Edit panda_joint2: { q: -.5 }
|
|
37
|
-
Edit panda_joint3: { q: 0. }
|
|
38
|
-
Edit panda_joint4: { q: -2. }
|
|
39
|
-
Edit panda_joint5: { q: -0. }
|
|
40
|
-
Edit panda_joint6: { q: 2., limits: [.5, 3.] }
|
|
41
|
-
Edit panda_joint7: { q: -.5 }
|
|
42
|
-
Edit panda_finger_joint1: { q: .04 }
|
|
43
|
-
Edit panda_finger_joint2: { q: .04 }
|
|
35
|
+
Edit panda_joint1: { q: 0.0, mj_actuator_kp: "870.", mj_joint_damping: "100." }
|
|
36
|
+
Edit panda_joint2: { q: -.5, mj_actuator_kp: "870.", mj_joint_damping: "100." }
|
|
37
|
+
Edit panda_joint3: { q: 0., mj_actuator_kp: "870.", mj_joint_damping: "100." }
|
|
38
|
+
Edit panda_joint4: { q: -2., mj_actuator_kp: "870.", mj_joint_damping: "100." }
|
|
39
|
+
Edit panda_joint5: { q: -0., mj_actuator_kp: "120.", mj_joint_damping: "10." }
|
|
40
|
+
Edit panda_joint6: { q: 2., limits: [.5, 3.], mj_actuator_kp: "120.", mj_joint_damping: "10." }
|
|
41
|
+
Edit panda_joint7: { q: -.5, mj_actuator_kp: "120.", mj_joint_damping: "10." }
|
|
42
|
+
Edit panda_finger_joint1: { q: .04, mj_actuator_kp: "500.", mj_joint_damping: "100." }
|
|
43
|
+
Edit panda_finger_joint2: { q: .04, mj_actuator_kp: "500.", mj_joint_damping: "100." }
|
|
44
44
|
|
|
45
45
|
## kill rigid hand joints
|
|
46
46
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
panda_link0: { shape: mesh, mesh: <meshes/link0.h5> },
|
|
2
|
+
panda_joint1_origin(panda_link0): { pose: [0, 0, 0.333] },
|
|
3
|
+
panda_joint1(panda_joint1_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/link1.h5> },
|
|
4
|
+
panda_joint2_origin(panda_joint1): { pose: [0.707107, -0.707107, 0, 0] },
|
|
5
|
+
panda_joint2(panda_joint2_origin): { joint: hingeZ, limits: [-1.7628, 1.7628], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/link2.h5> },
|
|
6
|
+
panda_joint3_origin(panda_joint2): { pose: [0, -0.316, 0, 0.707107, 0.707107, 0, 0] },
|
|
7
|
+
panda_joint3(panda_joint3_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link3.h5> },
|
|
8
|
+
panda_joint4_origin(panda_joint3): { pose: [0.0825, 0, 0, 0.707107, 0.707107, 0, 0] },
|
|
9
|
+
panda_joint4(panda_joint4_origin): { joint: hingeZ, limits: [-3.0718, -0.0698], shape: mesh, mesh: <meshes/link4.h5> },
|
|
10
|
+
panda_joint5_origin(panda_joint4): { pose: [-0.0825, 0.384, 0, 0.707107, -0.707107, 0, 0] },
|
|
11
|
+
panda_joint5(panda_joint5_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link5.h5> },
|
|
12
|
+
panda_joint6_origin(panda_joint5): { pose: [0.707107, 0.707107, 0, 0] },
|
|
13
|
+
panda_joint6(panda_joint6_origin): { joint: hingeZ, limits: [-0.0175, 3.7525], shape: mesh, mesh: <meshes/link6.h5> },
|
|
14
|
+
panda_joint7_origin(panda_joint6): { pose: [0.088, 0, 0, 0.707107, 0.707107, 0, 0] },
|
|
15
|
+
panda_joint7(panda_joint7_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link7.h5> },
|
|
16
|
+
panda_joint8_origin(panda_joint7): { pose: [0, 0, 0.107] },
|
|
17
|
+
panda_joint8(panda_joint8_origin): { joint: rigid },
|
|
18
|
+
panda_hand_joint_origin(panda_joint8): { pose: [0.92388, 0, 0, -0.382683] },
|
|
19
|
+
panda_hand_joint(panda_hand_joint_origin): { joint: rigid, shape: mesh, mesh: <meshes/hand.h5> },
|
|
20
|
+
panda_finger_joint1_origin(panda_hand_joint): { pose: [0, 0, 0.0584] },
|
|
21
|
+
panda_finger_joint2_origin(panda_hand_joint): { pose: [0, 0, 0.0584] },
|
|
22
|
+
panda_finger_joint1(panda_finger_joint1_origin): { joint: transY, limits: [0, 0.04], shape: mesh, mesh: <meshes/finger.h5> },
|
|
23
|
+
panda_finger_joint2(panda_finger_joint2_origin): { joint: transY, joint_scale: -1, limits: [0, 0.04], mimic: "panda_finger_joint1" },
|
|
24
|
+
panda_rightfinger_0(panda_finger_joint2): { pose: [-1.03412e-13, 0, 0, 1], shape: mesh, mesh: <meshes/finger.h5> }
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
panda_link0: {shape: mesh, mesh: <meshes/link0.h5>}
|
|
2
|
+
panda_joint1_origin (panda_link0): {pose: [0.0, 0.0, 0.333]}
|
|
3
|
+
panda_joint1 (panda_joint1_origin): {joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, color: [1.0, 1.0, 1.0, 1.0], mesh: <meshes/link1.h5>}
|
|
4
|
+
panda_joint2_origin (panda_joint1): {pose: [0.7071067811882787, -0.7071067811848163, 0.0, 0.0]}
|
|
5
|
+
panda_joint2 (panda_joint2_origin): {joint: hingeZ, limits: [-1.7628, 1.7628], shape: mesh, color: [1.0, 1.0, 1.0, 1.0], mesh: <meshes/link2.h5>}
|
|
6
|
+
panda_joint3_origin (panda_joint2): {pose: [0.0, -0.316, 0.0, 0.7071067811882787, 0.7071067811848163, 0.0, 0.0]}
|
|
7
|
+
panda_joint3 (panda_joint3_origin): {joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link3.h5>}
|
|
8
|
+
panda_joint4_origin (panda_joint3): {pose: [0.0825, 0.0, 0.0, 0.7071067811882787, 0.7071067811848163, 0.0, 0.0]}
|
|
9
|
+
panda_joint4 (panda_joint4_origin): {joint: hingeZ, limits: [-3.0718, -0.0698], shape: mesh, mesh: <meshes/link4.h5>}
|
|
10
|
+
panda_joint5_origin (panda_joint4): {pose: [-0.0825, 0.384, 0.0, 0.7071067811882787, -0.7071067811848163, 0.0, 0.0]}
|
|
11
|
+
panda_joint5 (panda_joint5_origin): {joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link5.h5>}
|
|
12
|
+
panda_joint6_origin (panda_joint5): {pose: [0.7071067811882787, 0.7071067811848163, 0.0, 0.0]}
|
|
13
|
+
panda_joint6 (panda_joint6_origin): {joint: hingeZ, limits: [-0.0175, 3.7525], shape: mesh, mesh: <meshes/link6.h5>}
|
|
14
|
+
panda_joint7_origin (panda_joint6): {pose: [0.088, 0.0, 0.0, 0.7071067811882787, 0.7071067811848163, 0.0, 0.0]}
|
|
15
|
+
panda_joint7 (panda_joint7_origin): {joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link7.h5>}
|
|
16
|
+
panda_joint8_origin (panda_joint7): {pose: [0.0, 0.0, 0.107]}
|
|
17
|
+
panda_joint8 (panda_joint8_origin): {joint: rigid}
|
|
18
|
+
panda_hand_joint_origin (panda_joint8): {pose: [0.9238795325113726, 0.0, 0.0, -0.38268343236488267]}
|
|
19
|
+
panda_hand_joint (panda_hand_joint_origin): {joint: rigid, shape: mesh, mesh: <meshes/hand.h5>}
|
|
20
|
+
panda_finger_joint1_origin (panda_hand_joint): {pose: [0.0, 0.0, 0.0584]}
|
|
21
|
+
panda_finger_joint2_origin (panda_hand_joint): {pose: [0.0, 0.0, 0.0584]}
|
|
22
|
+
panda_finger_joint1 (panda_finger_joint1_origin): {joint: transY, limits: [0.0, 0.04], shape: mesh, mesh: <meshes/finger.h5>}
|
|
23
|
+
panda_finger_joint2 (panda_finger_joint2_origin): {joint: transY, joint_scale: -1.0, limits: [0.0, 0.04], mimic: panda_finger_joint1}
|
|
24
|
+
panda_rightfinger_0 (panda_finger_joint2): {pose: [-1.0341155355510722e-13, 0.0, 0.0, 1.0], shape: mesh, mesh: <meshes/finger.h5>}
|
|
@@ -1,45 +1,21 @@
|
|
|
1
|
-
panda_link0: {
|
|
2
|
-
|
|
3
|
-
panda_joint1_origin
|
|
4
|
-
panda_joint1
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
panda_link5_0(panda_link5): { shape: mesh, mesh: <franka_description/meshes/visual/link5.ply>, mass: 1., visual: True }
|
|
23
|
-
panda_joint6_origin(panda_link5): { rel: [0, 0, 0, 0.707107, 0.707107, 0, 0] }
|
|
24
|
-
panda_joint6(panda_joint6_origin): { joint: hingeZ, limits: [-0.0175, 3.7525, 2.61, -1, 12], ctrl_limits: [2.61, -1, 12] }
|
|
25
|
-
panda_link6(panda_joint6): { }
|
|
26
|
-
panda_link6_0(panda_link6): { shape: mesh, mesh: <franka_description/meshes/visual/link6.ply>, mass: 1., visual: True }
|
|
27
|
-
panda_joint7_origin(panda_link6): { rel: [0.088, 0, 0, 0.707107, 0.707107, 0, 0] }
|
|
28
|
-
panda_joint7(panda_joint7_origin): { joint: hingeZ, limits: [-2.8973, 2.8973, 2.61, -1, 12], ctrl_limits: [2.61, -1, 12] }
|
|
29
|
-
panda_link7(panda_joint7): { }
|
|
30
|
-
panda_link7_0(panda_link7): { shape: mesh, mesh: <franka_description/meshes/visual/link7.ply>, mass: 1., visual: True }
|
|
31
|
-
panda_joint8_origin(panda_link7): { rel: [0, 0, 0.107, 1, 0, 0, 0] }
|
|
32
|
-
panda_joint8(panda_joint8_origin): { joint: rigid }
|
|
33
|
-
panda_link8(panda_joint8): { }
|
|
34
|
-
panda_hand_joint_origin(panda_link8): { rel: [0, 0, 0, 0.92388, 0, 0, -0.382683] }
|
|
35
|
-
panda_hand_joint(panda_hand_joint_origin): { joint: rigid }
|
|
36
|
-
panda_hand(panda_hand_joint): { }
|
|
37
|
-
panda_hand_0(panda_hand): { shape: mesh, mesh: <franka_description/meshes/visual/hand.ply>, mass: .1, visual: True }
|
|
38
|
-
panda_finger_joint1_origin(panda_hand): { Q: [0, 0, 0.0584, 1, 0, 0, 0] }
|
|
39
|
-
panda_finger_joint2_origin(panda_hand): { Q: [0, 0, 0.0584, 1, 0, 0, 0] }
|
|
40
|
-
panda_finger_joint1(panda_finger_joint1_origin): { joint: transY, limits: [0, 0.04, 0.2, -1, 20], ctrl_limits: [0.2, -1, 20] }
|
|
41
|
-
panda_finger_joint2(panda_finger_joint2_origin): { joint: transY, joint_scale: -1, limits: [0, 0.04, 0.2, -1, 20], mimic: "panda_finger_joint1", ctrl_limits: [0.2, -1, 20] }
|
|
42
|
-
panda_leftfinger(panda_finger_joint1): { }
|
|
43
|
-
panda_rightfinger(panda_finger_joint2): { }
|
|
44
|
-
panda_leftfinger_0(panda_leftfinger): { shape: mesh, mesh: <franka_description/meshes/visual/finger.ply>, mass: .05, visual: True }
|
|
45
|
-
panda_rightfinger_0(panda_rightfinger): { Q: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, mesh: <franka_description/meshes/visual/finger.ply>, mass: .05, visual: True }
|
|
1
|
+
panda_link0: { shape: mesh, mesh: <meshes/link0.h5> },
|
|
2
|
+
panda_joint1_origin(panda_link0): { Q: [0, 0, 0.333] },
|
|
3
|
+
panda_joint1(panda_joint1_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/link1.h5>, mass: 0.54041, inertia: [0.00456315, -4.84504e-08, 2.96537e-08, 0.00410729, 0.000986596, 0.00188739] },
|
|
4
|
+
panda_joint2_origin(panda_joint1): { Q: [0, 0, 0, 0.707107, -0.707107, 0, 0] },
|
|
5
|
+
panda_joint2(panda_joint2_origin): { joint: hingeZ, limits: [-1.7628, 1.7628], shape: mesh, color: [1, 1, 1, 1], mesh: <meshes/link2.h5>, mass: 0.5439, inertia: [0.00464633, 9.63904e-08, 7.04706e-08, 0.00190105, -0.0010021, 0.00418737] },
|
|
6
|
+
panda_joint3_origin(panda_joint2): { Q: [0, -0.316, 0, 0.707107, 0.707107, 0, 0] },
|
|
7
|
+
panda_joint3(panda_joint3_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link3.h5>, mass: 0.546829, inertia: [0.00249312, -0.00055264, -0.000819764, 0.0029029, -0.000540692, 0.00252334] },
|
|
8
|
+
panda_joint4_origin(panda_joint3): { Q: [0.0825, 0, 0, 0.707107, 0.707107, 0, 0] },
|
|
9
|
+
panda_joint4(panda_joint4_origin): { joint: hingeZ, limits: [-3.0718, -0.0698], shape: mesh, mesh: <meshes/link4.h5>, mass: 0.552034, inertia: [0.0025711, 0.000847668, -0.000560078, 0.0025553, 0.000559278, 0.0029871] },
|
|
10
|
+
panda_joint5_origin(panda_joint4): { Q: [-0.0825, 0.384, 0, 0.707107, -0.707107, 0, 0] },
|
|
11
|
+
panda_joint5(panda_joint5_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link5.h5>, mass: 0.660947, inertia: [0.00852046, 2.33154e-06, -4.3629e-07, 0.00765386, -0.00177651, 0.00209357] },
|
|
12
|
+
panda_joint6_origin(panda_joint5): { Q: [0, 0, 0, 0.707107, 0.707107, 0, 0] },
|
|
13
|
+
panda_joint6(panda_joint6_origin): { joint: hingeZ, limits: [-0.0175, 3.7525], shape: mesh, mesh: <meshes/link6.h5>, mass: 0.499248, inertia: [0.00118729, -3.51299e-05, 0.000161884, 0.00164794, 7.03151e-06, 0.00209417] },
|
|
14
|
+
panda_joint7_origin(panda_joint6): { Q: [0.088, 0, 0, 0.707107, 0.707107, 0, 0] },
|
|
15
|
+
panda_joint7(panda_joint7_origin): { joint: hingeZ, limits: [-2.8973, 2.8973], shape: mesh, mesh: <meshes/link7.h5>, mass: 0.508784, com: [0.00479185, 0.00293889, 0.110289], inertia: [0.00140377, -0.000585627, 3.48228e-05, 0.0013959, 5.49295e-05, 0.0015899] },
|
|
16
|
+
panda_hand_0(panda_joint7): { Q: [0, 0, 0.107, 0.92388, 0, 0, -0.382683], shape: mesh, mesh: <meshes/hand.h5> },
|
|
17
|
+
panda_finger_joint1_origin(panda_joint7): { Q: [0, 0, 0.1654, 0.92388, 0, 0, -0.382683] },
|
|
18
|
+
panda_finger_joint2_origin(panda_joint7): { Q: [0, 0, 0.1654, 0.92388, 0, 0, -0.382683] },
|
|
19
|
+
panda_finger_joint1(panda_finger_joint1_origin): { joint: transY, limits: [0, 0.04], shape: mesh, mesh: <meshes/finger.h5>, mass: 0.0339598, inertia: [1.28954e-05, 3.94979e-10, 2.1346e-10, 1.25171e-05, 2.56044e-06, 3.22803e-06] },
|
|
20
|
+
panda_finger_joint2(panda_finger_joint2_origin): { joint: transY, joint_scale: -1, limits: [0, 0.04], mimic: "panda_finger_joint1", mass: 0.0339598, com: [-7.21322e-07, 0.0122672, 0.0270327], inertia: [1.28954e-05, 3.94979e-10, -2.1346e-10, 1.25171e-05, -2.56044e-06, 3.22803e-06] },
|
|
21
|
+
panda_rightfinger_0(panda_finger_joint2): { Q: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, mesh: <meshes/finger.h5> }
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
panda_hand: { }
|
|
2
|
-
panda_hand_0(panda_hand): { shape: mesh, mesh: <
|
|
2
|
+
panda_hand_0(panda_hand): { shape: mesh, mesh: <meshes/hand.h5>, visual: True }
|
|
3
3
|
panda_finger_joint1_origin(panda_hand): { Q: [0, 0, 0.0584, 1, 0, 0, 0] }
|
|
4
4
|
panda_finger_joint2_origin(panda_hand): { Q: [0, 0, 0.0584, 1, 0, 0, 0] }
|
|
5
|
-
panda_finger_joint1(panda_finger_joint1_origin): { joint: transY, limits: [0, 0.04, 0.2, -1, 20], ctrl_limits: [0.2, -1, 20] }
|
|
6
|
-
panda_finger_joint2(panda_finger_joint2_origin): { joint: transY, joint_scale: -1, limits: [0, 0.04, 0.2, -1, 20], mimic: "panda_finger_joint1", ctrl_limits: [0.2, -1, 20] }
|
|
7
|
-
panda_leftfinger(panda_finger_joint1): {
|
|
8
|
-
panda_rightfinger(panda_finger_joint2): {
|
|
9
|
-
panda_leftfinger_0(panda_leftfinger): { shape: mesh, mesh: <franka_description/meshes/visual/finger.ply>, visual: True }
|
|
10
|
-
panda_rightfinger_0(panda_rightfinger): { Q: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, mesh: <franka_description/meshes/visual/finger.ply>, visual: True }
|
|
5
|
+
panda_finger_joint1(panda_finger_joint1_origin): { joint: transY, limits: [0, 0.04, 0.2, -1, 20], ctrl_limits: [0.2, -1, 20], motorKp=100, motorKd=10 }
|
|
6
|
+
panda_finger_joint2(panda_finger_joint2_origin): { joint: transY, joint_scale: -1, limits: [0, 0.04, 0.2, -1, 20], mimic: "panda_finger_joint1", ctrl_limits: [0.2, -1, 20], motorKp=100, motorKd=10 }
|
|
7
|
+
panda_leftfinger(panda_finger_joint1): { shape: mesh, mesh: <meshes/finger.h5>, visual: True, mass: .05 }
|
|
8
|
+
panda_rightfinger(panda_finger_joint2): { Q: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, mesh: <meshes/finger.h5>, visual: True, mass: .05 }
|
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
Include: <panda_clean.g>
|
|
2
2
|
|
|
3
|
-
Delete
|
|
4
|
-
Delete
|
|
5
|
-
Delete
|
|
6
|
-
Delete panda_link3_0:
|
|
7
|
-
Delete panda_link4_0:
|
|
8
|
-
Delete panda_link5_0:
|
|
9
|
-
Delete panda_link6_0:
|
|
10
|
-
Delete panda_link7_0:
|
|
11
|
-
Delete panda_hand_0:
|
|
12
|
-
Delete panda_leftfinger_0:
|
|
13
|
-
Delete panda_rightfinger_0:
|
|
3
|
+
Delete: panda_hand_0
|
|
4
|
+
#Delete: panda_leftfinger_0
|
|
5
|
+
Delete: panda_rightfinger_0
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
world: {}
|
|
2
|
-
worldTranslationRotation (world): { joint: transXYPhi, Q: "d(90 0 0 1)", gains: [1, 1], limits: [-10, -10, -6, 10, 10, 6],
|
|
2
|
+
worldTranslationRotation (world): { joint: transXYPhi, Q: "d(90 0 0 1)", gains: [1, 1], limits: [-10, -10, -6, 10, 10, 6], ctrl_H: 10, base }
|
|
3
3
|
|
|
4
|
-
Include: <
|
|
4
|
+
Include: <pr2_conv.g>
|
|
5
5
|
|
|
6
6
|
Edit base_footprint (worldTranslationRotation): { Q: [0, 0, .05] }
|
|
7
7
|
|
|
8
8
|
#alternative collision shapes
|
|
9
9
|
coll_base (base_footprint): { shape: ssBox, Q: [0, 0, 0.12], size: [0.7, 0.7, 0.36, 0.1], contact: -2, coll_pr2, color: [1.,1.,1.,.2] }
|
|
10
10
|
coll_torso (base_footprint): { shape: ssBox, Q: [-0.13, 0, 0.6], size: [0.45, 0.7, 1.1, 0.1], contact: -2, coll_pr2, color: [1.,1.,1.,.2] }
|
|
11
|
-
coll_arm_r (r_upper_arm_roll_joint): { shape: ssBox, Q: [0.221337, 0, 0], size: [0.55, 0.2, 0.2, 0.1], contact: -
|
|
12
|
-
coll_wrist_r (r_forearm_roll_joint): { shape: ssBox, Q: [0.21, 0, 0, 0.999391, 0, 0.0348995, 0], size: [0.35, 0.14, 0.14, 0.07], contact: -
|
|
13
|
-
coll_hand_r (r_wrist_roll_joint): { shape: ssBox, Q: [0.12, 0, 0], size: [0.16, 0.12, 0.06, 0.025], contact: -
|
|
14
|
-
coll_arm_l (l_upper_arm_roll_joint): { shape: ssBox, Q: [0.221337, 0, 0], size: [0.55, 0.2, 0.2, 0.1], contact: -
|
|
15
|
-
coll_wrist_l (l_forearm_roll_joint): { shape: ssBox, Q: [0.21, 0, 0, 0.999391, 0, 0.0348995, 0], size: [0.35, 0.14, 0.14, 0.07], contact: -
|
|
16
|
-
coll_hand_l (l_wrist_roll_joint): { shape: ssBox, Q: [0.12, 0, 0], size: [0.16, 0.12, 0.06, 0.025], contact: -
|
|
11
|
+
coll_arm_r (r_upper_arm_roll_joint): { shape: ssBox, Q: [0.221337, 0, 0], size: [0.55, 0.2, 0.2, 0.1], contact: -5, coll_pr2, color: [1.,1.,1.,.2] }
|
|
12
|
+
coll_wrist_r (r_forearm_roll_joint): { shape: ssBox, Q: [0.21, 0, 0, 0.999391, 0, 0.0348995, 0], size: [0.35, 0.14, 0.14, 0.07], contact: -3, coll_pr2, color: [1.,1.,1.,.2] }
|
|
13
|
+
coll_hand_r (r_wrist_roll_joint): { shape: ssBox, Q: [0.12, 0, 0], size: [0.16, 0.12, 0.06, 0.025], contact: -3, coll_pr2, color: [1.,1.,1.,.2] }
|
|
14
|
+
coll_arm_l (l_upper_arm_roll_joint): { shape: ssBox, Q: [0.221337, 0, 0], size: [0.55, 0.2, 0.2, 0.1], contact: -5, coll_pr2, color: [1.,1.,1.,.2] }
|
|
15
|
+
coll_wrist_l (l_forearm_roll_joint): { shape: ssBox, Q: [0.21, 0, 0, 0.999391, 0, 0.0348995, 0], size: [0.35, 0.14, 0.14, 0.07], contact: -3, coll_pr2, color: [1.,1.,1.,.2] }
|
|
16
|
+
coll_hand_l (l_wrist_roll_joint): { shape: ssBox, Q: [0.12, 0, 0], size: [0.16, 0.12, 0.06, 0.025], contact: -3, coll_pr2, color: [1.,1.,1.,.2] }
|
|
17
17
|
|
|
18
18
|
Edit fl_caster_rotation_joint: { joint: none }
|
|
19
19
|
Edit fr_caster_rotation_joint: { joint: none }
|
|
@@ -28,10 +28,10 @@ Edit bl_caster_r_wheel_joint: { joint: none }
|
|
|
28
28
|
Edit br_caster_l_wheel_joint: { joint: none }
|
|
29
29
|
Edit br_caster_r_wheel_joint: { joint: none }
|
|
30
30
|
|
|
31
|
-
#Delete l_gripper_r_parallel_link_1
|
|
32
|
-
#Delete l_gripper_l_parallel_link_1
|
|
33
|
-
#Delete r_gripper_r_parallel_link_1
|
|
34
|
-
#Delete r_gripper_l_parallel_link_1
|
|
31
|
+
#Delete: l_gripper_r_parallel_link_1
|
|
32
|
+
#Delete: l_gripper_l_parallel_link_1
|
|
33
|
+
#Delete: r_gripper_r_parallel_link_1
|
|
34
|
+
#Delete: r_gripper_l_parallel_link_1
|
|
35
35
|
|
|
36
36
|
Edit r_gripper_l_finger_joint: { q: .1 }
|
|
37
37
|
Edit l_gripper_l_finger_joint: { q: .1 }
|