robotic 0.2.8.dev1__cp312-cp312-manylinux2014_x86_64.whl → 0.2.8.dev3__cp312-cp312-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.

Files changed (26) hide show
  1. robotic/DataGen.pyi +1 -1
  2. robotic/_robotic.pyi +10 -8
  3. robotic/_robotic.so +0 -0
  4. robotic/include/rai/KOMO/manipTools.h +5 -5
  5. robotic/include/rai/Kin/frame.h +1 -1
  6. robotic/include/rai/Kin/kin.h +5 -4
  7. robotic/include/rai/Kin/kin_physx.h +0 -2
  8. robotic/include/rai/Kin/simulation.h +2 -1
  9. robotic/include/rai/Kin/viewer.h +1 -2
  10. robotic/librai.so +0 -0
  11. robotic/rai-robotModels/scenarios/ballFinger.g +4 -4
  12. robotic/rai-robotModels/scenarios/{mobilePanda.g → panda_ranger.g} +2 -7
  13. robotic/version.py +1 -1
  14. {robotic-0.2.8.dev1.dist-info → robotic-0.2.8.dev3.dist-info}/METADATA +1 -1
  15. {robotic-0.2.8.dev1.dist-info → robotic-0.2.8.dev3.dist-info}/RECORD +26 -26
  16. {robotic-0.2.8.dev1.dist-info → robotic-0.2.8.dev3.dist-info}/WHEEL +1 -1
  17. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-bot +0 -0
  18. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-h5info +0 -0
  19. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-info +0 -0
  20. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-meshTool +0 -0
  21. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-test +0 -0
  22. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-urdf2rai +0 -0
  23. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-urdf2yaml +0 -0
  24. {robotic-0.2.8.dev1.data → robotic-0.2.8.dev3.data}/scripts/ry-view +0 -0
  25. {robotic-0.2.8.dev1.dist-info → robotic-0.2.8.dev3.dist-info}/LICENSE +0 -0
  26. {robotic-0.2.8.dev1.dist-info → robotic-0.2.8.dev3.dist-info}/top_level.txt +0 -0
robotic/DataGen.pyi CHANGED
@@ -72,7 +72,7 @@ class ShapenetGrasps:
72
72
  """
73
73
  set options
74
74
  """
75
- def setPhysxOptions(self, verbose: int = 1, yGravity: bool = False, angularDamping: float = 0.1, defaultFriction: float = 1.0, defaultRestitution: float = 0.1, motorKp: float = 1000.0, motorKd: float = 100.0, gripperKp: float = 10000.0, gripperKd: float = 100.0) -> ShapenetGrasps:
75
+ def setPhysxOptions(self, verbose: int = 1, yGravity: bool = False, angularDamping: float = 0.1, defaultFriction: float = 1.0, defaultRestitution: float = 0.1, motorKp: float = 1000.0, motorKd: float = 100.0) -> ShapenetGrasps:
76
76
  """
77
77
  set options
78
78
  """
robotic/_robotic.pyi CHANGED
@@ -387,6 +387,10 @@ class Config:
387
387
  ...
388
388
  def set_viewer(self, arg0: ...) -> None:
389
389
  ...
390
+ def simplify(self, pruneNamed: bool, pruneNonContactNonMarker: bool, pruneTransparent: bool) -> None:
391
+ """
392
+ structurally simplify the Configuration (deleting frames, relinking to minimal tree)
393
+ """
390
394
  def view(self, pause: bool = False, message: str = None) -> int:
391
395
  """
392
396
  open a view window for the configuration
@@ -441,7 +445,7 @@ class Config:
441
445
  """
442
446
  write the full configuration in a ply mesh file
443
447
  """
444
- def writeMeshes(self, pathPrefix: str) -> None:
448
+ def writeMeshes(self, pathPrefix: ...) -> None:
445
449
  """
446
450
  write all object meshes in a directory
447
451
  """
@@ -456,7 +460,7 @@ class ConfigurationViewer:
456
460
  @staticmethod
457
461
  def _pybind11_conduit_v1_(*args, **kwargs):
458
462
  ...
459
- def savePng(self, saveVideoPath: str = 'z.vid/', count: int = -1) -> None:
463
+ def savePng(self, saveVideoPath: ... = 'z.vid/', count: int = -1) -> None:
460
464
  """
461
465
  save enumerated pngs in a path - for video making
462
466
  """
@@ -784,7 +788,7 @@ class Frame:
784
788
  """
785
789
  def setMeshAsLines(self, arg0: list[float]) -> None:
786
790
  ...
787
- def setMeshFile(self, filename: ...) -> Frame:
791
+ def setMeshFile(self, filename: ..., scale: float = 1.0) -> Frame:
788
792
  """
789
793
  attach a mesh shape from a file
790
794
  """
@@ -1781,14 +1785,10 @@ class Simulation:
1781
1785
  ...
1782
1786
  def attach(self, gripper: Frame, obj: Frame) -> None:
1783
1787
  ...
1784
- def closeGripper(self, gripperFrameName: str, width: float = 0.05, speed: float = 0.3, force: float = 20.0) -> None:
1785
- ...
1786
1788
  def depthData2pointCloud(self, arg0: numpy.ndarray[numpy.float32], arg1: list[float]) -> numpy.ndarray[numpy.float64]:
1787
1789
  ...
1788
1790
  def detach(self, obj: Frame) -> None:
1789
1791
  ...
1790
- def getGripperIsGrasping(self, gripperFrameName: str) -> bool:
1791
- ...
1792
1792
  def getGripperWidth(self, gripperFrameName: str) -> float:
1793
1793
  ...
1794
1794
  def getImageAndDepth(self) -> tuple:
@@ -1807,7 +1807,9 @@ class Simulation:
1807
1807
  ...
1808
1808
  def get_qDot(self) -> arr:
1809
1809
  ...
1810
- def openGripper(self, gripperFrameName: str, width: float = 0.075, speed: float = 0.3) -> None:
1810
+ def gripperIsDone(self, gripperFrameName: str) -> bool:
1811
+ ...
1812
+ def moveGripper(self, gripperFrameName: str, width: float, speed: float = 0.3) -> None:
1811
1813
  ...
1812
1814
  def pushConfigurationToSimulator(self, frameVelocities: arr = ..., jointVelocities: arr = ...) -> None:
1813
1815
  """
robotic/_robotic.so CHANGED
Binary file
@@ -13,7 +13,7 @@
13
13
 
14
14
  //===========================================================================
15
15
 
16
- struct ManipulationModelling {
16
+ struct ManipulationHelper {
17
17
  std::shared_ptr<KOMO> komo;
18
18
  str info;
19
19
 
@@ -22,8 +22,8 @@ struct ManipulationModelling {
22
22
  arr qTarget;
23
23
  arr path;
24
24
 
25
- ManipulationModelling(const str& _info={});
26
- ManipulationModelling(const std::shared_ptr<KOMO>& _komo, const str& _info = str{});
25
+ ManipulationHelper(const str& _info={});
26
+ ManipulationHelper(const std::shared_ptr<KOMO>& _komo, const str& _info = str{});
27
27
 
28
28
  KOMO& k() { return *komo; }
29
29
 
@@ -59,11 +59,11 @@ struct ManipulationModelling {
59
59
  void retractPush(const arr& time_interval, const char* gripper, double dist=.02);
60
60
  void approachPush(const arr& time_interval, const char* gripper, double dist=.05, str helper= {});
61
61
 
62
- arr solve(int verbose=1);
62
+ std::shared_ptr<SolverReturn> solve(int verbose=1);
63
63
  arr sample(const char* sampleMethod=0, int verbose=1);
64
64
  void debug(bool listObjectives=true, bool plotOverTime=false);
65
65
 
66
- std::shared_ptr<ManipulationModelling> sub_motion(uint phase, bool fixEnd=true, double homing_scale=1e-2, double acceleration_scale=1e-1, bool accumulated_collisions=true, bool joint_limits=true, bool quaternion_norms=false, const StringA& activeDofs={});
66
+ std::shared_ptr<ManipulationHelper> sub_motion(uint phase, bool fixEnd=true, double homing_scale=1e-2, double acceleration_scale=1e-1, bool accumulated_collisions=true, bool joint_limits=true, bool quaternion_norms=false, const StringA& activeDofs={});
67
67
  std::shared_ptr<rai::RRT_PathFinder> sub_rrt(uint phase, const StringA& explicitCollisionPairs= {}, const StringA& activeDofs={});
68
68
 
69
69
  void play(rai::Configuration& C, double duration=1.);
@@ -166,7 +166,7 @@ struct Frame : NonCopyable {
166
166
  Frame& setRelativeRotationMatrix(const arr& R);
167
167
  Frame& setMesh2(const rai::Mesh& m);
168
168
  Frame& setMesh(const arr& verts, const uintA& tris, const byteA& colors={}, const uintA& cvxParts={});
169
- Frame& setMeshFile(str file);
169
+ Frame& setMeshFile(str file, double scale=1.);
170
170
  Frame& setLines(const arr& verts, const byteA& colors={});
171
171
  Frame& setPointCloud(const arr& points, const byteA& colors= {}, const arr& normals= {});
172
172
  Frame& setConvexMesh(const arr& points, const byteA& colors= {}, double radius=0.);
@@ -95,6 +95,7 @@ struct Configuration {
95
95
  /// @name initializations, building configurations
96
96
  Frame* addFrame(const char* name, const char* parent=nullptr, const char* args=nullptr, bool warnDuplicateName=true);
97
97
  Frame* addFile(const char* filename, const char* namePrefix=0);
98
+ Frame& addDict(const Graph& G);
98
99
  Frame* addAssimp(const char* filename);
99
100
  Frame* addH5Object(const char* framename, const char* filename, int verbose);
100
101
  Frame* addCopy(const FrameL& F, const DofL& _dofs, const str& prefix= {});
@@ -177,10 +178,11 @@ struct Configuration {
177
178
  void flipFrames(Frame* a, Frame* b);
178
179
  void pruneRigidJoints(); ///< delete rigid joints -> they become just links
179
180
  void pruneInactiveJoints(); ///< delete rigid joints -> they become just links
181
+ void pruneEmptyShapes();
180
182
  void reconnectShapesToParents();
181
183
  void reconnectLinksToClosestJoints(); ///< re-connect all links to closest joint
182
- void pruneUselessFrames(bool pruneNamed=false, bool pruneNonContactNonMarker=false, bool pruneNonVisible=false); ///< delete frames that have no name, joint, and shape
183
- void optimizeTree(bool _pruneRigidJoints=false, bool pruneNamed=false, bool pruneNonContactNonMarker=false, bool pruneNonVisible=false); ///< call the three above methods in this order
184
+ void pruneUselessFrames(bool pruneNamed=false, bool pruneNonContactNonMarker=false, bool pruneTransparent=false); ///< delete frames that have no name, joint, and shape
185
+ void simplify(bool pruneNamed=false, bool pruneNonContactNonMarker=false, bool pruneTransparent=false); ///< call the three above methods in this order
184
186
  void sortFrames();
185
187
  void makeObjectsFree(const StringA& objects, double H_cost=0.);
186
188
  void addTauJoint();
@@ -285,7 +287,7 @@ public:
285
287
  void write(Graph& G) const;
286
288
  void writeURDF(std::ostream& os, const char* robotName="myrobot") const;
287
289
  void writeCollada(const char* filename, const char* format="collada") const;
288
- void writeMeshes(const char* pathPrefix="meshes/") const;
290
+ void writeMeshes(str pathPrefix="meshes/") const;
289
291
  void writeMesh(const char* filename="z.ply") const;
290
292
  void read(std::istream& is);
291
293
  Graph getGraph() const;
@@ -301,7 +303,6 @@ public:
301
303
  void reportLimits(std::ostream& os=cout) const;
302
304
 
303
305
  private:
304
- void readFromGraph(const Graph& G, bool addInsteadOfClear=false);
305
306
  friend struct KinematicSwitch;
306
307
  };
307
308
 
@@ -19,8 +19,6 @@ struct PhysX_Options {
19
19
  RAI_PARAM("physx/", double, defaultRestitution, .1) //restitution=1 should be elastic...
20
20
  RAI_PARAM("physx/", double, motorKp, 1000.)
21
21
  RAI_PARAM("physx/", double, motorKd, 100.)
22
- RAI_PARAM("physx/", double, gripperKp, 10000.)
23
- RAI_PARAM("physx/", double, gripperKd, 100.)
24
22
  };
25
23
  }//namespace
26
24
 
@@ -35,7 +35,7 @@ struct Simulation {
35
35
  FrameL grasps;
36
36
  std::shared_ptr<TeleopCallbacks> teleopCallbacks;
37
37
 
38
- Simulation(Configuration& _C, Engine _engine, int _verbose=2);
38
+ Simulation(Configuration& _C, Engine _engine=_physx, int _verbose=2);
39
39
  ~Simulation();
40
40
 
41
41
  //== controller interface
@@ -46,6 +46,7 @@ struct Simulation {
46
46
  //-- adapt the spline reference to genreate motion (default way)
47
47
  void setSplineRef(const arr& _q, const arr& _times, bool append=true);
48
48
  void setPositionRef(rai::Dof* dof, const arr&q_ref, double cap=-1.);
49
+ void setForceRef(const arr& f_ref, const arr& Jf, double kf, double cap);
49
50
  void resetSplineRef();
50
51
 
51
52
  //-- send a gripper command
@@ -37,9 +37,8 @@ struct ConfigurationViewer : RenderData {
37
37
  rai::Camera& displayCamera(); ///< access to the display camera to change the view
38
38
  byteA getRgb();
39
39
  floatA getDepth();
40
- void savePng(const char* saveVideoPath="z.vid/", int count=-1);
40
+ void savePng(str saveVideoPath="z.vid/", int count=-1);
41
41
 
42
- int update(bool watch=false);
43
42
  void raiseWindow();
44
43
  void glDraw(OpenGL&);
45
44
  void setCamera(rai::Frame* cam);
robotic/librai.so CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  base { X:[0 0 .5], multibody, multibody_gravity: false }
2
- jointX(base){ joint:transX, mass:.01, limits: [-1.,1.], motorLambda: .01, motorMass: .1, sampleUniform: 1. }
3
- jointY(jointX){ joint:transY, mass:.01, limits: [-1.,1.], motorLambda: .01, motorMass: .1, sampleUniform: 1. }
4
- jointZ(jointY){ joint:transZ, limits: [-1.,1.], motorLambda: .01, motorMass: .1, sampleUniform: 1. }
5
- finger(jointZ){ shape:sphere, size:[.2], color:[.5 1 1], contact:1, mass: .5 }
2
+ jointX(base){ joint:transX, mass:.01, limits: [-1.,1.], motorLambda: .01, motorMass: .01, sampleUniform: 1. }
3
+ jointY(jointX){ joint:transY, mass:.01, limits: [-1.,1.], motorLambda: .01, motorMass: .01, sampleUniform: 1. }
4
+ jointZ(jointY){ joint:transZ, limits: [-1.,1.], motorLambda: .01, motorMass: .01, sampleUniform: 1. }
5
+ finger(jointZ){ shape:sphere, size:[.02], color:[.5 1 1], contact:1, mass: .1 }
@@ -1,11 +1,6 @@
1
- world: {}
2
- ranger_origin(world): { joint:transXYPhi, shape:marker, size:[.1] }
3
-
4
1
  Include: <../ranger/ranger.g>
5
2
 
6
- Edit ranger_base_link(ranger_origin) { Q:[0, 0, .315, 1, 0, 0, -1] }
7
-
8
- ## two pandas
3
+ ## pandas
9
4
  Prefix: "l_"
10
5
  Include: <../panda/panda.g>
11
6
  #Prefix: "r_"
@@ -13,7 +8,7 @@ Include: <../panda/panda.g>
13
8
  Prefix: False
14
9
 
15
10
  ## position them on the table
16
- Edit l_panda_base (ranger_base_link): { Q: "t(-.25 .0 .04) d(180 0 0 1)", joint: rigid }
11
+ Edit l_panda_base (ranger_base_link): { Q: "t(-.25 .0 .04) d(180 0 0 1)", joint: none, multibody: false }
17
12
  #Edit r_panda_base (ranger_base_link): { Q: "t( .22 .05 .02) d(0 0 0 1)", joint: rigid }
18
13
 
19
14
  ## box
robotic/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.2.8.dev1'
1
+ __version__ = '0.2.8.dev3'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: robotic
3
- Version: 0.2.8.dev1
3
+ Version: 0.2.8.dev3
4
4
  Summary: Robotic Control Interface & Manipulation Planning Library
5
5
  Home-page: https://github.com/MarcToussaint/robotic/
6
6
  Author: Marc Toussaint
@@ -1,8 +1,8 @@
1
- robotic/DataGen.pyi,sha256=m1e5j8laihgDWOGAFbXEc5zM_Qq87y11gzj2obgSdXY,3293
1
+ robotic/DataGen.pyi,sha256=Psut6_CMYC1lkRWIfpem1vjiHeDA1bDRYh5WmALUuDw,3239
2
2
  robotic/__init__.py,sha256=k-hVqPB7vN-huwpRzQLt3f--6sNdjaCQ_hWw66dWkA8,297
3
- robotic/_robotic.pyi,sha256=bn_N5aB290VEAbyAC7CUyHFk1wXdfP8Hh4x_azYzrDo,72942
4
- robotic/_robotic.so,sha256=l4j3nCyKnkw8tAJllk8lkgPx2QP6JCSPNOX_5_5P_v0,1218304
5
- robotic/librai.so,sha256=Tvf7LwXu7WQUDYjNNlAcT3mRc-41i1dxbCPMQS5qyso,40163304
3
+ robotic/_robotic.pyi,sha256=u2vE6wgidlvf3pZbN4qrluEfa5WQicjW9pKyHOHBfG0,73037
4
+ robotic/_robotic.so,sha256=Tqgyx570UEj0ahIYpsTnb6n5PADVZXKIGqMg92ap4m4,1218304
5
+ robotic/librai.so,sha256=XNl92szEsGOIZpVXuLrQXMkPj4tjNTF0B-jSQ1YGHR4,40175592
6
6
  robotic/manipulation.py,sha256=EhM_Zuv3vl8H4SBNqqYMD3NT9AzFUpOhr4PIzM4U7tM,22374
7
7
  robotic/meshTool,sha256=Dssd8R2xExwxcH_Qk7rNfcV8QNTBAYmp6ahfjjDJgY0,52168
8
8
  robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
@@ -16,7 +16,7 @@ robotic/ry-urdf2rai,sha256=88CFu5ikKsjy4wQixvCZqtNOqCheBiT18cjZfOsJA8A,7736
16
16
  robotic/ry-urdf2yaml,sha256=D36MR8Ui6Ry9V0TqJOBaPCWC89OZa43Fytz4P7Y4v0w,8543
17
17
  robotic/ry-view,sha256=T1Omn1QS7cNAtjQhBjMJTNz7aW5FgoOf9vBIfW0mFME,613
18
18
  robotic/test.pyi,sha256=vVxwRSerjUG4bpB7pIhof7ZatrBqwg3Bj5voywa-YTI,917
19
- robotic/version.py,sha256=rb-FgRm7ATGsW94hOY7BGKKSKdhF8udjtUpWZnvfXG4,27
19
+ robotic/version.py,sha256=SW2YeWiPKW-Tot6fpOkpbGAhN4XnTi_t4C0wLP7hIgY,27
20
20
  robotic/include/rai/Algo/MLcourse.h,sha256=TGkAJWC5ollGfPw0-gcYL0TZeDJiHtWFzkHSMK8_lqU,1828
21
21
  robotic/include/rai/Algo/RidgeRegression.h,sha256=VXiv6-xr3j--CN7DJTzUg9Xb49zV9FZ9dwzxP1CmcPM,3730
22
22
  robotic/include/rai/Algo/SplineCtrlFeed.h,sha256=9ZtYLHXx9sExj0lZV6F5ZWaCtkm0R4hMiYb-KJjktnc,3339
@@ -93,7 +93,7 @@ robotic/include/rai/Gui/plot.h,sha256=xhTBY84UN4KpgZsX7SJQGqVKd1jU7jojGVKFv02v0x
93
93
  robotic/include/rai/KOMO/PathSmoother.h,sha256=y-t3yVEZvxfQIs8_EA-WI7FJ_RzfbG8TEfdiNAruuUI,813
94
94
  robotic/include/rai/KOMO/komo.h,sha256=5TR2IVJzMkWB6oH7NCl1X5OiYtM_OERmf_UPLBaEOlQ,13249
95
95
  robotic/include/rai/KOMO/komo_NLP.h,sha256=kSzUMDmw4yzAXtpNB2v38dpw2tBS8n8R_op_T3yS3DQ,3681
96
- robotic/include/rai/KOMO/manipTools.h,sha256=CoIL9ElNFHAV-AU95wUtSgDWH9ceNx6WmGVTP8DZvaw,4173
96
+ robotic/include/rai/KOMO/manipTools.h,sha256=FTD6sq6EqBx25O81cgaSWsavdVw0-nYGlB1aldyn7ak,4187
97
97
  robotic/include/rai/KOMO/objective.h,sha256=Cl4-KjheRMNWoh_xFas5tLWMKSMlJf-HLDihfqvfcSw,2704
98
98
  robotic/include/rai/KOMO/pathTools.h,sha256=w0Wq6BGLBxG1LAZQBDmmPWTXzwxW3RHj2EX1cm92WeE,3288
99
99
  robotic/include/rai/KOMO/skeleton.h,sha256=NPaMfUMC_sUd3AjlLHTFpxWH4QtnKP_zzvHb2YvEigI,4437
@@ -115,15 +115,15 @@ robotic/include/rai/Kin/dof_particles.h,sha256=PboLndC5a5extUKAfUPAIsJEGTTs6_ACD
115
115
  robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV1xDtQ,792
116
116
  robotic/include/rai/Kin/feature.h,sha256=xicsrElMcYnYXdIXdO5LBLmXxvCGVUVgZJY2NIarO5I,3935
117
117
  robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
118
- robotic/include/rai/Kin/frame.h,sha256=8fqG2axtA0-kezy5fVeMFR9j30XRoU30Ous9P040vSk,14321
119
- robotic/include/rai/Kin/kin.h,sha256=hhjYI9RF55PjgJvdXhV4omyQK1iRG6MTi8B_GG9yYqM,15594
118
+ robotic/include/rai/Kin/frame.h,sha256=AU2IosH9FP2KzefWlcwyV5cLF973xG3EYILW2jM_JoY,14338
119
+ robotic/include/rai/Kin/kin.h,sha256=BFZAdY7RRHhBtcjSkZf32EFhJswot1u3mIUn3P13qt4,15547
120
120
  robotic/include/rai/Kin/kin_bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
121
121
  robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
122
122
  robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
123
- robotic/include/rai/Kin/kin_physx.h,sha256=EdZdS5feDjvhSuUWy_gdnSgdsh6iGBOVev0r8JtZDIY,1967
123
+ robotic/include/rai/Kin/kin_physx.h,sha256=A39_BMDTMGixK_37sdlofFHtV-Pf0n5JtcYpmdWNWMw,1871
124
124
  robotic/include/rai/Kin/proxy.h,sha256=jfFQrvokqvt8bGYEzGQoD2ZpnuWuLzCeOjFfUvdxcx0,1473
125
- robotic/include/rai/Kin/simulation.h,sha256=ImOsxqc1l9ygiJIAPhoHQPOyqZEVccyJvu1jFREwFaU,5132
126
- robotic/include/rai/Kin/viewer.h,sha256=jpP9MltococoD9hYS5GvJ99y-u75M4qVNX59rrwxVtQ,2071
125
+ robotic/include/rai/Kin/simulation.h,sha256=1zsYTtaZRW1L5l-YiHz7u1dL973XRRbtSQ6wNC6CwCI,5215
126
+ robotic/include/rai/Kin/viewer.h,sha256=GzObhDzEnIBYH0Yu_wCX8Cm2GAN5wuk-El09b2Vy_8w,2031
127
127
  robotic/include/rai/LGP/LGP_SkeletonTool.h,sha256=T4lXAUxY2QFo_ETZEm7RqRzfmU6NAHdVcow8qj_8-9Y,3240
128
128
  robotic/include/rai/LGP/LGP_Tool.h,sha256=vcQ3ixwJ4wepPDX8ZGkDBKGIpchJQWMOoMu82_cS_8I,4230
129
129
  robotic/include/rai/LGP/LGP_computers.h,sha256=paoCbDZnIo7OUeHKo5qkzTkKy1RIzDZocg4p6SXoObk,6480
@@ -357,7 +357,7 @@ robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_knuckle.ply
357
357
  robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_pad.ply,sha256=SjbdAIaUjNlUX7okwcDJWwfd0NaT6fazQwerbevKlbI,464
358
358
  robotic/rai-robotModels/robotiq/meshes/visual/robotiq_ft300.ply,sha256=0zn76K_SIR85pVNO8hmbnflRsmeFKHCuCykpVTfQf6s,38626
359
359
  robotic/rai-robotModels/robotiq/meshes/visual/robotiq_gripper_coupling.ply,sha256=ef10q5MdRRn2wjWPZTc3nrSVW401x9fHgkEdB_bdECA,30421
360
- robotic/rai-robotModels/scenarios/ballFinger.g,sha256=Qz69o30vKIpv2VAxR7wStafBMyOHnG055ftSGzgUx6Y,457
360
+ robotic/rai-robotModels/scenarios/ballFinger.g,sha256=-Ew0Lp4sS5r7DQqWVAG5W_7mdolaksrfs8IMyd9c-D8,461
361
361
  robotic/rai-robotModels/scenarios/climber.g,sha256=fUbSlFq_PVev2AxqLgytyfud6NUxvyO5NSon9wXSOJo,2016
362
362
  robotic/rai-robotModels/scenarios/climber2.g,sha256=xYGBfNgcLfPfI6WOxOOFpGCVkusoH7gVECEGj2bwc-4,2349
363
363
  robotic/rai-robotModels/scenarios/gripper.g,sha256=-yvc-cxVMxz7OmqVzhg6dyh21hBk9hD9wo5Uc2c4roY,447
@@ -366,7 +366,6 @@ robotic/rai-robotModels/scenarios/k00.g,sha256=Bjei9rYaLLwOhOSHFjaDGc7LFDraL8sxQ
366
366
  robotic/rai-robotModels/scenarios/kswing.g,sha256=k1bND_Hr-lE5sklOraw58HdUye6iW8jTdjBUwbyRCRM,3995
367
367
  robotic/rai-robotModels/scenarios/liftRing.g,sha256=fRKPEfUH_kDL4r7PmpO0kB2t1KeLV9QypxEEN_BNrqQ,1349
368
368
  robotic/rai-robotModels/scenarios/mobileMini.g,sha256=I7SE9YUUciZ1JrJG6BIAZ9Oho_eUa_Z76l5_h-B0wjY,1158
369
- robotic/rai-robotModels/scenarios/mobilePanda.g,sha256=AxH1JQJUgwnaLfrojvpP6DO83h_I6Vt3-la10TFpk0Y,608
370
369
  robotic/rai-robotModels/scenarios/pandaFloatingGripper.g,sha256=zYo9T6aFWREpP2gnME0iFwOErKR8Ram2gndnZ9s-xXA,1498
371
370
  robotic/rai-robotModels/scenarios/pandaSingle.g,sha256=H_UnXdMUbk16os9StOZB0PZMPL3FaGbCAZy0uUAKEKA,1147
372
371
  robotic/rai-robotModels/scenarios/panda_fixGripper.g,sha256=bhkRey6igLb18HlOFj7CpAjqF6R7Z3saxevipHAn4W0,337
@@ -374,6 +373,7 @@ robotic/rai-robotModels/scenarios/panda_fixRobotiq.g,sha256=77KlkNgYLNLz3YrO-OrW
374
373
  robotic/rai-robotModels/scenarios/panda_mobile.g,sha256=Om5rU2C6_GBKcZcRBZ0cTsk2gKxzwoSE-32dxBMQa-8,713
375
374
  robotic/rai-robotModels/scenarios/panda_moveGripper.g,sha256=HyyzCAg8ksvqGxjVrAqh6r16lvifGyjQd7Txa0wkR-Q,1920
376
375
  robotic/rai-robotModels/scenarios/panda_noGripper.g,sha256=FL5vq3ysYJl7f_y9xOBfSTYuB6btJO22f6g2Z-HU1tw,670
376
+ robotic/rai-robotModels/scenarios/panda_ranger.g,sha256=SpLnjGlW5qyBaVvhZ2IZw2eLnYvj3mVuDy_VmRAyhiA,472
377
377
  robotic/rai-robotModels/scenarios/pandasTable-calibrated.g,sha256=Bt6jEu-OUGclBJFBs2Ga2j6qTmP2Nqwecj9k0CH2cNY,467
378
378
  robotic/rai-robotModels/scenarios/pandasTable.g,sha256=BhXqZdyujDDnTCbsyHtwabTF6rRKW7WFJztmMhq2grQ,827
379
379
  robotic/rai-robotModels/scenarios/pendulum.g,sha256=bViHSQAV_y2uMzM0Wl7jfBiJioICtJ8V2d73_wtKX7o,669
@@ -397,16 +397,16 @@ robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/UpperArm.ply,sha2
397
397
  robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist1.ply,sha256=Qmlgt3g046pi8GPzlUBKbDcR-4JehZkXfSRNabe_RVI,282487
398
398
  robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist2.ply,sha256=br9zVxfiGNlEMAuVm36e2dJ0chDKpVMe3H1MCh-318E,784726
399
399
  robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist3.ply,sha256=el2jO6EOzwgz3ybkKjz9XcjCIQJWCpOCgTA7DSFHz6U,25593
400
- robotic-0.2.8.dev1.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
401
- robotic-0.2.8.dev1.data/scripts/ry-h5info,sha256=J-0Q4NRASUaQ_Xgii4Zyiw5mLp5XvvrrJvp-L248Ia4,606
402
- robotic-0.2.8.dev1.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
403
- robotic-0.2.8.dev1.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
404
- robotic-0.2.8.dev1.data/scripts/ry-test,sha256=61CnOEa-OqBsNznvXlZ_Xo5aCXx8QKYeokhsHcEUZac,962
405
- robotic-0.2.8.dev1.data/scripts/ry-urdf2rai,sha256=oeLKgNzYKV5yZ_vkvCrw65CY3ZAxL2ssFQQKcRuCNeo,7722
406
- robotic-0.2.8.dev1.data/scripts/ry-urdf2yaml,sha256=Nebu73TLTUx2p40-FLakek9n3y74cRJfRchV0vV0Gf0,8529
407
- robotic-0.2.8.dev1.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
408
- robotic-0.2.8.dev1.dist-info/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
409
- robotic-0.2.8.dev1.dist-info/METADATA,sha256=RdgGtwPUnnZK_3TKX3xOvyDTJC2cHHUpScg4KtgmkPg,6694
410
- robotic-0.2.8.dev1.dist-info/WHEEL,sha256=aDUArjEbIuDQzblE24IvdIsBzRhJEjiXmuNUYQ-gpaA,104
411
- robotic-0.2.8.dev1.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
412
- robotic-0.2.8.dev1.dist-info/RECORD,,
400
+ robotic-0.2.8.dev3.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
401
+ robotic-0.2.8.dev3.data/scripts/ry-h5info,sha256=J-0Q4NRASUaQ_Xgii4Zyiw5mLp5XvvrrJvp-L248Ia4,606
402
+ robotic-0.2.8.dev3.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
403
+ robotic-0.2.8.dev3.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
404
+ robotic-0.2.8.dev3.data/scripts/ry-test,sha256=61CnOEa-OqBsNznvXlZ_Xo5aCXx8QKYeokhsHcEUZac,962
405
+ robotic-0.2.8.dev3.data/scripts/ry-urdf2rai,sha256=oeLKgNzYKV5yZ_vkvCrw65CY3ZAxL2ssFQQKcRuCNeo,7722
406
+ robotic-0.2.8.dev3.data/scripts/ry-urdf2yaml,sha256=Nebu73TLTUx2p40-FLakek9n3y74cRJfRchV0vV0Gf0,8529
407
+ robotic-0.2.8.dev3.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
408
+ robotic-0.2.8.dev3.dist-info/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
409
+ robotic-0.2.8.dev3.dist-info/METADATA,sha256=N550qC0WrrX1PHqQ0XN3tixAh3DGpcLKOLckdIHBXYg,6694
410
+ robotic-0.2.8.dev3.dist-info/WHEEL,sha256=tOLjkKc8jTOST2UkvGV7NNle7DYgiJJymXz0pR15kJE,104
411
+ robotic-0.2.8.dev3.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
412
+ robotic-0.2.8.dev3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.2)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-linux_x86_64
5
5