robotic 0.3.1.dev1__cp311-cp311-manylinux2014_x86_64.whl → 0.3.1.dev3__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.

Potentially problematic release.


This version of robotic might be problematic. Click here for more details.

Files changed (45) hide show
  1. robotic/_robotic.pyi +35 -14
  2. robotic/_robotic.so +0 -0
  3. robotic/include/rai/Control/CtrlSolver.h +1 -1
  4. robotic/include/rai/Core/defines.h +7 -8
  5. robotic/include/rai/Core/graph.h +4 -21
  6. robotic/include/rai/Core/thread.h +11 -11
  7. robotic/include/rai/Core/util.h +48 -72
  8. robotic/include/rai/Geo/geo.h +1 -0
  9. robotic/include/rai/Geo/mesh.h +2 -1
  10. robotic/include/rai/Gui/RenderData.h +2 -2
  11. robotic/include/rai/Gui/opengl.h +2 -2
  12. robotic/include/rai/Gui/plot.h +1 -1
  13. robotic/include/rai/KOMO/komo.h +1 -1
  14. robotic/include/rai/KOMO/testProblems_KOMO.h +12 -9
  15. robotic/include/rai/Kin/frame.h +1 -1
  16. robotic/include/rai/Kin/kin.h +1 -1
  17. robotic/include/rai/Kin/kin_physx.h +2 -2
  18. robotic/include/rai/Kin/simulation.h +2 -2
  19. robotic/include/rai/Kin/viewer.h +1 -0
  20. robotic/include/rai/LGP/LGP_computers.h +1 -1
  21. robotic/include/rai/Optim/NLP.h +1 -1
  22. robotic/include/rai/Optim/NLP_GraphSolver.h +1 -1
  23. robotic/include/rai/Optim/testProblems_Opt.h +3 -9
  24. robotic/include/rai/PathAlgos/ConfigurationProblem.h +2 -2
  25. robotic/include/rai/PathAlgos/RRT_PathFinder.h +1 -1
  26. robotic/include/rai/Perception/surfels.h +1 -1
  27. robotic/include/rai/ry/types.h +1 -0
  28. robotic/librai.so +0 -0
  29. robotic/manipulation.py +5 -7
  30. robotic/meshTool +0 -0
  31. robotic/src/h5_helper.py +31 -0
  32. robotic/src/yaml_helper.py +10 -0
  33. robotic/version.py +1 -1
  34. {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev3.dist-info}/METADATA +1 -1
  35. {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev3.dist-info}/RECORD +45 -44
  36. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-bot +0 -0
  37. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-h5info +0 -0
  38. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-info +0 -0
  39. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-meshTool +0 -0
  40. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-test +0 -0
  41. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-urdfConvert.py +0 -0
  42. {robotic-0.3.1.dev1.data → robotic-0.3.1.dev3.data}/scripts/ry-view +0 -0
  43. {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev3.dist-info}/WHEEL +0 -0
  44. {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev3.dist-info}/licenses/LICENSE +0 -0
  45. {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev3.dist-info}/top_level.txt +0 -0
@@ -262,6 +262,7 @@ struct Camera {
262
262
  void focus(float x, float y, float z, bool makeUpright=false);
263
263
  void watchDirection(const Vector& d);
264
264
  void upright(const Vector& up=Vector(0, 0, 1));
265
+ bool checkFocus();
265
266
 
266
267
  //-- projection matrix stuff
267
268
  arr getT_IC() const;
@@ -21,7 +21,7 @@ struct SharedTextureImage{ byteA img; charA file; uint glBufferID=UINT32_MAX; };
21
21
 
22
22
  namespace rai {
23
23
 
24
- enum ShapeType { ST_none=-1, ST_box=0, ST_sphere, ST_capsule, ST_mesh, ST_cylinder, ST_marker, ST_pointCloud, ST_ssCvx, ST_ssBox, ST_ssCylinder, ST_ssBoxElip, ST_quad, ST_camera, ST_sdf, ST_tensor, ST_lines };
24
+ enum ShapeType : int { ST_none=-1, ST_box=0, ST_sphere, ST_capsule, ST_mesh, ST_cylinder, ST_marker, ST_pointCloud, ST_ssCvx, ST_ssBox, ST_ssCylinder, ST_ssBoxElip, ST_quad, ST_camera, ST_sdf, ST_tensor, ST_lines };
25
25
 
26
26
  //===========================================================================
27
27
  /// a mesh (arrays of vertices, triangles, colors & normals)
@@ -150,6 +150,7 @@ struct Mesh {
150
150
  void writeJson(std::ostream&);
151
151
  void readJson(std::istream&);
152
152
  void writeArr(std::ostream&);
153
+ void writeAssimp(const char* filename, const char* format);
153
154
  void writeH5(const char* filename, const String& group);
154
155
  void readH5(const char* filename, const String& group);
155
156
  void readArr(std::istream&);
@@ -99,9 +99,9 @@ struct DistMarkers {
99
99
  };
100
100
 
101
101
  struct RenderData {
102
- Mutex dataLock;
102
+ rai::Mutex dataLock;
103
103
 
104
- Render_Options opt;
104
+ rai::Render_Options opt;
105
105
 
106
106
  rai::Camera camera;
107
107
  rai::Array<std::shared_ptr<RenderItem>> items;
@@ -139,14 +139,14 @@ struct OpenGL {
139
139
  int scrollCounter=0;
140
140
  byteA captureImage;
141
141
  floatA captureDepth;
142
- Mutex dataLock; //'data' means anything: member fields (camera, variables), drawers, data the drawers access
142
+ rai::Mutex dataLock; //'data' means anything: member fields (camera, variables), drawers, data the drawers access
143
143
  // uint fbo, render_buf;
144
144
  uint offscreenFramebuffer=0;
145
145
  uint offscreenColor=0;
146
146
  uint offscreenDepth=0;
147
147
  Signaler isUpdating;
148
148
  Signaler watching;
149
- OpenGLDrawOptions drawOptions;
149
+ rai::OpenGLDrawOptions drawOptions;
150
150
  int selectID=-1;
151
151
  std::shared_ptr<rai::RenderData> _data;
152
152
 
@@ -72,6 +72,6 @@ struct PlotModule {
72
72
 
73
73
  }
74
74
 
75
- extern Singleton<rai::PlotModule> plot;
75
+ extern rai::Singleton<rai::PlotModule> plot;
76
76
 
77
77
  //===========================================================================
@@ -38,7 +38,7 @@ struct KOMO_Options {
38
38
  };
39
39
  }//namespace
40
40
 
41
- struct KOMO : NonCopyable {
41
+ struct KOMO : rai::NonCopyable {
42
42
 
43
43
  //-- the problem definition
44
44
  uint stepsPerPhase=0; ///< time slices per phase
@@ -14,6 +14,18 @@
14
14
 
15
15
  #include "../Optim/NLP.h"
16
16
 
17
+ namespace rai{
18
+ std::shared_ptr<NLP> make_NLP_Problem(str problem={});
19
+ StringA get_NLP_Problem_names();
20
+ }
21
+
22
+ struct KOMO_wrap : std::shared_ptr<NLP> {
23
+ std::shared_ptr<KOMO> komo;
24
+ KOMO_wrap(const std::shared_ptr<KOMO>& _komo) : komo(_komo){
25
+ std::shared_ptr<NLP>::operator=( komo->nlp() );
26
+ }
27
+ };
28
+
17
29
  shared_ptr<KOMO> problem_IK();
18
30
  shared_ptr<KOMO> problem_IKobstacle();
19
31
  shared_ptr<KOMO> problem_IKtorus();
@@ -22,15 +34,6 @@ shared_ptr<KOMO> problem_StableSphere();
22
34
 
23
35
  //===========================================================================
24
36
 
25
- struct Problem{
26
- std::shared_ptr<KOMO> komo;
27
- std::shared_ptr<NLP> nlp;
28
-
29
- void load(str problem={});
30
- };
31
-
32
- //===========================================================================
33
-
34
37
  //a set of spheres, confined in a box, and no collision, minimizing their height..
35
38
  struct SpherePacking : NLP{
36
39
  arr x; //position of spheres
@@ -174,7 +174,7 @@ struct Frame : NonCopyable {
174
174
  Frame& setConvexMesh(const arr& points, const byteA& colors= {}, double radius=0.);
175
175
  Frame& setSdf(std::shared_ptr<SDF>& sdf);
176
176
  Frame& setTensorShape(const floatA& data, const arr& size);
177
- Frame& setImplicitSurface(const floatA& data, const arr& size, uint blur, double resample);
177
+ Frame& setImplicitSurface(const floatA& data, const arr& size, uint blur=0, double resample=-1.);
178
178
  Frame& setColor(const arr& color);
179
179
  Frame& setJoint(rai::JointType jointType, const arr& limits={}, double scale=1., Frame* mimic=0);
180
180
  Frame& setContact(int cont);
@@ -271,7 +271,7 @@ public:
271
271
  void addProxies(const uintA& collisionPairs);
272
272
 
273
273
  /// @name extensions on demand
274
- std::shared_ptr<ConfigurationViewer> get_viewer(const char* window_title=nullptr, bool offscreen=false);
274
+ std::shared_ptr<ConfigurationViewer> get_viewer();
275
275
  OpenGL& gl();
276
276
  void view_lock(const char* _lockInfo);
277
277
  void view_unlock();
@@ -38,8 +38,8 @@ struct PhysXInterface {
38
38
  void pullMotorStates(rai::Configuration& C, arr& qDot);
39
39
 
40
40
  void changeObjectType(rai::Frame* f, int type);
41
- void addJoint(rai::Joint* j);
42
- void removeJoint(rai::Joint* j);
41
+ void addRigidJoint(rai::Frame* from, rai::Frame* to);
42
+ void removeJoint(const rai::Frame* from, const rai::Frame* to);
43
43
  void postAddObject(rai::Frame* f);
44
44
 
45
45
  void setGravity(float grav);
@@ -86,8 +86,8 @@ struct Simulation {
86
86
  //what are really the fundamental perturbations? Their (reactive?) management should be realized by 'agents'. We need a method to add purturbation agents.
87
87
  void addImp(ImpType type, const StringA& frames, const arr& parameters);
88
88
 
89
- void attach(Frame* gripper, Frame* obj);
90
- void detach(Frame* obj);
89
+ void attach(Frame* from, Frame* to);
90
+ void detach(Frame* from, Frame* to);
91
91
 
92
92
  //== management interface
93
93
 
@@ -40,6 +40,7 @@ struct ConfigurationViewer : RenderData {
40
40
  void savePng(str saveVideoPath="z.vid/", int count=-1);
41
41
 
42
42
  void raiseWindow();
43
+ void setWindow(const char* window_title, int w=400, int h=400);
43
44
  void glDraw(OpenGL&);
44
45
  void setCamera(rai::Frame* camFrame);
45
46
  void setCameraPose(const arr& pose);
@@ -145,7 +145,7 @@ struct LGPcomp_RRTpath : ComputeNode {
145
145
  LGPcomp_Waypoints* ways=0;
146
146
  LGPcomp_RRTpath* prev=0;
147
147
 
148
- Configuration C;
148
+ shared_ptr<Configuration> C;
149
149
  uint t;
150
150
  shared_ptr<RRT_PathFinder> rrt;
151
151
  arr q0, qT;
@@ -32,7 +32,7 @@ extern ObjectiveTypeA& NoObjectiveTypeA;
32
32
  *
33
33
  * Importantly: the Jacobian may be sparse! This allows to implicitly represent structured NLP (in contrast to explicit structure, see below)
34
34
  */
35
- struct NLP : NonCopyable {
35
+ struct NLP : rai::NonCopyable {
36
36
  //-- problem signature: needs to be defined in the constructor or a derived class
37
37
  uint dimension=0;
38
38
  ObjectiveTypeA featureTypes;
@@ -10,7 +10,7 @@
10
10
 
11
11
  #include "NLP_Solver.h"
12
12
 
13
- struct NLP_GraphSolver : NonCopyable {
13
+ struct NLP_GraphSolver : rai::NonCopyable {
14
14
  rai::NLP_Solver subSolver;
15
15
  arr x, dual;
16
16
  std::shared_ptr<NLP_Factored> P;
@@ -75,7 +75,7 @@ struct NLP_TrivialSquareFunction : NLP {
75
75
  struct NLP_RandomLP : NLP {
76
76
  arr randomG;
77
77
 
78
- NLP_RandomLP(uint dim);
78
+ NLP_RandomLP(uint dim=2);
79
79
 
80
80
  virtual void evaluate(arr& phi, arr& J, const arr& x);
81
81
 
@@ -126,13 +126,7 @@ struct SimpleConstraintFunction : NLP {
126
126
  struct NLP_RastriginSOS : NLP {
127
127
  double a;
128
128
  double condition;
129
- NLP_RastriginSOS() {
130
- a = rai::getParameter<double>("Rastrigin/a");
131
- condition = rai::getParameter<double>("benchmark/condition");
132
-
133
- dimension=2;
134
- featureTypes = rai::consts<ObjectiveType>(OT_sos, 4);
135
- }
129
+ NLP_RastriginSOS();
136
130
  virtual void evaluate(arr& phi, arr& J, const arr& x);
137
131
  };
138
132
 
@@ -143,7 +137,7 @@ struct NLP_Squared : NLP {
143
137
  arr C; /// $A = C^T C $
144
138
  uint n; /// dimensionality of $x$
145
139
 
146
- NLP_Squared(uint n, double condition=100., bool random=true);
140
+ NLP_Squared(uint n=2, double condition=100., bool random=true);
147
141
 
148
142
  virtual void evaluate(arr& phi, arr& J, const arr& x) { phi=C*x; if(!!J) J=C; }
149
143
  // virtual arr getInitializationSample(){ return ones(n); }
@@ -31,7 +31,7 @@ struct QueryResult {
31
31
  stdOutPipe(QueryResult)
32
32
 
33
33
  struct ConfigurationProblem {
34
- rai::Configuration& C;
34
+ shared_ptr<rai::Configuration> C;
35
35
  arr limits;
36
36
  uintA sphericalCoordinates;
37
37
 
@@ -45,7 +45,7 @@ struct ConfigurationProblem {
45
45
  uint evals=0;
46
46
  double queryTime=0.;
47
47
 
48
- ConfigurationProblem(rai::Configuration& _C, bool _useBroadCollisions=true, double _collisionTolerance=1e-3, int _verbose=0);
48
+ ConfigurationProblem(shared_ptr<rai::Configuration> _C, bool _useBroadCollisions=true, double _collisionTolerance=1e-3, int _verbose=0);
49
49
 
50
50
  void setExplicitCollisionPairs(const StringA& _collisionPairs);
51
51
 
@@ -78,7 +78,7 @@ struct RRT_PathFinder : NonCopyable {
78
78
  arr path;
79
79
 
80
80
  //setup
81
- void setProblem(Configuration& C);
81
+ void setProblem(shared_ptr<Configuration> C);
82
82
  void setStartGoal(const arr& _starts, const arr& _goals);
83
83
  void setExplicitCollisionPairs(const StringA& collisionPairs);
84
84
 
@@ -42,7 +42,7 @@ struct SurfelStatistics {
42
42
 
43
43
  struct Surfels {
44
44
  OpenGL gl;
45
- Mutex mx;
45
+ rai::Mutex mx;
46
46
  arr pos, norm, col, rad;
47
47
  rai::Array<SurfelStatistics> D;
48
48
  uint32A surfelIdx, rndPerm;
@@ -46,6 +46,7 @@ template<class T> rai::Array<T> vec2Array(const std::vector<T>& x) {
46
46
  }
47
47
 
48
48
  template<class T> pybind11::array_t<T> Array2numpy(const rai::Array<T>& x) {
49
+ if(!x.N) return pybind11::array_t<T>();
49
50
  return pybind11::array_t<T>(vecdim(x), x.p);
50
51
  }
51
52
 
robotic/librai.so CHANGED
Binary file
robotic/manipulation.py CHANGED
@@ -1,6 +1,7 @@
1
1
  import robotic as ry
2
2
  import numpy as np
3
3
  import time
4
+ import pprint
4
5
 
5
6
  class KOMO_ManipulationHelper():
6
7
 
@@ -361,18 +362,15 @@ class KOMO_ManipulationHelper():
361
362
  if not self.ret.feasible:
362
363
  print(f' -- infeasible:{self.info}\n {self.ret}')
363
364
  if verbose>1:
364
- print(self.komo.report(False, True))
365
+ objs = self.komo.report()
366
+ #pprint.pp(objs)
367
+ for k, v in objs.items():
368
+ print(f'objective {k}: {v}')
365
369
  self.komo.view(True, f'failed: {self.info}\n{self.ret}')
366
- if verbose>2:
367
- while(self.komo.view_play(True, 1.)):
368
- pass
369
370
  else:
370
371
  print(f' -- feasible:{self.info}\n {self.ret}')
371
372
  if verbose>2:
372
373
  self.komo.view(True, f'success: {self.info}\n{self.ret}')
373
- if verbose>3:
374
- while(self.komo.view_play(True, 1.)):
375
- pass
376
374
 
377
375
  return self.ret
378
376
 
robotic/meshTool CHANGED
Binary file
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env python3
2
+
3
+ import argparse
4
+ import h5py
5
+
6
+ class H5Writer:
7
+ def __init__(self, filename):
8
+ self.fil = h5py.File(filename, 'w')
9
+
10
+ def write(self, name, data, dtype = 'float32'):
11
+ self.fil.create_dataset(name, data=data, dtype=dtype)
12
+
13
+ class H5Reader:
14
+ def __init__(self, filename):
15
+ self.fil = h5py.File(filename, 'r')
16
+
17
+ def print_attrs(self,name, obj):
18
+ if isinstance(obj, h5py.Dataset):
19
+ print(' ', name, obj.name, obj.shape, obj.dtype, f'{obj.size*obj.dtype.itemsize/1024:.2f}kB')
20
+ if obj.dtype=='int8':
21
+ print(' ', ''.join([chr(x) for x in obj[()]]))
22
+ elif obj.size<20:
23
+ print(' ', obj[()])
24
+ else:
25
+ print('---', name)
26
+
27
+ def print_info(self):
28
+ self.fil.visititems(self.print_attrs)
29
+
30
+ def read(self, name):
31
+ return self.fil[name][()]
@@ -1,3 +1,6 @@
1
+ #!/usr/bin/env python3
2
+
3
+ import sys
1
4
  import yaml
2
5
  #from ruamel import yaml
3
6
 
@@ -17,3 +20,10 @@ yaml.add_representer(quoted_string, quoted_string_rep)
17
20
  def yaml_write_dict(data, filename):
18
21
  with open(filename, 'w') as fil:
19
22
  yaml.dump(noflow_dict(data), fil, default_flow_style=True, sort_keys=False, width=500)
23
+
24
+ if __name__ == "__main__":
25
+ filename = sys.argv[1]
26
+ with open(filename, 'r', encoding='utf-8') as fil:
27
+ data = yaml.safe_load(fil)
28
+ print(yaml.dump(noflow_dict(data), None, default_flow_style=True, sort_keys=False, width=500))
29
+
robotic/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.3.1.dev1'
1
+ __version__ = '0.3.1.dev3'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotic
3
- Version: 0.3.1.dev1
3
+ Version: 0.3.1.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,10 +1,10 @@
1
1
  robotic/DataGen.pyi,sha256=qDQjATpbIgFvOrWk7F3ZTVbOuyXjT5nwHxrsRfGxWRU,3716
2
2
  robotic/__init__.py,sha256=H8Qi-wA95h6SuziEFNZFEt6Tpt5UrttS9ftBjZCsMm4,421
3
- robotic/_robotic.pyi,sha256=Klp80NNepVEuO4LGDt8Dj1oFa2eQXUuBXVnIEni4_Y8,75449
4
- robotic/_robotic.so,sha256=BkkRDPzm3agPW2Bho3RyxgSGpqOvQDrbyJaK5XXUWQU,1242920
5
- robotic/librai.so,sha256=-zPXuRJsGNEU-9WpW9rdHfTV6PzktZ3VfaxFQ0tS-6U,38717824
6
- robotic/manipulation.py,sha256=EhM_Zuv3vl8H4SBNqqYMD3NT9AzFUpOhr4PIzM4U7tM,22374
7
- robotic/meshTool,sha256=wxcOt_C3PAn2vbnMpGYm57rjrU4iZLoEriODlQResmg,52176
3
+ robotic/_robotic.pyi,sha256=r9jK_izrLOBM9mzXfjlD7KX9T3_1bZ7X9XmOc6OTF40,76013
4
+ robotic/_robotic.so,sha256=RyPxZ8wgMyvY3HsWuGVWO_uKxgWEz1CIFR_dDYvl9RE,1247016
5
+ robotic/librai.so,sha256=34ir07GEF4Sm9yx8hCqWD7CGbgq_7NReaREfEldeKjQ,38758816
6
+ robotic/manipulation.py,sha256=0B7UzU9J7b4f19thz67TbvknoncxffQEMHSBB6ez1Jg,22279
7
+ robotic/meshTool,sha256=kYLO2HPXn8nj98Qx-MIvJYpkFzOk2zY9-d30DgFZT80,52176
8
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
@@ -17,7 +17,7 @@ robotic/ry-urdfConvert.py,sha256=8Efnq3PU202rrZrVEZiGwzFOJdvrLjTJ2q-gnY6-tiU,255
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=ee5r9ceLV_FxcfRiJUTpXgWH7pgTJpybqp6_A8CMpkc,27
20
+ robotic/version.py,sha256=8A91eHxAjFgTiNMg1NxW5Q6-QleQmDkpOEKoXwnRqq0,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
@@ -35,7 +35,7 @@ robotic/include/rai/Algo/spline.h,sha256=sc36vGI2Ypm1bAo1bgu1mB8D2I4pHlmvHKonmrQ
35
35
  robotic/include/rai/Control/CtrlMsgs.h,sha256=61lxkvpcVB2ZAL7qmB35CJ1KkhZUB27lUJ4ZMiFH0Co,2406
36
36
  robotic/include/rai/Control/CtrlObjective.h,sha256=fC-6cS0X0RR_7ooFm1xnAXlN2mgyF26qKfTjomUK45U,2591
37
37
  robotic/include/rai/Control/CtrlSet.h,sha256=o7u8N9ZSoMbiDR3TGKDjfIarIP1JAw0SHMFL18t1fv0,1404
38
- robotic/include/rai/Control/CtrlSolver.h,sha256=79BZgnFMvPwM1cAWoyIcRCGYLLF21ky_LLBass3wnUQ,1095
38
+ robotic/include/rai/Control/CtrlSolver.h,sha256=fwlXJcgHl01FL1n6HR-dKgEZKp8mYOhC085vb1yw4l0,1100
39
39
  robotic/include/rai/Control/CtrlSolvers.h,sha256=gxr_aTn-dyV1J6HxDSX8SVrqIPm14oxOkXx5-OGfamo,3094
40
40
  robotic/include/rai/Control/CtrlTargets.h,sha256=FRjAi9KwDL2-5ziKYP5g_-uR234SdPw70TNZbYn3QVg,5475
41
41
  robotic/include/rai/Control/RTControllerSimulation.h,sha256=iDpVRfivTlGS7DVWxVrS-xzCdVWrag1pUHsczZEb0po,1254
@@ -49,11 +49,11 @@ robotic/include/rai/Control/timingOpt.h,sha256=Ne_IH8QuFCID0Sy88LS5i3qkp1nL1FbIg
49
49
  robotic/include/rai/Core/array.h,sha256=YcI48DcBMUYgdlXP4V1dV6juBUe1iCtbKoxWjp4nCxI,26125
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
- robotic/include/rai/Core/defines.h,sha256=hBTgf5EiJ50rQYW1saGw8Ox87aKVFOYVKnFw0jojVW0,6894
53
- robotic/include/rai/Core/graph.h,sha256=Thi03-fM0hqdz1oAXJauWw4WpYQHL8n54XvU0NR2Oyo,21128
52
+ robotic/include/rai/Core/defines.h,sha256=Y5YF92lo5dV3r0W6DFCapY7_7vUk9dS1po6ixtNxGIg,6896
53
+ robotic/include/rai/Core/graph.h,sha256=XkRLNuU8Aav9FMm-zgdWP6025NN5gauO1HFkWB2-e34,20351
54
54
  robotic/include/rai/Core/h5.h,sha256=cfs8cew5QYpOxbWFZHV9TXVh5_dEJdFF1-aGZVR54EY,1162
55
- robotic/include/rai/Core/thread.h,sha256=wjwvXACwI8B6rhZSf2UDruWUb8kT9Xjm-VE-OnUQpwk,18248
56
- robotic/include/rai/Core/util.h,sha256=qcP8KmyVZ1Ht8pmqfAme_SRjQX5mDpuV4iKl56zyG2o,19453
55
+ robotic/include/rai/Core/thread.h,sha256=oCcqgzPHYoVwCbarDibmbTwxKxnGGwdK0e0re3yWfPY,18303
56
+ robotic/include/rai/Core/util.h,sha256=2Od8h_k5YTiE4WK1D0_Cr7A0dgOuHccY8f_cJi-x3CQ,18856
57
57
  robotic/include/rai/Core/util.ipp,sha256=soCVdpzWTpLL9i6rilFPNGozHZP40yhkmuXul7gHC7o,2157
58
58
  robotic/include/rai/Core/lapack/blaswrap.h,sha256=jl8W6GwBGMiU-ND9ILeKqWlIvryw7AsIydPUCQGT_ew,3750
59
59
  robotic/include/rai/Core/lapack/cblas.h,sha256=4bSmMzZ4idIPlmcwjw5HuwY1cs5RU73ZwmfydSpaBdk,32367
@@ -64,8 +64,8 @@ robotic/include/rai/DataGen/shapenetGrasps.h,sha256=NlpKWicgaylzw1si7EPzeM7cE_-V
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
67
- robotic/include/rai/Geo/geo.h,sha256=9_hpJsINF7Fpc6hb41LPsz9A_tCp48QgfB1HqAAeklU,14858
68
- robotic/include/rai/Geo/mesh.h,sha256=9tXbU-uuuBv56JUEHjZrGs_WZRCOC4HA2yd4Ex_P12g,6904
67
+ robotic/include/rai/Geo/geo.h,sha256=04dkfACju5vir09K2hS-p9Dptn6H1LLGprujnu4UocY,14879
68
+ robotic/include/rai/Geo/mesh.h,sha256=LrVD3QjxIPotRtFL5s6_t-9Lv5eoVkwRf1Br2C70Shg,6972
69
69
  robotic/include/rai/Geo/pairCollision.h,sha256=DOrRoKrYFHM_--h1Ubcgc7tc3xt6KyxA0ezLRCn5IaM,4256
70
70
  robotic/include/rai/Geo/qhull.h,sha256=dRAAHIdvujPPW1fXW4hXMjgixpBDajDg-y_OX1JMi_0,1890
71
71
  robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=hrC838CsYWQ6TXm536iNRwB8W5-62LNb-JPqPoDAFPE,4831
@@ -88,12 +88,12 @@ robotic/include/rai/Geo/ccd_rai/support.h,sha256=B9KBuOctG7Hx-e1TXpnkU667WVH7SP4
88
88
  robotic/include/rai/Geo/ccd_rai/vec3.h,sha256=ARkNnQz8yWf_Cs3vgt22zclN1cLeGmwWPTVHVpvmfEA,8115
89
89
  robotic/include/rai/Geo/ply/ply.h,sha256=_oAXgQ5CyHvUMtPDBxYtOBbnKDVoZf5PKMswisqvOeI,9384
90
90
  robotic/include/rai/Geo/vhacd/VHACD.h,sha256=QT_cT6PPzec_mxKODsS9cJGr6nBt6S8cUJF7dCeBQCc,258343
91
- robotic/include/rai/Gui/RenderData.h,sha256=SQEJbq1lTdCBsbMx8Yo6Dk_EPpQ2pNxM5l9D9xVU-qk,4986
91
+ robotic/include/rai/Gui/RenderData.h,sha256=6YDE58vdQ2E18IfgGUj40fmxqgj4-LZAVrZftkKG3-c,4996
92
92
  robotic/include/rai/Gui/color.h,sha256=4ElBkpWgwBuqQEFD4Mdhv_afZE4ul6NkptwFQ2oDS5o,2596
93
- robotic/include/rai/Gui/opengl.h,sha256=eFp5yfBh0sjqzGQ6xqeZdadsQzwYYVgeur_GMpmEdWA,9091
94
- robotic/include/rai/Gui/plot.h,sha256=xhTBY84UN4KpgZsX7SJQGqVKd1jU7jojGVKFv02v0xU,2341
93
+ robotic/include/rai/Gui/opengl.h,sha256=NipYBJ40hqC6K7xqmB0UYdU4rX_zQgnh7rsi5_Fg0-8,9101
94
+ robotic/include/rai/Gui/plot.h,sha256=Y_X9-V6IExvFafNzkG88O2wUGDCCnarUzpi5b0DKBcQ,2346
95
95
  robotic/include/rai/KOMO/PathSmoother.h,sha256=y-t3yVEZvxfQIs8_EA-WI7FJ_RzfbG8TEfdiNAruuUI,813
96
- robotic/include/rai/KOMO/komo.h,sha256=q4BhbBXiV3hrI05iqJdMIKYcqFVrozo2fmEIDY1PpDA,13395
96
+ robotic/include/rai/KOMO/komo.h,sha256=lyhu0CTfJliiHRywA-Mk8x15ro4-Z3DhTP3IOtmQ1Lw,13400
97
97
  robotic/include/rai/KOMO/komo_NLP.h,sha256=kSzUMDmw4yzAXtpNB2v38dpw2tBS8n8R_op_T3yS3DQ,3681
98
98
  robotic/include/rai/KOMO/manipTools.h,sha256=WMdCxQB2rTcb3kzbiW9CHDpmGJZcKRqAnT861_iTsH4,4233
99
99
  robotic/include/rai/KOMO/objective.h,sha256=Cl4-KjheRMNWoh_xFas5tLWMKSMlJf-HLDihfqvfcSw,2704
@@ -102,7 +102,7 @@ robotic/include/rai/KOMO/skeleton.h,sha256=NPaMfUMC_sUd3AjlLHTFpxWH4QtnKP_zzvHb2
102
102
  robotic/include/rai/KOMO/skeletonSymbol.h,sha256=mrPqRn_1i4PuqbkQBhKEYc5WPEGqPjBN6TvwZxZ5e7A,1261
103
103
  robotic/include/rai/KOMO/splined.h,sha256=G_fu9gXCboJLkwhwu77F6F3Ei6deqzbvkgP8r9kiNL8,903
104
104
  robotic/include/rai/KOMO/switch.h,sha256=teNNnHFe4h9W5rLlL3TFBsq97ni-RUEhcxw4uVPYR1g,1850
105
- robotic/include/rai/KOMO/testProblems_KOMO.h,sha256=zpujbYe9Q97Mx_m91LQcPhEW8YVSitzYO_7I8l7M3WI,2882
105
+ robotic/include/rai/KOMO/testProblems_KOMO.h,sha256=K68JhZOpPcB9A0K2IEnfOJHG3-QweSDmHB2u_YfjeIA,3000
106
106
  robotic/include/rai/Kin/F_LeapCost.h,sha256=wNAUNgAJjLirMurF67BlFLHtjyuXy1EPr--9XLBe6Wk,556
107
107
  robotic/include/rai/Kin/F_collisions.h,sha256=Atq9LPVOkEuMF-kSHk78cGjaJYwDIbvrTxHmLBJw3yk,2092
108
108
  robotic/include/rai/Kin/F_forces.h,sha256=tHyBQcKhi4ZdsHoBU5bu7kLWVm611SfEYG_o-vMSDN0,6694
@@ -117,18 +117,18 @@ robotic/include/rai/Kin/dof_particles.h,sha256=PboLndC5a5extUKAfUPAIsJEGTTs6_ACD
117
117
  robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV1xDtQ,792
118
118
  robotic/include/rai/Kin/feature.h,sha256=xicsrElMcYnYXdIXdO5LBLmXxvCGVUVgZJY2NIarO5I,3935
119
119
  robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
120
- robotic/include/rai/Kin/frame.h,sha256=xqNwSGPxCmGOgCEtMZmeE80RJLXcHdpJRHWIkxbqCwU,14617
121
- robotic/include/rai/Kin/kin.h,sha256=FB_nitzdTEMldqwTtJZVPKh4t1M9blrcEv9Q-jiaih8,16114
120
+ robotic/include/rai/Kin/frame.h,sha256=Glq5nVSukaxl4NITLx0cabIrGToUVhLPKy0zP7QQkhA,14623
121
+ robotic/include/rai/Kin/kin.h,sha256=uu2rwBXk0vMLH4NzXJTBHyV2sRRXK_zHrnoy61zh0qc,16060
122
122
  robotic/include/rai/Kin/kin_bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
123
123
  robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
124
124
  robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
125
- robotic/include/rai/Kin/kin_physx.h,sha256=QfYi_-dIvVm7dFgG2SA3csHeb0peRMEhrf-I6pFOMPQ,1832
125
+ robotic/include/rai/Kin/kin_physx.h,sha256=03YEr0M3ieuVnfwuHl9J2xRU2FwpLGvq4gUTjJqcDqA,1887
126
126
  robotic/include/rai/Kin/proxy.h,sha256=jfFQrvokqvt8bGYEzGQoD2ZpnuWuLzCeOjFfUvdxcx0,1473
127
- robotic/include/rai/Kin/simulation.h,sha256=oXaLa1VJXdhtsCFl6OGtAlT3PuCY9gg1OJVqZmRwOWA,5324
128
- robotic/include/rai/Kin/viewer.h,sha256=07Ul8z4dOjQC8cnz5fs3qjJT1Oulj5saF_kjl2Z4kek,2366
127
+ robotic/include/rai/Kin/simulation.h,sha256=RlFZ7w9xaQZ6GY_Wwb4BXbgy3rhzZaKnujVzM2vqLY4,5332
128
+ robotic/include/rai/Kin/viewer.h,sha256=XhfZ3QUYdCuye3NnCwPe2XnoJAqnf9RCtMAZLsc3fd4,2432
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
131
- robotic/include/rai/LGP/LGP_computers.h,sha256=paoCbDZnIo7OUeHKo5qkzTkKy1RIzDZocg4p6SXoObk,6480
131
+ robotic/include/rai/LGP/LGP_computers.h,sha256=YmHWOrSGz5HHNY5mUQheD-kPhOvzO3HsVRcaGvpME6o,6492
132
132
  robotic/include/rai/LGP/LGP_node.h,sha256=gMNQLfkbdMR1C-sNufI3K23Qt_Su3tqfIWz46Ta0JNo,4100
133
133
  robotic/include/rai/LGP/LGP_tree.h,sha256=J6W4Qypr70g0EZg30tTZBuca_6_O0sDQAGGv6Ow8oaE,4001
134
134
  robotic/include/rai/LGP/Motif.h,sha256=-1cYCDDxJK3at3LKT2R-qRoum7o7CnziBg30yijt4Ls,592
@@ -138,9 +138,9 @@ robotic/include/rai/Logic/folWorld.h,sha256=XpqTWOIvZbKlS_vsJkXOexrhjfy3_iywebFe
138
138
  robotic/include/rai/Logic/treeSearchDomain.h,sha256=sO5Y6o9wRTQxfST9YyJw3P0KcqGX7ISqbIN-uGQ5abU,3882
139
139
  robotic/include/rai/Optim/BayesOpt.h,sha256=GqOqGk5Y0USf513duMPtt--TBYGqujdsvY2qi17jVxI,1241
140
140
  robotic/include/rai/Optim/GlobalIterativeNewton.h,sha256=WRaTFUrx0A1FO7d7shgZbJVaC5AWKZT5PTD8LnuPXiE,801
141
- robotic/include/rai/Optim/NLP.h,sha256=rWs2HDuaIQnrz2DZeiCuLjYrENb5mfdUiCcht6dQaus,8195
141
+ robotic/include/rai/Optim/NLP.h,sha256=UwlTvUopRLYldVtx_WiFYDegPCssd4slWMQQD2EqI9s,8200
142
142
  robotic/include/rai/Optim/NLP_Factory.h,sha256=xDn73B-u6fFvtu-udkXgyTiFyjTzfJNHwUm6z88FiOo,1979
143
- robotic/include/rai/Optim/NLP_GraphSolver.h,sha256=Wwq4YiU_35Wa0qERa9Pibo4EqzxzJcIYDTSh5Gol9so,1167
143
+ robotic/include/rai/Optim/NLP_GraphSolver.h,sha256=Te5_uyLrBvHANfGv9uHdR6YPuCWCqgJqj9EL8WYfF14,1172
144
144
  robotic/include/rai/Optim/NLP_Sampler.h,sha256=JaOEc8YJwatW5toOviTFXlOoF3Dg8ZWPM9zejyW9ND8,4643
145
145
  robotic/include/rai/Optim/NLP_Solver.h,sha256=Y07FfnrTjkVldXFU5HJ0SB0pOlGGivQ9k_4vpEM3YoA,2482
146
146
  robotic/include/rai/Optim/SlackGaussNewton.h,sha256=b5w2ti8AqqothZtCFevUNSs1Y5dz4LOLBJXZQvoKNmU,1338
@@ -153,11 +153,11 @@ robotic/include/rai/Optim/opt-ipopt.h,sha256=1v147tZVY3MuNMRLaFFWxKC7fyNP5-59WJz
153
153
  robotic/include/rai/Optim/opt-nlopt.h,sha256=R0ma9SjxcVU9nI7H39QOWUIPy95H4AiQwLRHz3DRe7k,970
154
154
  robotic/include/rai/Optim/options.h,sha256=JSqHw6agqLkvfvw6kd54KHQ6Hz7xZyHeRkWAumYUag0,1876
155
155
  robotic/include/rai/Optim/primalDual.h,sha256=xHXhAPbZWPVj17ZGpDr4OrLJLYj_G1Wr_k4TCPFBiHc,1272
156
- robotic/include/rai/Optim/testProblems_Opt.h,sha256=rYPVdz7y1pkmzJH6aIw3pQ6JqN2_HhJ50CAAdsL2r9A,6531
156
+ robotic/include/rai/Optim/testProblems_Opt.h,sha256=4gpRMynlhr-01r3Tls1C4pueylO_UsCw8wElbgxhMf8,6338
157
157
  robotic/include/rai/Optim/utils.h,sha256=VMTSVUcg3UWN8RhBYSSyqoBCa_AcUrZ_7zvcz3XWEC0,3517
158
- robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=6Mr3MjD3T3lG3OCCDLKrPRA6WddIFpbRRl_O1gVFP5U,1329
158
+ robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=Zl_J3yooYFxA2-z-ulFL67nfzQBX90hUbD_cVFzpb3U,1351
159
159
  robotic/include/rai/PathAlgos/PathResult.h,sha256=xxZiD8ClGKO719mQR50BsIzOlHeoH0UH4QNzWifoz6c,1070
160
- robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=44ahBizEoW1HgXh5LPgIL9poCIgaaTiTUeHsfV8Q5kI,3282
160
+ robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=DQ3ceE8A6CJ7xaf0NOihTy1w0WjAEJnPJU0J6NaDHe8,3293
161
161
  robotic/include/rai/Perception/audio.h,sha256=HQPC8bmOv4Mdfl8f71eUmKFlRE0_N_spY3bg6YJzduo,1105
162
162
  robotic/include/rai/Perception/avutil.h,sha256=RlxtNGw8mvKYrWI7Sy8neILBDb1SF2wuf4hFKjPx-4w,802
163
163
  robotic/include/rai/Perception/colorseg.h,sha256=1zax9KZGSJcTZ7MTnLZBSbHlZsJqQ1NkvU6cStzQ4vc,2314
@@ -174,7 +174,7 @@ robotic/include/rai/Perception/pcl.h,sha256=bb_INnIt89xfwvx3gkLRqRPiH2OOpdPL7f-3
174
174
  robotic/include/rai/Perception/pclPlaneExtraction.h,sha256=RTyPIrxS4oZGZ1rXAhaRWxBrs3YX-PHmUimLG7t0LG0,2077
175
175
  robotic/include/rai/Perception/pixel_format.h,sha256=dNRLdsMdckP0npn19WO_37RpH3poNamOT4JfEM6QAco,1064
176
176
  robotic/include/rai/Perception/pointcloud_io.h,sha256=G908jUYDi8QFXmBDXrIuUrqZh24utcv3ABK2pWmhB50,1085
177
- robotic/include/rai/Perception/surfels.h,sha256=q9VGx6ncsv74WPsUn2-wMBirsuhwzeqUkOkEZD2l7DQ,1947
177
+ robotic/include/rai/Perception/surfels.h,sha256=OblVWjI_bEpQwqcANJ8cHYvah4BraYmLpicN_Vn39Dg,1952
178
178
  robotic/include/rai/Perception/videoEncoder.h,sha256=TWphAWKPuvwwM6kNSfbEv57w9_LzZSbx-zkovfPVGA0,1823
179
179
  robotic/include/rai/Search/AStar.h,sha256=qXZybtUHusQUjmA2xYCvKtLpe8Saq73klpnBuz1plZc,1209
180
180
  robotic/include/rai/Search/ComputeNode.h,sha256=JcUy-8fmMsFbluSriDOh9FgLrJhaC4ggoiQwQa-1IZ0,3420
@@ -190,7 +190,7 @@ robotic/include/rai/ry/py-Quaternion.h,sha256=EydIMfUB_Zf9H21x29dhBjDm7472Ge_XD6
190
190
  robotic/include/rai/ry/py-Simulation.h,sha256=Kc4e6pK1yQyxDMCQu1HvXOYt9IlUiojBYFdqv3PP1AY,437
191
191
  robotic/include/rai/ry/py-Spline.h,sha256=gR8Cvwt5PlzlolxegS1wUEEOQj9RydOp1gS67Zxm0jk,433
192
192
  robotic/include/rai/ry/py-tests.h,sha256=-l_0V-yRqeOEztqCo_BAdcKCAMovyd8-9tnrytM5pQM,432
193
- robotic/include/rai/ry/types.h,sha256=KQ_byer3O3iFnrtBNyg5sptEfCsujbEeo6edOHSNzaM,8495
193
+ robotic/include/rai/ry/types.h,sha256=gfyXJCRwkvrQ8jibdJVMRxPUIhXMUQJlgws9ocKyB8c,8537
194
194
  robotic/rai-robotModels/g1/g1.g,sha256=9lA31eCRoFENw9Nbg04KoX3diIIQYKz981oRYNKLvO4,499
195
195
  robotic/rai-robotModels/g1/g1_29dof_conv.yml,sha256=KU7Usxi4fMCKFH7Jfb6Jvs98fbK1UozBHCeTnD0KPPU,12132
196
196
  robotic/rai-robotModels/g1/g1_clean.g,sha256=jXlPAlL02pPSybl5DgazO0Qf96wAg2tbVwXKYh9e5XQ,11883
@@ -351,20 +351,21 @@ robotic/rai-robotModels/ur10/meshes/wrist2.h5,sha256=fJSQ4Jh-ChmwvRYfDobqXssVaBZ
351
351
  robotic/rai-robotModels/ur10/meshes/wrist3.h5,sha256=F8FrYVVp8YBdkgJ6EHKb5r_rm0kyhxf6b8KbwHjeegk,20770
352
352
  robotic/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
353
  robotic/src/cleanMeshes.py,sha256=42T9WwN_cn4u_s_BzN2eRfBQxmZTEQ6ZYPBtsesA5BM,1678
354
+ robotic/src/h5_helper.py,sha256=erZTmCSWIROWcn4MojakXSdvFtkWaDpaIhFCf7y8_Cc,899
354
355
  robotic/src/mesh_helper.py,sha256=AMSOz3Eew9uJkDm5tFThbfJKcEQCmGyRLN4bZphISNk,16691
355
356
  robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnEg,3833
356
357
  robotic/src/mujoco_io.py,sha256=drLNE4yo30hpOY01-AsuCWKLvNoG5w2YDSzR_rlyfz0,9474
357
358
  robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
358
- robotic/src/yaml_helper.py,sha256=eCUK6w4FCRpBqNgP7FdVDbJf2H7Y1bfIGzs89nOrAsY,637
359
- robotic-0.3.1.dev1.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
360
- robotic-0.3.1.dev1.data/scripts/ry-h5info,sha256=eh9McT5Ury7bbTudxkSOLWo-tZ6heiSEpGStM07N-Dc,810
361
- robotic-0.3.1.dev1.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
362
- robotic-0.3.1.dev1.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
363
- robotic-0.3.1.dev1.data/scripts/ry-test,sha256=vcaPrFq9Co9N2F2Mdl2_1CTieOBssSoEhU67wXqJ2EY,981
364
- robotic-0.3.1.dev1.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
365
- robotic-0.3.1.dev1.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
366
- robotic-0.3.1.dev1.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
367
- robotic-0.3.1.dev1.dist-info/METADATA,sha256=apPHuJz91WitM1d80bDThlJTqzSWp7DtVXRUQZGxFNE,6659
368
- robotic-0.3.1.dev1.dist-info/WHEEL,sha256=ITVdYpiTGnryqIbOR0i1wcdISo8YPJzlx8rAyocabzM,104
369
- robotic-0.3.1.dev1.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
370
- robotic-0.3.1.dev1.dist-info/RECORD,,
359
+ robotic/src/yaml_helper.py,sha256=Jf9QaKSNQrPkUPqd5FUDv7_h0wDlGXrhCdMwu6y-Nh0,925
360
+ robotic-0.3.1.dev3.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
361
+ robotic-0.3.1.dev3.data/scripts/ry-h5info,sha256=eh9McT5Ury7bbTudxkSOLWo-tZ6heiSEpGStM07N-Dc,810
362
+ robotic-0.3.1.dev3.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
363
+ robotic-0.3.1.dev3.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
364
+ robotic-0.3.1.dev3.data/scripts/ry-test,sha256=vcaPrFq9Co9N2F2Mdl2_1CTieOBssSoEhU67wXqJ2EY,981
365
+ robotic-0.3.1.dev3.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
366
+ robotic-0.3.1.dev3.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
367
+ robotic-0.3.1.dev3.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
368
+ robotic-0.3.1.dev3.dist-info/METADATA,sha256=gou7C8EenDS3YOxRuIfKpRM2eT88VJybxYMgQJlVGvo,6659
369
+ robotic-0.3.1.dev3.dist-info/WHEEL,sha256=ITVdYpiTGnryqIbOR0i1wcdISo8YPJzlx8rAyocabzM,104
370
+ robotic-0.3.1.dev3.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
371
+ robotic-0.3.1.dev3.dist-info/RECORD,,