robotic 0.3.0__cp310-cp310-manylinux2014_x86_64.whl → 0.3.1.dev0__cp310-cp310-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.
Potentially problematic release.
This version of robotic might be problematic. Click here for more details.
- robotic/DataGen.pyi +5 -1
- robotic/__init__.py +3 -3
- robotic/_robotic.pyi +12 -2
- robotic/_robotic.so +0 -0
- robotic/include/rai/Core/graph.h +1 -0
- robotic/include/rai/DataGen/shapenetGrasps.h +3 -2
- robotic/include/rai/Kin/simulation.h +1 -0
- robotic/librai.so +0 -0
- robotic/meshTool +0 -0
- robotic/mujoco-import.py +5 -7
- robotic/rai-robotModels/g1/g1_29dof_conv.yml +64 -0
- robotic/rai-robotModels/panda/panda_gripper.g +4 -6
- robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml +19 -0
- robotic/rai-robotModels/scenarios/pandaFloatingGripper.g +1 -1
- robotic/ry-test +2 -1
- robotic/src/__init__.py +0 -0
- robotic/src/mujoco_io.py +3 -3
- robotic/src/{config_urdf.py → urdf_io.py} +0 -0
- robotic/src/yaml_helper.py +0 -0
- robotic/version.py +1 -1
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-test +2 -1
- {robotic-0.3.0.dist-info → robotic-0.3.1.dev0.dist-info}/METADATA +13 -13
- {robotic-0.3.0.dist-info → robotic-0.3.1.dev0.dist-info}/RECORD +31 -28
- {robotic-0.3.0.dist-info → robotic-0.3.1.dev0.dist-info}/WHEEL +1 -1
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-bot +0 -0
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-h5info +0 -0
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-info +0 -0
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-meshTool +0 -0
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-urdfConvert.py +0 -0
- {robotic-0.3.0.data → robotic-0.3.1.dev0.data}/scripts/ry-view +0 -0
- {robotic-0.3.0.dist-info → robotic-0.3.1.dev0.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.3.0.dist-info → robotic-0.3.1.dev0.dist-info}/top_level.txt +0 -0
robotic/DataGen.pyi
CHANGED
|
@@ -52,6 +52,10 @@ class ShapenetGrasps:
|
|
|
52
52
|
"""
|
|
53
53
|
(direct interface) return pcl of loaded object
|
|
54
54
|
"""
|
|
55
|
+
def getPointNormals(self) -> arr:
|
|
56
|
+
"""
|
|
57
|
+
(direct interface) return point normals of the pcl of loaded object
|
|
58
|
+
"""
|
|
55
59
|
def getSamples(self, nSamples: int) -> tuple[arr, uintA, arr]:
|
|
56
60
|
"""
|
|
57
61
|
(batch interface) return three arrays: samples X, contexts Z, scores S (each row are scores for one sample - see evaluateSamples)
|
|
@@ -64,7 +68,7 @@ class ShapenetGrasps:
|
|
|
64
68
|
"""
|
|
65
69
|
(direct interface) return (relative) pose of random sampled grasp candidate
|
|
66
70
|
"""
|
|
67
|
-
def setGraspPose(self, pose: arr, objPts: str = '
|
|
71
|
+
def setGraspPose(self, pose: arr, objPts: str = 'obj0_pts') -> None:
|
|
68
72
|
"""
|
|
69
73
|
(direct interface) set (relative) pose of grasp candidate
|
|
70
74
|
"""
|
robotic/__init__.py
CHANGED
|
@@ -9,9 +9,9 @@ from .version import __version__
|
|
|
9
9
|
|
|
10
10
|
from .manipulation import KOMO_ManipulationHelper
|
|
11
11
|
|
|
12
|
-
from .src.mujoco_io import MujocoLoader
|
|
13
|
-
from .src.config_urdf import URDFLoader
|
|
14
|
-
from .src.mesh_helper import MeshHelper
|
|
12
|
+
#from .src.mujoco_io import MujocoLoader
|
|
13
|
+
#from .src.config_urdf import URDFLoader
|
|
14
|
+
#from .src.mesh_helper import MeshHelper
|
|
15
15
|
|
|
16
16
|
import os
|
|
17
17
|
setRaiPath( os.path.abspath(os.path.dirname(__file__)) + '/rai-robotModels' )
|
robotic/_robotic.pyi
CHANGED
|
@@ -792,6 +792,10 @@ class Frame:
|
|
|
792
792
|
...
|
|
793
793
|
def setJointState(self, arg0: arr) -> Frame:
|
|
794
794
|
...
|
|
795
|
+
def setLines(self, verts: arr, colors: ... = ...) -> Frame:
|
|
796
|
+
"""
|
|
797
|
+
attach lines as shape
|
|
798
|
+
"""
|
|
795
799
|
def setMass(self, mass: float, inertiaMatrix: arr = ...) -> Frame:
|
|
796
800
|
...
|
|
797
801
|
def setMesh(self, vertices: arr, triangles: uintA, colors: ... = ..., cvxParts: uintA = ...) -> Frame:
|
|
@@ -1477,13 +1481,17 @@ class Quaternion:
|
|
|
1477
1481
|
"""
|
|
1478
1482
|
non-initialized
|
|
1479
1483
|
"""
|
|
1484
|
+
def __mul__(self, arg0: Quaternion) -> Quaternion:
|
|
1485
|
+
"""
|
|
1486
|
+
concatenation (quaternion multiplication) of two transforms
|
|
1487
|
+
"""
|
|
1480
1488
|
def append(self, q: Quaternion) -> None:
|
|
1481
1489
|
...
|
|
1482
1490
|
def applyOnPointArray(self, pts: arr) -> None:
|
|
1483
1491
|
...
|
|
1484
|
-
def
|
|
1492
|
+
def asArr(self) -> arr:
|
|
1485
1493
|
...
|
|
1486
|
-
def
|
|
1494
|
+
def flipSign(self) -> None:
|
|
1487
1495
|
...
|
|
1488
1496
|
def getJacobian(self) -> arr:
|
|
1489
1497
|
...
|
|
@@ -1843,6 +1851,8 @@ class Simulation:
|
|
|
1843
1851
|
"""
|
|
1844
1852
|
reset the spline reference, i.e., clear the current spline buffer and initialize it to constant spline at current position (to which setSplineRef can append)
|
|
1845
1853
|
"""
|
|
1854
|
+
def resetTime(self) -> None:
|
|
1855
|
+
...
|
|
1846
1856
|
def selectSensor(self, sensorName: str) -> ...:
|
|
1847
1857
|
...
|
|
1848
1858
|
def setSplineRef(self, path: arr, times: arr, append: bool = True) -> None:
|
robotic/_robotic.so
CHANGED
|
Binary file
|
robotic/include/rai/Core/graph.h
CHANGED
|
@@ -140,6 +140,7 @@ struct Graph : NodeL {
|
|
|
140
140
|
|
|
141
141
|
//
|
|
142
142
|
template<class T> Node* set(const char* key, const T& x){ Node* n = findNodeOfType(typeid(T), key); if(n) n->as<T>()=x; else n=add<T>(key, x); return n; }
|
|
143
|
+
Node* set(Node* _n){ Node* n = findNodeOfType(_n->type, _n->key); if(n) n->copyValue(_n); else n=_n->newClone(*this); return n; }
|
|
143
144
|
|
|
144
145
|
//-- get nodes
|
|
145
146
|
BracketOp operator[](const char* key); ///< returns nullptr if not found
|
|
@@ -32,8 +32,9 @@ struct ShapenetGrasps{
|
|
|
32
32
|
bool loadObject(uint shape, bool rndOrientation=true);
|
|
33
33
|
void resetObjectPose(int idx=0, bool rndOrientation=true);
|
|
34
34
|
arr getPointCloud();
|
|
35
|
+
arr getPointNormals();
|
|
35
36
|
arr sampleGraspPose();
|
|
36
|
-
void setGraspPose(const arr& pose, const char* objPts="
|
|
37
|
+
void setGraspPose(const arr& pose, const char* objPts="obj0_pts");
|
|
37
38
|
arr evaluateGrasp();
|
|
38
39
|
|
|
39
40
|
|
|
@@ -42,7 +43,7 @@ struct ShapenetGrasps{
|
|
|
42
43
|
|
|
43
44
|
private:
|
|
44
45
|
void clearScene();
|
|
45
|
-
bool addSceneObject(const char* file, int idx, bool rndOri=true
|
|
46
|
+
bool addSceneObject(const char* file, int idx, bool rndOri=true);
|
|
46
47
|
};
|
|
47
48
|
|
|
48
49
|
arr sampleGraspCandidate(rai::Configuration& C, const char *ptsFrame, const char* refFrame, double pregraspNormalSdv=.2, int verbose=1);
|
|
@@ -92,6 +92,7 @@ struct Simulation {
|
|
|
92
92
|
//== management interface
|
|
93
93
|
|
|
94
94
|
//-- store and reset the state of the simulation
|
|
95
|
+
void resetTime();
|
|
95
96
|
void getState(arr& frameState, arr& q=NoArr, arr& frameVelocities=NoArr, arr& qDot=NoArr);
|
|
96
97
|
void setState(const arr& frameState, const arr& q=NoArr, const arr& frameVelocities=NoArr, const arr& qDot=NoArr);
|
|
97
98
|
void pushConfigurationToSimulator(const arr& frameVelocities=NoArr, const arr& qDot=NoArr);
|
robotic/librai.so
CHANGED
|
Binary file
|
robotic/meshTool
CHANGED
|
Binary file
|
robotic/mujoco-import.py
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
1
|
+
import robotic as ry
|
|
2
|
+
from robotic.src.mujoco_io import *
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
file = pysite+"/gymnasium_robotics/envs/assets/kitchen_franka/kitchen_assets/kitchen_env_model.xml"
|
|
6
|
-
# file = '/home/mtoussai/git/MuJoCo2Rai/kitchen_dataset/RUSTIC_ONE_WALL_SMALL.xml'
|
|
4
|
+
file = '../../rai-robotModels/kitchens/models/MEDITERRANEAN_ONE_WALL_SMALL.xml'
|
|
7
5
|
|
|
8
6
|
print('=====================', file)
|
|
9
|
-
|
|
10
|
-
C.view(True)
|
|
7
|
+
M = MujocoLoader(file, visualsOnly=True)
|
|
8
|
+
M.C.view(True)
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
pelvis: {shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/pelvis.h5>, mass: 3.814, inertia: [0.010549099999999999, 0.0, 2.1e-06, 0.009309, 0.0, 0.0079185]}
|
|
2
|
+
left_hip_pitch_joint_origin (pelvis): {pose: [0.0, 0.064452, -0.1027]}
|
|
3
|
+
right_hip_pitch_joint_origin (pelvis): {pose: [0.0, -0.064452, -0.1027]}
|
|
4
|
+
waist_yaw_joint (pelvis): {joint: hingeZ, limits: [-2.618, 2.618], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/waist_yaw_link.h5>, mass: 0.244, inertia: [9.9587e-05, -1.833e-06, -1.2617e-05, 0.00012411, -1.18e-07, 0.00015586]}
|
|
5
|
+
pelvis_contour_link_0 (pelvis): {shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/pelvis_contour_link.h5>}
|
|
6
|
+
left_hip_pitch_joint (left_hip_pitch_joint_origin): {joint: hingeY, limits: [-2.5307, 2.8798], shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/left_hip_pitch_link.h5>, mass: 1.35, inertia: [0.001811, 3.68e-05, -3.44e-05, 0.0014193, 0.000171, 0.0012812]}
|
|
7
|
+
right_hip_pitch_joint (right_hip_pitch_joint_origin): {joint: hingeY, limits: [-2.5307, 2.8798], shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/right_hip_pitch_link.h5>, mass: 1.35, inertia: [0.001811, -3.68e-05, -3.44e-05, 0.0014193, -0.000171, 0.0012812]}
|
|
8
|
+
waist_roll_joint_origin (waist_yaw_joint): {pose: [-0.0039635, 0.0, 0.035]}
|
|
9
|
+
left_hip_roll_joint_origin (left_hip_pitch_joint): {pose: [0.0, 0.052, -0.030465, 0.9961786849744957, 0.0, -0.08733858026373247, 0.0]}
|
|
10
|
+
right_hip_roll_joint_origin (right_hip_pitch_joint): {pose: [0.0, -0.052, -0.030465, 0.9961786849744957, 0.0, -0.08733858026373247, 0.0]}
|
|
11
|
+
waist_roll_joint (waist_roll_joint_origin): {joint: hingeX, limits: [-0.52, 0.52], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/waist_roll_link.h5>, mass: 0.047, inertia: [7.515e-06, 0.0, 0.0, 6.398e-06, 9.9e-08, 3.988e-06]}
|
|
12
|
+
left_hip_roll_joint (left_hip_roll_joint_origin): {joint: hingeX, limits: [-0.5236, 2.9671], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_hip_roll_link.h5>, mass: 1.52, inertia: [0.0023773, -3.8e-06, -0.0003908, 0.0024123, 1.84e-05, 0.0016595]}
|
|
13
|
+
right_hip_roll_joint (right_hip_roll_joint_origin): {joint: hingeX, limits: [-2.9671, 0.5236], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_hip_roll_link.h5>, mass: 1.52, inertia: [0.0023773, 3.8e-06, -0.0003908, 0.0024123, -1.84e-05, 0.0016595]}
|
|
14
|
+
waist_pitch_joint_origin (waist_roll_joint): {pose: [0.0, 0.0, 0.019]}
|
|
15
|
+
left_hip_yaw_joint_origin (left_hip_roll_joint): {pose: [0.025001, 0.0, -0.12412]}
|
|
16
|
+
right_hip_yaw_joint_origin (right_hip_roll_joint): {pose: [0.025001, 0.0, -0.12412]}
|
|
17
|
+
waist_pitch_joint (waist_pitch_joint_origin): {joint: hingeY, limits: [-0.52, 0.52], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/torso_link.h5>, mass: 9.599999999999998, com: [0.00042855343750000007, 0.0, -0.005838750000000002], inertia: [0.072459751385, -8.851300000000001e-05, -0.0016085661752787497, 0.060434677554607075, 8.3173e-05, 0.032630779169607084]}
|
|
18
|
+
left_hip_yaw_joint (left_hip_yaw_joint_origin): {joint: hingeZ, limits: [-2.7576, 2.7576], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_hip_yaw_link.h5>, mass: 1.702, inertia: [0.0057774, -0.0005411, -0.0023948, 0.0076124, -0.0007072, 0.003149]}
|
|
19
|
+
right_hip_yaw_joint (right_hip_yaw_joint_origin): {joint: hingeZ, limits: [-2.7576, 2.7576], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_hip_yaw_link.h5>, mass: 1.702, inertia: [0.0057774, 0.0005411, -0.0023948, 0.0076124, 0.0007072, 0.003149]}
|
|
20
|
+
left_shoulder_pitch_joint_origin (waist_pitch_joint): {pose: [0.0039563, 0.10022, 0.23778, 0.9902640751049538, 0.13920147853022313, 4.054181625451359e-05, -9.103785623530919e-05]}
|
|
21
|
+
right_shoulder_pitch_joint_origin (waist_pitch_joint): {pose: [0.0039563, -0.10021, 0.23778, 0.9902640751049538, -0.13920147853022313, 4.054181625451359e-05, 9.103785623530919e-05]}
|
|
22
|
+
logo_link_0 (waist_pitch_joint): {pose: [0.0039635, 0.0, -0.054], shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/logo_link.h5>}
|
|
23
|
+
head_link_0 (waist_pitch_joint): {pose: [0.0039635, 0.0, -0.054], shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/head_link.h5>}
|
|
24
|
+
waist_support_link_0 (waist_pitch_joint): {pose: [0.0039635, 0.0, -0.054], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/waist_support_link.h5>}
|
|
25
|
+
left_knee_joint_origin (left_hip_yaw_joint): {pose: [-0.078273, 0.0021489, -0.17734, 0.9961786849744957, 0.0, 0.08733858026373247, 0.0]}
|
|
26
|
+
right_knee_joint_origin (right_hip_yaw_joint): {pose: [-0.078273, -0.0021489, -0.17734, 0.9961786849744957, 0.0, 0.08733858026373247, 0.0]}
|
|
27
|
+
left_shoulder_pitch_joint (left_shoulder_pitch_joint_origin): {joint: hingeY, limits: [-3.0892, 2.6704], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_shoulder_pitch_link.h5>, mass: 0.718, inertia: [0.0004291, -9.2e-06, 6.4e-06, 0.000453, 2.26e-05, 0.000423]}
|
|
28
|
+
right_shoulder_pitch_joint (right_shoulder_pitch_joint_origin): {joint: hingeY, limits: [-3.0892, 2.6704], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_shoulder_pitch_link.h5>, mass: 0.718, inertia: [0.0004291, 9.2e-06, 6.4e-06, 0.000453, -2.26e-05, 0.000423]}
|
|
29
|
+
left_knee_joint (left_knee_joint_origin): {joint: hingeY, limits: [-0.087267, 2.8798], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_knee_link.h5>, mass: 1.932, inertia: [0.011329, 4.82e-05, -4.49e-05, 0.011277, -0.0007146, 0.0015168]}
|
|
30
|
+
right_knee_joint (right_knee_joint_origin): {joint: hingeY, limits: [-0.087267, 2.8798], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_knee_link.h5>, mass: 1.932, inertia: [0.011329, -4.82e-05, 4.49e-05, 0.011277, 0.0007146, 0.0015168]}
|
|
31
|
+
left_shoulder_roll_joint_origin (left_shoulder_pitch_joint): {pose: [0.0, 0.038, -0.013831, 0.9902682552548409, -0.1391717738427347, 0.0, 0.0]}
|
|
32
|
+
right_shoulder_roll_joint_origin (right_shoulder_pitch_joint): {pose: [0.0, -0.038, -0.013831, 0.9902682552548409, 0.1391717738427347, 0.0, 0.0]}
|
|
33
|
+
left_ankle_pitch_joint_origin (left_knee_joint): {pose: [0.0, -9.4445e-05, -0.30001]}
|
|
34
|
+
right_ankle_pitch_joint_origin (right_knee_joint): {pose: [0.0, 9.4445e-05, -0.30001]}
|
|
35
|
+
left_shoulder_roll_joint (left_shoulder_roll_joint_origin): {joint: hingeX, limits: [-1.5882, 2.2515], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_shoulder_roll_link.h5>, mass: 0.643, inertia: [0.0006177, -1.0e-06, 8.7e-06, 0.0006912, -5.3e-06, 0.0003894]}
|
|
36
|
+
right_shoulder_roll_joint (right_shoulder_roll_joint_origin): {joint: hingeX, limits: [-2.2515, 1.5882], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_shoulder_roll_link.h5>, mass: 0.643, inertia: [0.0006177, 1.0e-06, 8.7e-06, 0.0006912, 5.3e-06, 0.0003894]}
|
|
37
|
+
left_ankle_pitch_joint (left_ankle_pitch_joint_origin): {joint: hingeY, limits: [-0.87267, 0.5236], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_ankle_pitch_link.h5>, mass: 0.074, inertia: [8.4e-06, 0.0, -2.9e-06, 1.89e-05, 0.0, 1.26e-05]}
|
|
38
|
+
right_ankle_pitch_joint (right_ankle_pitch_joint_origin): {joint: hingeY, limits: [-0.87267, 0.5236], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_ankle_pitch_link.h5>, mass: 0.074, inertia: [8.4e-06, 0.0, -2.9e-06, 1.89e-05, 0.0, 1.26e-05]}
|
|
39
|
+
left_shoulder_yaw_joint_origin (left_shoulder_roll_joint): {pose: [0.0, 0.00624, -0.1032]}
|
|
40
|
+
right_shoulder_yaw_joint_origin (right_shoulder_roll_joint): {pose: [0.0, -0.00624, -0.1032]}
|
|
41
|
+
left_ankle_roll_joint_origin (left_ankle_pitch_joint): {pose: [0.0, 0.0, -0.017558]}
|
|
42
|
+
right_ankle_roll_joint_origin (right_ankle_pitch_joint): {pose: [0.0, 0.0, -0.017558]}
|
|
43
|
+
left_shoulder_yaw_joint (left_shoulder_yaw_joint_origin): {joint: hingeZ, limits: [-2.618, 2.618], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_shoulder_yaw_link.h5>, mass: 0.734, inertia: [0.0009988, 7.9e-06, 0.0001412, 0.0010605, -2.86e-05, 0.0004354]}
|
|
44
|
+
right_shoulder_yaw_joint (right_shoulder_yaw_joint_origin): {joint: hingeZ, limits: [-2.618, 2.618], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_shoulder_yaw_link.h5>, mass: 0.734, inertia: [0.0009988, -7.9e-06, 0.0001412, 0.0010605, 2.86e-05, 0.0004354]}
|
|
45
|
+
left_ankle_roll_joint (left_ankle_roll_joint_origin): {joint: hingeX, limits: [-0.2618, 0.2618], shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/left_ankle_roll_link.h5>, mass: 0.608, inertia: [0.0002231, 2.0e-07, 8.91e-05, 0.0016161, -1.0e-07, 0.0016667]}
|
|
46
|
+
right_ankle_roll_joint (right_ankle_roll_joint_origin): {joint: hingeX, limits: [-0.2618, 0.2618], shape: mesh, color: [0.2, 0.2, 0.2, 1.0], mesh: <meshes/right_ankle_roll_link.h5>, mass: 0.608, inertia: [0.0002231, -2.0e-07, 8.91e-05, 0.0016161, 1.0e-07, 0.0016667]}
|
|
47
|
+
left_elbow_joint_origin (left_shoulder_yaw_joint): {pose: [0.015783, 0.0, -0.080518]}
|
|
48
|
+
right_elbow_joint_origin (right_shoulder_yaw_joint): {pose: [0.015783, 0.0, -0.080518]}
|
|
49
|
+
left_elbow_joint (left_elbow_joint_origin): {joint: hingeY, limits: [-1.0472, 2.0944], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_elbow_link.h5>, mass: 0.6, inertia: [0.0002891, 6.53e-05, 1.72e-05, 0.0004152, -5.6e-06, 0.0004197]}
|
|
50
|
+
right_elbow_joint (right_elbow_joint_origin): {joint: hingeY, limits: [-1.0472, 2.0944], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_elbow_link.h5>, mass: 0.6, inertia: [0.0002891, -6.53e-05, 1.72e-05, 0.0004152, 5.6e-06, 0.0004197]}
|
|
51
|
+
left_wrist_roll_joint_origin (left_elbow_joint): {pose: [0.1, 0.00188791, -0.01]}
|
|
52
|
+
right_wrist_roll_joint_origin (right_elbow_joint): {pose: [0.1, -0.00188791, -0.01]}
|
|
53
|
+
left_wrist_roll_joint (left_wrist_roll_joint_origin): {joint: hingeX, limits: [-1.972222054, 1.972222054], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_wrist_roll_link.h5>, mass: 0.08544498, inertia: [4.821544023e-05, -4.24511021e-06, 5.10599e-09, 3.722899093e-05, -1.23525e-09, 5.482106541e-05]}
|
|
54
|
+
right_wrist_roll_joint (right_wrist_roll_joint_origin): {joint: hingeX, limits: [-1.972222054, 1.972222054], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_wrist_roll_link.h5>, mass: 0.08544498, inertia: [4.821544023e-05, 4.24511021e-06, 5.10599e-09, 3.722899093e-05, 1.23525e-09, 5.482106541e-05]}
|
|
55
|
+
left_wrist_pitch_joint_origin (left_wrist_roll_joint): {pose: [0.038, 0.0, 0.0]}
|
|
56
|
+
right_wrist_pitch_joint_origin (right_wrist_roll_joint): {pose: [0.038, 0.0, 0.0]}
|
|
57
|
+
left_wrist_pitch_joint (left_wrist_pitch_joint_origin): {joint: hingeY, limits: [-1.614429558, 1.614429558], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_wrist_pitch_link.h5>, mass: 0.48404956, inertia: [0.00016579646273, -1.231206746e-05, 1.231699194e-05, 0.0004295405741, 8.1417712e-07, 0.00042953697654]}
|
|
58
|
+
right_wrist_pitch_joint (right_wrist_pitch_joint_origin): {joint: hingeY, limits: [-1.614429558, 1.614429558], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_wrist_pitch_link.h5>, mass: 0.48404956, inertia: [0.00016579646273, 1.231206746e-05, 1.231699194e-05, 0.0004295405741, -8.1417712e-07, 0.00042953697654]}
|
|
59
|
+
left_wrist_yaw_joint_origin (left_wrist_pitch_joint): {pose: [0.046, 0.0, 0.0]}
|
|
60
|
+
right_wrist_yaw_joint_origin (right_wrist_pitch_joint): {pose: [0.046, 0.0, 0.0]}
|
|
61
|
+
left_wrist_yaw_joint (left_wrist_yaw_joint_origin): {joint: hingeZ, limits: [-1.614429558, 1.614429558], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_wrist_yaw_link.h5>, mass: 0.25457647, com: [0.027712694735691795, 0.0020033273302909765, -1.0899653184406096e-18], inertia: [0.00015079444368903163, 2.869702728036281e-05, 3.715660723580004e-06, 0.00043836153569590437, 3.73406941286e-06, 0.000356006284096386]}
|
|
62
|
+
right_wrist_yaw_joint (right_wrist_yaw_joint_origin): {joint: hingeZ, limits: [-1.614429558, 1.614429558], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_wrist_yaw_link.h5>, mass: 0.25457647, com: [0.027712694735691795, -0.0020033273302909765, -1.0899653184406096e-18], inertia: [0.00015079444368903163, -2.869702728036281e-05, 3.715660723580004e-06, 0.00043836153569590437, -3.73406941286e-06, 0.000356006284096386]}
|
|
63
|
+
left_rubber_hand_0 (left_wrist_yaw_joint): {pose: [0.0415, 0.003, 0.0], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/left_rubber_hand.h5>}
|
|
64
|
+
right_rubber_hand_0 (right_wrist_yaw_joint): {pose: [0.0415, -0.003, 0.0], shape: mesh, color: [0.7, 0.7, 0.7, 1.0], mesh: <meshes/right_rubber_hand.h5>}
|
|
@@ -2,9 +2,7 @@ panda_hand: { }
|
|
|
2
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: <meshes/finger.h5>, visual: True }
|
|
10
|
-
panda_rightfinger_0(panda_rightfinger): { Q: [0, 0, 0, -1.03412e-13, 0, 0, 1], shape: mesh, mesh: <meshes/finger.h5>, 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 }
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
robotiq_arg2f_base_link: {shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_base_link.h5>, mass: 0.22652, inertia: [0.00020005, -4.2442e-10, -2.9069e-10, 0.00017832, -3.4402e-08, 0.00013478]}
|
|
2
|
+
finger_joint_origin (robotiq_arg2f_base_link): {pose: [0.0, -0.0306011, 0.054904, 6.123233995736766e-17, 0.0, 0.0, 1.0]}
|
|
3
|
+
left_inner_knuckle_joint_origin (robotiq_arg2f_base_link): {pose: [0.0, -0.0127, 0.06142, 6.123233995736766e-17, 0.0, 0.0, 1.0]}
|
|
4
|
+
right_outer_knuckle_joint_origin (robotiq_arg2f_base_link): {pose: [0.0, 0.0306011, 0.054904]}
|
|
5
|
+
right_inner_knuckle_joint_origin (robotiq_arg2f_base_link): {pose: [0.0, 0.0127, 0.06142]}
|
|
6
|
+
finger_joint (finger_joint_origin): {joint: hingeX, limits: [0.0, 0.8], color: [0.792156862745098, 0.819607843137255, 0.933333333333333, 1.0] },
|
|
7
|
+
finger_metal_l(finger_joint): {pose: [1 -1 0 0], mesh: <meshes/robotiq_arg2f_85_outer_knuckle.h5>}
|
|
8
|
+
left_inner_knuckle_joint (left_inner_knuckle_joint_origin): {joint: hingeX, limits: [0.0, 0.8757], mimic: finger_joint, shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_inner_knuckle.h5>}
|
|
9
|
+
right_outer_knuckle_joint (right_outer_knuckle_joint_origin): {joint: hingeX, limits: [0.0, 0.81], mimic: finger_joint, color: [0.792156862745098, 0.819607843137255, 0.933333333333333, 1.0]}
|
|
10
|
+
finger_metal_r(right_outer_knuckle_joint): {pose: [1 -1 0 0], mesh: <meshes/robotiq_arg2f_85_outer_knuckle.h5>}
|
|
11
|
+
right_inner_knuckle_joint (right_inner_knuckle_joint_origin): {joint: hingeX, limits: [0.0, 0.8757], mimic: finger_joint, shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_inner_knuckle.h5>}
|
|
12
|
+
left_outer_finger_0 (finger_joint): {pose: [0.0, 0.0315, -0.0041], shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_outer_finger.h5>}
|
|
13
|
+
left_inner_finger_joint_origin (finger_joint): {pose: [0.0, 0.0376, 0.043000000000000003]}
|
|
14
|
+
right_outer_finger_0 (right_outer_knuckle_joint): {pose: [0.0, 0.0315, -0.0041], shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_outer_finger.h5>}
|
|
15
|
+
right_inner_finger_joint_origin (right_outer_knuckle_joint): {pose: [0.0, 0.0376, 0.043000000000000003]}
|
|
16
|
+
left_inner_finger_joint (left_inner_finger_joint_origin): {joint: hingeX, limits: [0.0, 0.8757], mimic: finger_joint, shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_inner_finger.h5>}
|
|
17
|
+
right_inner_finger_joint (right_inner_finger_joint_origin): {joint: hingeX, limits: [0.0, 0.8757], mimic: finger_joint, shape: mesh, color: [0.1, 0.1, 0.1, 1.0], mesh: <meshes/robotiq_arg2f_85_inner_finger.h5>}
|
|
18
|
+
left_inner_finger_pad_0 (left_inner_finger_joint): {pose: [0.0, -0.0220203446692936, 0.03242], shape: box, size: [0.022, 0.00635, 0.0375], color: [0.9, 0.9, 0.9, 1.0]}
|
|
19
|
+
right_inner_finger_pad_0 (right_inner_finger_joint): {pose: [0.0, -0.0220203446692936, 0.03242], shape: box, size: [0.022, 0.00635, 0.0375], color: [0.9, 0.9, 0.9, 1.0]}
|
robotic/ry-test
CHANGED
|
@@ -10,7 +10,8 @@ C.addFile(ry.raiPath('panda/panda.g'), 'b_').setPosition([0,0,.5])
|
|
|
10
10
|
C.addFrame('box1') .setShape(ry.ST.ssBox,[.3, .3, .3, .05]) .setPosition([1.3, 0, 2.]) .setMass(3)
|
|
11
11
|
C.addFrame('box2') .setShape(ry.ST.ssBox,[.3, .3, .3, .05]) .setPosition([.5, .0, 1.8]) .setMass(3)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
C.view(False)
|
|
14
|
+
time.sleep(.5)
|
|
14
15
|
|
|
15
16
|
q0 = C.getJointState()
|
|
16
17
|
qT = q0
|
robotic/src/__init__.py
ADDED
|
File without changes
|
robotic/src/mujoco_io.py
CHANGED
|
@@ -121,7 +121,7 @@ class MujocoLoader():
|
|
|
121
121
|
else:
|
|
122
122
|
vec1 = np.array([0., 0., 1.])
|
|
123
123
|
vec2 = np.array(self.as_floats(axis))
|
|
124
|
-
quat = ry.Quaternion().setDiff(vec1, vec2).
|
|
124
|
+
quat = ry.Quaternion().setDiff(vec1, vec2).asArr()
|
|
125
125
|
f_origin.setRelativeQuaternion(quat)
|
|
126
126
|
axis = ry.JT.hingeZ
|
|
127
127
|
else:
|
|
@@ -178,7 +178,7 @@ class MujocoLoader():
|
|
|
178
178
|
l = np.linalg.norm(b-a)
|
|
179
179
|
q = ry.Quaternion().setDiff([0,0,1],(b-a)/l)
|
|
180
180
|
f_shape.setRelativePosition(0.5*(a+b))
|
|
181
|
-
f_shape.setRelativeQuaternion(q.
|
|
181
|
+
f_shape.setRelativeQuaternion(q.asArr())
|
|
182
182
|
f_shape.setShape(ry.ST.capsule, [l, size[0]])
|
|
183
183
|
elif len(size)==2:
|
|
184
184
|
f_shape.setShape(ry.ST.capsule, [2.*size[1], size[0]])
|
|
@@ -239,4 +239,4 @@ class MujocoLoader():
|
|
|
239
239
|
if rpy:
|
|
240
240
|
q = ry.Quaternion()
|
|
241
241
|
q.setRollPitchYaw(self.as_floats(rpy))
|
|
242
|
-
f.setRelativeQuaternion(q.
|
|
242
|
+
f.setRelativeQuaternion(q.asArr())
|
|
File without changes
|
robotic/src/yaml_helper.py
CHANGED
|
File without changes
|
robotic/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.3.
|
|
1
|
+
__version__ = '0.3.1.dev0'
|
|
@@ -10,7 +10,8 @@ C.addFile(ry.raiPath('panda/panda.g'), 'b_').setPosition([0,0,.5])
|
|
|
10
10
|
C.addFrame('box1') .setShape(ry.ST.ssBox,[.3, .3, .3, .05]) .setPosition([1.3, 0, 2.]) .setMass(3)
|
|
11
11
|
C.addFrame('box2') .setShape(ry.ST.ssBox,[.3, .3, .3, .05]) .setPosition([.5, .0, 1.8]) .setMass(3)
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
C.view(False)
|
|
14
|
+
time.sleep(.5)
|
|
14
15
|
|
|
15
16
|
q0 = C.getJointState()
|
|
16
17
|
qT = q0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotic
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1.dev0
|
|
4
4
|
Summary: Robotic Control Interface & Manipulation Planning Library
|
|
5
5
|
Home-page: https://github.com/MarcToussaint/robotic/
|
|
6
6
|
Author: Marc Toussaint
|
|
@@ -36,8 +36,9 @@ Lab](https://argmin.lis.tu-berlin.de/)) operate our robots.
|
|
|
36
36
|
|
|
37
37
|
* The pip package was compiled for python3.8 .. 3.12, and most of the dependencies statically linked. A few are still loaded dynamically, which requires installing on Ubuntu:
|
|
38
38
|
|
|
39
|
-
sudo apt install liblapack3 freeglut3-dev libglu1-mesa libfreetype6 fonts-ubuntu python3 python3-pip
|
|
40
|
-
#latest Ubuntu:
|
|
39
|
+
sudo apt install liblapack3 freeglut3-dev libglu1-mesa libxrandr2 libfreetype6 fonts-ubuntu python3 python3-pip
|
|
40
|
+
#in latest Ubuntu also:
|
|
41
|
+
cd /usr/lib/x86_64-linux-gnu/ && sudo ln -s libglut.so.3.12 libglut.so.3
|
|
41
42
|
|
|
42
43
|
* Pip install:
|
|
43
44
|
|
|
@@ -48,7 +49,7 @@ Lab](https://argmin.lis.tu-berlin.de/)) operate our robots.
|
|
|
48
49
|
ry-info
|
|
49
50
|
ry-test
|
|
50
51
|
|
|
51
|
-
* Run all tutorial notebooks as a test and showcase
|
|
52
|
+
* Run all tutorial notebooks as a test and showcase:
|
|
52
53
|
|
|
53
54
|
pip install jupyter nbconvert matplotlib ipympl
|
|
54
55
|
git clone https://github.com/MarcToussaint/rai-tutorials.git
|
|
@@ -56,16 +57,15 @@ Lab](https://argmin.lis.tu-berlin.de/)) operate our robots.
|
|
|
56
57
|
make run -j1
|
|
57
58
|
make run_demos -j1
|
|
58
59
|
|
|
59
|
-
*
|
|
60
|
+
* Test in a clean ubuntu:latest docker (starting with `xhost +local:root && docker run -it --env="DISPLAY" --network host ubuntu:latest`):
|
|
60
61
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
cd /usr/lib/x86_64-linux-gnu/ &&
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
python3 -m venv ~/.local/venv
|
|
67
|
-
source ~/.local/venv/bin/activate
|
|
62
|
+
apt update
|
|
63
|
+
env DEBIAN_FRONTEND=noninteractive apt install --yes liblapack3 freeglut3-dev libglu1-mesa libxrandr2 libfreetype6 fonts-ubuntu python3 python3-pip python3-venv
|
|
64
|
+
cd /usr/lib/x86_64-linux-gnu/ && ln -s libglut.so.3.12 libglut.so.3
|
|
65
|
+
python3 -m venv ~/venv
|
|
66
|
+
source ~/venv/bin/activate
|
|
68
67
|
pip install robotic numpy
|
|
68
|
+
ry-info
|
|
69
69
|
ry-test
|
|
70
70
|
|
|
71
71
|
## Installation from source with real Franka & realsense support
|
|
@@ -103,7 +103,7 @@ This assumes a standard Ubuntu 24.04 (or 22.04, 20.04) machine.
|
|
|
103
103
|
cd $HOME/git
|
|
104
104
|
git clone --recursive https://github.com/MarcToussaint/robotic.git
|
|
105
105
|
cd robotic
|
|
106
|
-
cp
|
|
106
|
+
cp _make/CMakeLists-ubuntu.txt CMakeLists.txt
|
|
107
107
|
export PY_VERSION=`python3 -c "import sys; print(str(sys.version_info[0])+'.'+str(sys.version_info[1]))"`
|
|
108
108
|
cmake -DPY_VERSION=$PY_VERSION -DUSE_REALSENSE=ON -DUSE_LIBFRANKA=ON . -B build
|
|
109
109
|
make -C build _robotic install
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
robotic/DataGen.pyi,sha256=
|
|
2
|
-
robotic/__init__.py,sha256=
|
|
3
|
-
robotic/_robotic.pyi,sha256=
|
|
4
|
-
robotic/_robotic.so,sha256=
|
|
5
|
-
robotic/librai.so,sha256=
|
|
1
|
+
robotic/DataGen.pyi,sha256=d87TVK9SluoK409BexT5k1EHQYyrYHC1OW8QSdT-ujw,3378
|
|
2
|
+
robotic/__init__.py,sha256=H8Qi-wA95h6SuziEFNZFEt6Tpt5UrttS9ftBjZCsMm4,421
|
|
3
|
+
robotic/_robotic.pyi,sha256=NJQEj0Jcda4JyPmN10aQlAY9tPzf3c6KK7lfQK8oj4Q,74473
|
|
4
|
+
robotic/_robotic.so,sha256=hb395W-9lyH0S_wSMQdc2ntPwIkgo9NhfyqgcSPbhTw,1222472
|
|
5
|
+
robotic/librai.so,sha256=w6FnWKspRCUYVEZKV2h0hmpUtJpDuKV_NnSwoyBG5Gg,38701440
|
|
6
6
|
robotic/manipulation.py,sha256=EhM_Zuv3vl8H4SBNqqYMD3NT9AzFUpOhr4PIzM4U7tM,22374
|
|
7
|
-
robotic/meshTool,sha256=
|
|
8
|
-
robotic/mujoco-import.py,sha256=
|
|
7
|
+
robotic/meshTool,sha256=PmuUM1ia3Opa5JT8T7L7k9-ThYgdBNT2pALqudKh82g,52176
|
|
8
|
+
robotic/mujoco-import.py,sha256=8eC8ldlFwnYQfqII3FVdWEQ7zd1PkSdAF-oyryIQtkY,231
|
|
9
9
|
robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
|
|
10
10
|
robotic/render.py,sha256=OE1dvyWHD7Oyzk4wlhXZ7m3v3xxa3zAL5_LCV1RgJXk,4662
|
|
11
11
|
robotic/ry-bot,sha256=nd2yWqaDsFbwAmr7ySdOjq06ek0E1FMHTxPRO-7e2Q8,2294
|
|
12
12
|
robotic/ry-h5info,sha256=BRBpQSkzO13rcEJx4hJ8vNm_HXPHlSL_lmx9qDn-9LA,824
|
|
13
13
|
robotic/ry-info,sha256=GRj4oMCgTCGRF2wxtYxiFvETROB92rwwtUFb6S_Eo7g,439
|
|
14
14
|
robotic/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
15
|
-
robotic/ry-test,sha256=
|
|
15
|
+
robotic/ry-test,sha256=U54-scN4o_glloiDKjSFKJ7QsUTPgvzia6qnE4-22Js,995
|
|
16
16
|
robotic/ry-urdfConvert.py,sha256=8Efnq3PU202rrZrVEZiGwzFOJdvrLjTJ2q-gnY6-tiU,2556
|
|
17
17
|
robotic/ry-view,sha256=T1Omn1QS7cNAtjQhBjMJTNz7aW5FgoOf9vBIfW0mFME,613
|
|
18
18
|
robotic/test.py,sha256=8hiDRB2kB37hE5cZ7h26AJDnSGYb1y8DwOrcEGD_5Hc,620
|
|
19
19
|
robotic/test.pyi,sha256=vVxwRSerjUG4bpB7pIhof7ZatrBqwg3Bj5voywa-YTI,917
|
|
20
|
-
robotic/version.py,sha256=
|
|
20
|
+
robotic/version.py,sha256=ZWhjsBrDhcUf4gjEggmZnfIlksbS0utUxoRi60yM2Fo,27
|
|
21
21
|
robotic/include/rai/Algo/MLcourse.h,sha256=TGkAJWC5ollGfPw0-gcYL0TZeDJiHtWFzkHSMK8_lqU,1828
|
|
22
22
|
robotic/include/rai/Algo/RidgeRegression.h,sha256=VXiv6-xr3j--CN7DJTzUg9Xb49zV9FZ9dwzxP1CmcPM,3730
|
|
23
23
|
robotic/include/rai/Algo/SplineCtrlFeed.h,sha256=9ZtYLHXx9sExj0lZV6F5ZWaCtkm0R4hMiYb-KJjktnc,3339
|
|
@@ -50,7 +50,7 @@ robotic/include/rai/Core/array.h,sha256=YcI48DcBMUYgdlXP4V1dV6juBUe1iCtbKoxWjp4n
|
|
|
50
50
|
robotic/include/rai/Core/array.ipp,sha256=DNmfosznj0jF-5lXTb8NUejfrVfs_Fw3O0IvvnDfF7M,63560
|
|
51
51
|
robotic/include/rai/Core/arrayDouble.h,sha256=9pr_9g50dFluF2dLgc29bl9o6ri9C84p69fNW2PYqXg,28724
|
|
52
52
|
robotic/include/rai/Core/defines.h,sha256=hBTgf5EiJ50rQYW1saGw8Ox87aKVFOYVKnFw0jojVW0,6894
|
|
53
|
-
robotic/include/rai/Core/graph.h,sha256=
|
|
53
|
+
robotic/include/rai/Core/graph.h,sha256=Thi03-fM0hqdz1oAXJauWw4WpYQHL8n54XvU0NR2Oyo,21128
|
|
54
54
|
robotic/include/rai/Core/h5.h,sha256=cfs8cew5QYpOxbWFZHV9TXVh5_dEJdFF1-aGZVR54EY,1162
|
|
55
55
|
robotic/include/rai/Core/thread.h,sha256=wjwvXACwI8B6rhZSf2UDruWUb8kT9Xjm-VE-OnUQpwk,18248
|
|
56
56
|
robotic/include/rai/Core/util.h,sha256=qcP8KmyVZ1Ht8pmqfAme_SRjQX5mDpuV4iKl56zyG2o,19453
|
|
@@ -60,7 +60,7 @@ robotic/include/rai/Core/lapack/cblas.h,sha256=4bSmMzZ4idIPlmcwjw5HuwY1cs5RU73Zw
|
|
|
60
60
|
robotic/include/rai/Core/lapack/clapack.h,sha256=8rLteHzzGpKhJZXv4Eom9mk8lzbwRwjJuIqJuR1eePc,343373
|
|
61
61
|
robotic/include/rai/Core/lapack/lapacke.h,sha256=cpP6MEjkLGyhS8mV6ysRlTVeUam6f8zBgFUJB1phuwM,1045408
|
|
62
62
|
robotic/include/rai/DataGen/rndStableConfigs.h,sha256=bIz2RovkruMjYaaDwJIkyevsF6oV16y7dhyKm6sp_6s,391
|
|
63
|
-
robotic/include/rai/DataGen/shapenetGrasps.h,sha256=
|
|
63
|
+
robotic/include/rai/DataGen/shapenetGrasps.h,sha256=NMQ4V1F6-UF8uPlTs4eonutpk4ZH90go1DYcbppfjss,1596
|
|
64
64
|
robotic/include/rai/Geo/assimpInterface.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg-LhMlWcjiF_o,1055
|
|
65
65
|
robotic/include/rai/Geo/depth2PointCloud.h,sha256=0mXJnTk0sMB--KDE9CO_2gKgGw4gHXUe7xg6DcROhvk,1168
|
|
66
66
|
robotic/include/rai/Geo/fclInterface.h,sha256=d89JFW3WKI64gOdQSGs6uFdE7NcMavNg89BMHhzMDac,984
|
|
@@ -124,7 +124,7 @@ robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMB
|
|
|
124
124
|
robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
|
|
125
125
|
robotic/include/rai/Kin/kin_physx.h,sha256=QfYi_-dIvVm7dFgG2SA3csHeb0peRMEhrf-I6pFOMPQ,1832
|
|
126
126
|
robotic/include/rai/Kin/proxy.h,sha256=jfFQrvokqvt8bGYEzGQoD2ZpnuWuLzCeOjFfUvdxcx0,1473
|
|
127
|
-
robotic/include/rai/Kin/simulation.h,sha256=
|
|
127
|
+
robotic/include/rai/Kin/simulation.h,sha256=imCDImhfBDFqAQUospERxhlkEOwb-Pzq415QcrQ8xVI,5258
|
|
128
128
|
robotic/include/rai/Kin/viewer.h,sha256=GzObhDzEnIBYH0Yu_wCX8Cm2GAN5wuk-El09b2Vy_8w,2031
|
|
129
129
|
robotic/include/rai/LGP/LGP_SkeletonTool.h,sha256=T4lXAUxY2QFo_ETZEm7RqRzfmU6NAHdVcow8qj_8-9Y,3240
|
|
130
130
|
robotic/include/rai/LGP/LGP_Tool.h,sha256=vcQ3ixwJ4wepPDX8ZGkDBKGIpchJQWMOoMu82_cS_8I,4230
|
|
@@ -192,6 +192,7 @@ robotic/include/rai/ry/py-Spline.h,sha256=gR8Cvwt5PlzlolxegS1wUEEOQj9RydOp1gS67Z
|
|
|
192
192
|
robotic/include/rai/ry/py-tests.h,sha256=-l_0V-yRqeOEztqCo_BAdcKCAMovyd8-9tnrytM5pQM,432
|
|
193
193
|
robotic/include/rai/ry/types.h,sha256=KQ_byer3O3iFnrtBNyg5sptEfCsujbEeo6edOHSNzaM,8495
|
|
194
194
|
robotic/rai-robotModels/g1/g1.g,sha256=9lA31eCRoFENw9Nbg04KoX3diIIQYKz981oRYNKLvO4,499
|
|
195
|
+
robotic/rai-robotModels/g1/g1_29dof_conv.yml,sha256=KU7Usxi4fMCKFH7Jfb6Jvs98fbK1UozBHCeTnD0KPPU,12132
|
|
195
196
|
robotic/rai-robotModels/g1/g1_clean.g,sha256=jXlPAlL02pPSybl5DgazO0Qf96wAg2tbVwXKYh9e5XQ,11883
|
|
196
197
|
robotic/rai-robotModels/g1/meshes/head_link.h5,sha256=7Gnh6fTAHrUp_8O70hmKKGFVW3246-yUdHqCGEuzK14,253939
|
|
197
198
|
robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.h5,sha256=2LKu5c-bPbGf8Q0tys5cHS0c38A7Nm39Vpa2ZyyE_Qc,23677
|
|
@@ -237,7 +238,7 @@ robotic/rai-robotModels/panda/panda_arm_hand_conv.g,sha256=BVDQNIAwPB45rrvLX-WYw
|
|
|
237
238
|
robotic/rai-robotModels/panda/panda_arm_hand_conv.yml,sha256=_YP4vVVKeScSPNLRRkkiH2fnHuFUQgt12O1RnWV5mTY,2486
|
|
238
239
|
robotic/rai-robotModels/panda/panda_clean.g,sha256=6EShzBmEa2R5sJRhnGRXwLWcyjRybFY3Su-hdwz55yw,3168
|
|
239
240
|
robotic/rai-robotModels/panda/panda_deformable.g,sha256=DvkhnJYSXc1S_GRBM3iJOm6WovKYrsckzAW-rXxLqH8,6037
|
|
240
|
-
robotic/rai-robotModels/panda/panda_gripper.g,sha256=
|
|
241
|
+
robotic/rai-robotModels/panda/panda_gripper.g,sha256=qdVvPLq8LNkcXFNVfLcYBLNvcgAt7UN3qaTYgCevi7o,846
|
|
241
242
|
robotic/rai-robotModels/panda/panda_withoutCollisionModels.g,sha256=RPJawK8POmG_Hyc92XcprQbFArEryQWM8O6IB5zcSYQ,278
|
|
242
243
|
robotic/rai-robotModels/panda/meshes/finger.h5,sha256=hzqxoufYkW0_qDgVH4ZCx7vwCeZF4s3qe0KpMyXf3Lw,12994
|
|
243
244
|
robotic/rai-robotModels/panda/meshes/hand.h5,sha256=lbiphvOO3NKhuBW6kexfbfArDcNKqpqDM9yS_bmFdss,100882
|
|
@@ -299,6 +300,7 @@ robotic/rai-robotModels/ranger/meshes/ranger_mini3.h5,sha256=Af2ppMf2YGOUkw7S0jH
|
|
|
299
300
|
robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.h5,sha256=zIiMDHGxqaztUyGNeCa-XBBbSoq6Kme0dy4gA7IkWl4,268465
|
|
300
301
|
robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.h5,sha256=Rs3a7mj3SHgRa31iNNa5RmOMGBdXrpr73GrqaIqRmqs,270937
|
|
301
302
|
robotic/rai-robotModels/robotiq/robotiq.g,sha256=3m_n4NjH7Gfp_ztWIDb-ruR74q9WhElzqkT76KPeToQ,1066
|
|
303
|
+
robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml,sha256=bkTMr1u1WZdE1LsDFEW3_vcp632_ZXUDM7Yt9T2ZlYU,2908
|
|
302
304
|
robotic/rai-robotModels/robotiq/robotiq_clean.g,sha256=0EyQ_jt7YCRqGqrtXiWKhUcp7LBEmE_9KcWIj17LqV8,3899
|
|
303
305
|
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_base_link.h5,sha256=papTdqkLlRzo_svqTXwd9Cp2qJHw2Wnt-Ct31lQCAKQ,331303
|
|
304
306
|
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_finger.h5,sha256=TYBns07SFdffSCNRZNh45_jOtprZAAIAO1WDHbvMMi0,34288
|
|
@@ -315,7 +317,7 @@ robotic/rai-robotModels/scenarios/k00.g,sha256=Bjei9rYaLLwOhOSHFjaDGc7LFDraL8sxQ
|
|
|
315
317
|
robotic/rai-robotModels/scenarios/kswing.g,sha256=k1bND_Hr-lE5sklOraw58HdUye6iW8jTdjBUwbyRCRM,3995
|
|
316
318
|
robotic/rai-robotModels/scenarios/liftRing.g,sha256=fRKPEfUH_kDL4r7PmpO0kB2t1KeLV9QypxEEN_BNrqQ,1349
|
|
317
319
|
robotic/rai-robotModels/scenarios/mobileMini.g,sha256=I7SE9YUUciZ1JrJG6BIAZ9Oho_eUa_Z76l5_h-B0wjY,1158
|
|
318
|
-
robotic/rai-robotModels/scenarios/pandaFloatingGripper.g,sha256=
|
|
320
|
+
robotic/rai-robotModels/scenarios/pandaFloatingGripper.g,sha256=emCRjAxW1XAo9teBjjxvnM4C3JiCWPfiptFFr3swwfE,1508
|
|
319
321
|
robotic/rai-robotModels/scenarios/pandaSingle.g,sha256=H_UnXdMUbk16os9StOZB0PZMPL3FaGbCAZy0uUAKEKA,1147
|
|
320
322
|
robotic/rai-robotModels/scenarios/panda_fixGripper.g,sha256=bhkRey6igLb18HlOFj7CpAjqF6R7Z3saxevipHAn4W0,337
|
|
321
323
|
robotic/rai-robotModels/scenarios/panda_fixRobotiq.g,sha256=QVLpZCchSnoouayhIoVQcaWYHaZGVn4pIlj6nkFDHjs,1564
|
|
@@ -347,21 +349,22 @@ robotic/rai-robotModels/ur10/meshes/upperarm.h5,sha256=7EscqPPAzKSzbtSCMrgbI_uGh
|
|
|
347
349
|
robotic/rai-robotModels/ur10/meshes/wrist1.h5,sha256=4r7yAEKKx5zYoC2NbqL0yjGvX4ilafjrpuNP3oDKsU8,185725
|
|
348
350
|
robotic/rai-robotModels/ur10/meshes/wrist2.h5,sha256=fJSQ4Jh-ChmwvRYfDobqXssVaBZj8GhpvmPNp1UTrN0,498733
|
|
349
351
|
robotic/rai-robotModels/ur10/meshes/wrist3.h5,sha256=F8FrYVVp8YBdkgJ6EHKb5r_rm0kyhxf6b8KbwHjeegk,20770
|
|
352
|
+
robotic/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
353
|
robotic/src/cleanMeshes.py,sha256=42T9WwN_cn4u_s_BzN2eRfBQxmZTEQ6ZYPBtsesA5BM,1678
|
|
351
|
-
robotic/src/config_urdf.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
352
354
|
robotic/src/mesh_helper.py,sha256=AMSOz3Eew9uJkDm5tFThbfJKcEQCmGyRLN4bZphISNk,16691
|
|
353
355
|
robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnEg,3833
|
|
354
|
-
robotic/src/mujoco_io.py,sha256=
|
|
356
|
+
robotic/src/mujoco_io.py,sha256=uJ0-ZztwlFiP3ZQvHCKf5DdtkpBMsVT--d332qV9rNQ,9474
|
|
357
|
+
robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
355
358
|
robotic/src/yaml_helper.py,sha256=eCUK6w4FCRpBqNgP7FdVDbJf2H7Y1bfIGzs89nOrAsY,637
|
|
356
|
-
robotic-0.3.
|
|
357
|
-
robotic-0.3.
|
|
358
|
-
robotic-0.3.
|
|
359
|
-
robotic-0.3.
|
|
360
|
-
robotic-0.3.
|
|
361
|
-
robotic-0.3.
|
|
362
|
-
robotic-0.3.
|
|
363
|
-
robotic-0.3.
|
|
364
|
-
robotic-0.3.
|
|
365
|
-
robotic-0.3.
|
|
366
|
-
robotic-0.3.
|
|
367
|
-
robotic-0.3.
|
|
359
|
+
robotic-0.3.1.dev0.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
360
|
+
robotic-0.3.1.dev0.data/scripts/ry-h5info,sha256=eh9McT5Ury7bbTudxkSOLWo-tZ6heiSEpGStM07N-Dc,810
|
|
361
|
+
robotic-0.3.1.dev0.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
362
|
+
robotic-0.3.1.dev0.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
363
|
+
robotic-0.3.1.dev0.data/scripts/ry-test,sha256=vcaPrFq9Co9N2F2Mdl2_1CTieOBssSoEhU67wXqJ2EY,981
|
|
364
|
+
robotic-0.3.1.dev0.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
365
|
+
robotic-0.3.1.dev0.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
|
|
366
|
+
robotic-0.3.1.dev0.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
367
|
+
robotic-0.3.1.dev0.dist-info/METADATA,sha256=XLdNe-YNKIZR5yeHy-LIYZoQl-5g-wRA7Ir8tWM6sJM,6659
|
|
368
|
+
robotic-0.3.1.dev0.dist-info/WHEEL,sha256=0-G7woG4LgutcYzUGJCOYFgoh749-FtfhSMeIPLVGS0,104
|
|
369
|
+
robotic-0.3.1.dev0.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
370
|
+
robotic-0.3.1.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|