robotic 0.2.8.dev4__cp311-cp311-manylinux2014_x86_64.whl → 0.2.9__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 (29) hide show
  1. robotic/_robotic.so +0 -0
  2. robotic/include/rai/Core/array.ipp +3 -0
  3. robotic/include/rai/Core/graph.h +4 -12
  4. robotic/include/rai/Geo/mesh.h +4 -1
  5. robotic/include/rai/Gui/RenderData.h +3 -2
  6. robotic/include/rai/Kin/kin.h +1 -0
  7. robotic/librai.so +0 -0
  8. robotic/meshTool +0 -0
  9. robotic/rai-robotModels/ranger/meshes/cleanMeshes.mlx +23 -0
  10. robotic/rai-robotModels/ranger/meshes/cleanMeshes.sh +8 -0
  11. robotic/rai-robotModels/ranger/meshes/ranger_mini3.ply +0 -0
  12. robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.ply +0 -0
  13. robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.ply +0 -0
  14. robotic/rai-robotModels/ranger/ranger.g +33 -0
  15. robotic/rai-robotModels/ranger/ranger_clean.g +18 -0
  16. robotic/version.py +1 -1
  17. {robotic-0.2.8.dev4.dist-info → robotic-0.2.9.dist-info}/METADATA +1 -1
  18. {robotic-0.2.8.dev4.dist-info → robotic-0.2.9.dist-info}/RECORD +29 -22
  19. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-bot +0 -0
  20. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-h5info +0 -0
  21. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-info +0 -0
  22. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-meshTool +0 -0
  23. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-test +0 -0
  24. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-urdf2rai +0 -0
  25. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-urdf2yaml +0 -0
  26. {robotic-0.2.8.dev4.data → robotic-0.2.9.data}/scripts/ry-view +0 -0
  27. {robotic-0.2.8.dev4.dist-info → robotic-0.2.9.dist-info}/LICENSE +0 -0
  28. {robotic-0.2.8.dev4.dist-info → robotic-0.2.9.dist-info}/WHEEL +0 -0
  29. {robotic-0.2.8.dev4.dist-info → robotic-0.2.9.dist-info}/top_level.txt +0 -0
robotic/_robotic.so CHANGED
Binary file
@@ -777,6 +777,7 @@ template<class T> Array<T> Array<T>::operator()(std::pair<int, int> I) const {
777
777
 
778
778
  /// range reference access
779
779
  template<class T> Array<T> Array<T>::operator()(int i, std::pair<int, int> J) const {
780
+ if(i<0) i += d0;
780
781
  Array<T> z;
781
782
  z.referToRange(*this, i, J.first, J.second);
782
783
  // if(J.size()==2)
@@ -788,6 +789,8 @@ template<class T> Array<T> Array<T>::operator()(int i, std::pair<int, int> J) co
788
789
 
789
790
  /// range reference access
790
791
  template<class T> Array<T> Array<T>::operator()(int i, int j, std::initializer_list<int> K) const {
792
+ if(i<0) i += d0;
793
+ if(j<0) j += d1;
791
794
  Array<T> z;
792
795
  if(K.size()==2) z.referToRange(*this, i, j, K.begin()[0], K.begin()[1]);
793
796
  else if(K.size()==0) z.referToDim(*this, i, j);
@@ -120,7 +120,6 @@ struct Graph : NodeL {
120
120
  //-- adding nodes
121
121
  template<class T> Node_typed<T>* add(const char* key);
122
122
  template<class T> Node_typed<T>* add(const char* key, const T& x);
123
- template<class T> Node_typed<T>* add(const char* key, const T& x, const NodeL& parents);
124
123
  template<class T> Node_typed<T&>* addRef(const char* key, const T& x);
125
124
 
126
125
  //Node_typed<int>* add(const uintA& parentIdxs); ///< add 'vertex tupes' (like edges) where vertices are referred to by integers
@@ -138,6 +137,9 @@ struct Graph : NodeL {
138
137
  NodeL findNodesOfType(const std::type_info& type, const char* key, bool recurseUp=false, bool recurseDown=false) const;
139
138
  NodeL findGraphNodesWithTag(const char* tag) const;
140
139
 
140
+ //
141
+ 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; }
142
+
141
143
  //-- get nodes
142
144
  Node* operator[](const char* key) const { return findNode(key); } ///< returns nullptr if not found
143
145
  Node* getNode(const char* key) const { return findNode(key); } ///< returns nullptr if not found
@@ -369,12 +371,6 @@ struct Node_typed : Node {
369
371
  if(is<Graph>()) graph().isNodeOfGraph = this; //this is the only place where isNodeOfGraph is set
370
372
  }
371
373
 
372
- Node_typed(Graph& container, const char* key, const T& _value, const NodeL& parents)
373
- : Node(typeid(T), container, key), value(_value) {
374
- if(parents.N) setParents(parents);
375
- if(is<Graph>()) graph().isNodeOfGraph = this; //this is the only place where isNodeOfGraph is set
376
- }
377
-
378
374
  virtual ~Node_typed() {
379
375
  }
380
376
 
@@ -409,7 +405,7 @@ struct Node_typed : Node {
409
405
  g.copy(graph());
410
406
  return g.isNodeOfGraph;
411
407
  }
412
- return container.add<T>(key, value, parents);
408
+ return container.add<T>(key, value)->setParents(parents);
413
409
  }
414
410
  };
415
411
  } //namespace
@@ -536,10 +532,6 @@ template<class T> Node_typed<T>* Graph::add(const char* key, const T& x) {
536
532
  return new Node_typed<T>(*this, key, x);
537
533
  }
538
534
 
539
- template<class T> Node_typed<T>* Graph::add(const char* key, const T& x, const NodeL& parents) {
540
- return new Node_typed<T>(*this, key, x, parents);
541
- }
542
-
543
535
  template<class T> Node_typed<T&>* Graph::addRef(const char* key, const T& x) {
544
536
  return new Node_typed<T&>(*this, key, (T&)x);
545
537
  }
@@ -17,6 +17,7 @@ namespace rai { struct Mesh; }
17
17
  typedef rai::Array<rai::Mesh> MeshA;
18
18
  typedef rai::Array<rai::Mesh*> MeshL;
19
19
  struct ANN;
20
+ struct SharedTextureImage{ byteA img; uint glBufferID=UINT32_MAX; };
20
21
 
21
22
  namespace rai {
22
23
 
@@ -33,7 +34,9 @@ struct Mesh {
33
34
  arr Tn; ///< triangle normals (optional)
34
35
 
35
36
  arr texCoords; ///< texture coordinates for each vertex, dimensionality (V.d0, 2)
36
- byteA texImg; ///< texture image
37
+ // byteA texImg; ///< texture image
38
+ shared_ptr<SharedTextureImage> _texImg;
39
+ SharedTextureImage& texImg(const char* file=0);
37
40
 
38
41
  uintA cvxParts;
39
42
  uintAA graph; ///< for every vertex, the set of neighboring vertices
@@ -25,8 +25,9 @@ enum RenderType { _solid, _shadow, _tensor, _text, _marker, _transparent, _all }
25
25
 
26
26
  struct RenderAsset{
27
27
  floatA vertices, colors, normals; //for 2D textures: colors are vertex-wise texture coordinates
28
- byteA texture;
29
- GLuint vao, vertexBuffer, colorBuffer, normalBuffer, textureBuffer;
28
+ GLuint vao, vertexBuffer, colorBuffer, normalBuffer;
29
+ shared_ptr<SharedTextureImage> _texture;
30
+ SharedTextureImage& texture(){ if(!_texture) _texture=make_shared<SharedTextureImage>(); return *_texture; }
30
31
  GLenum mode=GL_TRIANGLES;
31
32
  uint textureDim=0;
32
33
  bool initialized=false;
@@ -272,6 +272,7 @@ public:
272
272
  FeatherstoneInterface& fs();
273
273
  bool hasView();
274
274
  int view(bool pause=false, const char* txt=nullptr);
275
+ void view_savePng(str saveVideoPath="z.vid/", int count=-1);
275
276
  void saveVideoPic(uint& t, const char* pathPrefix="vid/");
276
277
  void glAdd(void (*call)(void*, OpenGL&), void* classP);
277
278
  int glAnimate();
robotic/librai.so CHANGED
Binary file
robotic/meshTool CHANGED
Binary file
@@ -0,0 +1,23 @@
1
+ <!DOCTYPE FilterScript>
2
+ <FilterScript>
3
+ <filter name="Merge Close Vertices">
4
+ <Param tooltip="All the vertices that closer than this threshold are merged together. Use very small values, default values is 1/10000 of bounding box diagonal. " type="RichAbsPerc" description="Merging distance" min="0" value="0.001" name="Threshold" max="0.00938277"/>
5
+ </filter>
6
+ <filter name="Repair non Manifold Edges by removing faces"/>
7
+ <filter name="Simplification: Quadric Edge Collapse Decimation">
8
+ <Param tooltip="The desired final number of faces." type="RichInt" description="Target number of faces" value="20000" name="TargetFaceNum"/>
9
+ <Param tooltip="If non zero, this parameter specifies the desired final size of the mesh as a percentage of the initial size." type="RichFloat" description="Percentage reduction (0..1)" value="0" name="TargetPerc"/>
10
+ <Param tooltip="Quality threshold for penalizing bad shaped faces.&lt;br>The value is in the range [0..1]&#xa; 0 accept any kind of face (no penalties),&#xa; 0.5 penalize faces with quality &lt; 0.5, proportionally to their shape&#xa;" type="RichFloat" description="Quality threshold" value="0.3" name="QualityThr"/>
11
+ <Param tooltip="The simplification process tries to do not affect mesh boundaries during simplification" type="RichBool" description="Preserve Boundary of the mesh" value="false" name="PreserveBoundary"/>
12
+ <Param tooltip="The importance of the boundary during simplification. Default (1.0) means that the boundary has the same importance of the rest. Values greater than 1.0 raise boundary importance and has the effect of removing less vertices on the border. Admitted range of values (0,+inf). " type="RichFloat" description="Boundary Preserving Weight" value="1" name="BoundaryWeight"/>
13
+ <Param tooltip="Try to avoid face flipping effects and try to preserve the original orientation of the surface" type="RichBool" description="Preserve Normal" value="false" name="PreserveNormal"/>
14
+ <Param tooltip="Avoid all the collapses that should cause a topology change in the mesh (like closing holes, squeezing handles, etc). If checked the genus of the mesh should stay unchanged." type="RichBool" description="Preserve Topology" value="false" name="PreserveTopology"/>
15
+ <Param tooltip="Each collapsed vertex is placed in the position minimizing the quadric error.&#xa; It can fail (creating bad spikes) in case of very flat areas. &#xa;If disabled edges are collapsed onto one of the two original vertices and the final mesh is composed by a subset of the original vertices. " type="RichBool" description="Optimal position of simplified vertices" value="true" name="OptimalPlacement"/>
16
+ <Param tooltip="Add additional simplification constraints that improves the quality of the simplification of the planar portion of the mesh, as a side effect, more triangles will be preserved in flat areas (allowing better shaped triangles)." type="RichBool" description="Planar Simplification" value="false" name="PlanarQuadric"/>
17
+ <Param tooltip="How much we should try to preserve the triangles in the planar regions. If you lower this value planar areas will be simplified more." type="RichFloat" description="Planar Simp. Weight" value="0.001" name="PlanarWeight"/>
18
+ <Param tooltip="Use the Per-Vertex quality as a weighting factor for the simplification. The weight is used as a error amplification value, so a vertex with a high quality value will not be simplified and a portion of the mesh with low quality values will be aggressively simplified." type="RichBool" description="Weighted Simplification" value="false" name="QualityWeight"/>
19
+ <Param tooltip="After the simplification an additional set of steps is performed to clean the mesh (unreferenced vertices, bad faces, etc)" type="RichBool" description="Post-simplification cleaning" value="true" name="AutoClean"/>
20
+ <Param tooltip="The simplification is applied only to the selected set of faces.&#xa; Take care of the target number of faces!" type="RichBool" description="Simplify only selected faces" value="false" name="Selected"/>
21
+ </filter>
22
+ <filter name="Repair non Manifold Edges by removing faces"/>
23
+ </FilterScript>
@@ -0,0 +1,8 @@
1
+ for file in *.dae
2
+ do
3
+ cmd="meshlabserver -i $file -o ${file%.*}.ply -s cleanMeshes.mlx -om"
4
+ echo $cmd
5
+ $cmd
6
+ done
7
+
8
+ # meshlabserver -i upper_forearm/W0.STL -o upper_forearm/W0.ply -s cleanMeshes.mlx -om
@@ -0,0 +1,33 @@
1
+ ## create standard base frame before including
2
+
3
+ ranger_base { multibody: true, multibody_gravity: false }
4
+
5
+ ranger_transX(ranger_base) { joint: transX, limits: [-5 5], ctrl_H: 2., motorLambda:.02, motorMass:40 }
6
+ ranger_transY(ranger_transX) { joint: transY, limits: [-5 5], ctrl_H: 2., motorLambda:.02, motorMass:40 }
7
+ #ranger_rot(ranger_trans) { joint: hingeZ, limits: [-5 5] }
8
+ #ranger_rot(ranger_trans) { joint: circleZ, limits: [-1.1 -1.1 1.1 1.1], ctrl_H: 2. }
9
+ ranger_rot(ranger_transY) { }
10
+
11
+ Prefix: ranger_
12
+ Include: <ranger_clean.g>
13
+ Prefix!
14
+
15
+ ranger_coll(ranger_base_link) { Q:[0, 0, -.14], shape: ssBox, size: [.75, .5, .3, .05], color:[1.,1.,1.,.5], contact: 1 }
16
+
17
+ Edit ranger_fr_Link_0: { meshscale: .025, color:[.9] }
18
+ Edit ranger_fl_Link_0: { meshscale: .025, color:[.9] }
19
+ Edit ranger_br_Link_0: { meshscale: .025, color:[.9] }
20
+ Edit ranger_bl_Link_0: { meshscale: .025, color:[.9] }
21
+ Edit ranger_base_link_0: { color:[.9] }
22
+
23
+ Edit ranger_base_link(ranger_rot): { Q:[0, 0, .315], mass: 20 }
24
+
25
+ Edit ranger_fr_joint: { limits: [-3, 3] },
26
+ Edit ranger_fl_joint: { limits: [-3, 3] },
27
+ Edit ranger_br_joint: { limits: [-3, 3] },
28
+ Edit ranger_bl_joint: { limits: [-3, 3] },
29
+
30
+ Edit ranger_fr_joint: { joint: none },
31
+ Edit ranger_fl_joint: { joint: none },
32
+ Edit ranger_br_joint: { joint: none },
33
+ Edit ranger_bl_joint: { joint: none },
@@ -0,0 +1,18 @@
1
+ base_link: { mass: 0.162716, inertia: [0.0007237, -1.55745e-08, -3.42379e-12, 0.000744047, 2.24935e-07, 2.14413e-05] },
2
+ base_link_0(base_link): { Q: [0, 0, 0, 0.000796327, 1, 0, 0], shape: mesh, color: [0.792157, 0.819608, 0.933333, 1], mesh: <meshes/ranger_mini3.ply>, visual: True },
3
+ fr_joint_origin(base_link): { Q: [0.25, -0.19, -0.1] },
4
+ fl_joint_origin(base_link): { Q: [0.25, 0.19, -0.1, -3.67321e-06, 1, 0, 0] },
5
+ br_joint_origin(base_link): { Q: [-0.25, -0.19, -0.1] },
6
+ bl_joint_origin(base_link): { Q: [-0.25, 0.19, -0.1, -3.67321e-06, 1, 0, 0] },
7
+ fr_joint(fr_joint_origin): { joint: hingeZ, joint_scale: -1 },
8
+ fl_joint(fl_joint_origin): { joint: hingeZ, joint_scale: -1 },
9
+ br_joint(br_joint_origin): { joint: hingeZ, joint_scale: -1 },
10
+ bl_joint(bl_joint_origin): { joint: hingeZ, joint_scale: -1 },
11
+ fr_Link(fr_joint): { mass: 2.2786, inertia: [0.0063625, -1.0581e-07, -4.0831e-07, 0.006363, -3.4944e-08, 0.010465] },
12
+ fl_Link(fl_joint): { mass: 2.2786, inertia: [0.0063695, -2.1067e-08, -0.00016867, 0.006363, -1.0301e-08, 0.010458] },
13
+ br_Link(br_joint): { mass: 2.2786, inertia: [0.0063627, -2.1069e-08, -1.587e-05, 0.006363, 9.3201e-09, 0.010465] },
14
+ bl_Link(bl_joint): { mass: 2.2786, inertia: [0.0063656, -8.1498e-08, -0.00011049, 0.006363, 6.6847e-08, 0.010462] },
15
+ fr_Link_0(fr_Link): { Q: [-0.248, -0.113, 0.155, 0.000563312, 0.000562864, 0.706825, 0.707388], shape: mesh, color: [0.79216, 0.81961, 0.93333, 1], mesh: <meshes/ranger_mini_v3_wheel_right.ply>, visual: True },
16
+ fl_Link_0(fl_Link): { Q: [-0.248, 0.1265, 0.191, 0.000563312, -0.000562864, -0.706825, 0.707388], shape: mesh, color: [0.79216, 0.81961, 0.93333, 1], mesh: <meshes/ranger_mini_v3_wheel.ply>, visual: True },
17
+ br_Link_0(br_Link): { Q: [-0.241, -0.11, 0.155, 0.000563312, 0.000562864, 0.706825, 0.707388], shape: mesh, color: [0.79216, 0.81961, 0.93333, 1], mesh: <meshes/ranger_mini_v3_wheel_right.ply>, visual: True },
18
+ bl_Link_0(bl_Link): { Q: [-0.241, 0.13, 0.2, 0.000563312, -0.000562864, -0.706825, 0.707388], shape: mesh, color: [0.79216, 0.81961, 0.93333, 1], mesh: <meshes/ranger_mini_v3_wheel.ply>, visual: True }
robotic/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.2.8.dev4'
1
+ __version__ = '0.2.9'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: robotic
3
- Version: 0.2.8.dev4
3
+ Version: 0.2.9
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=Psut6_CMYC1lkRWIfpem1vjiHeDA1bDRYh5WmALUuDw,3239
2
2
  robotic/__init__.py,sha256=k-hVqPB7vN-huwpRzQLt3f--6sNdjaCQ_hWw66dWkA8,297
3
3
  robotic/_robotic.pyi,sha256=n3SGnLZXHD2OAYfdyUs7D_0exUox-4ZOY4Z2g_TrPx4,73626
4
- robotic/_robotic.so,sha256=sZxFu_4AIORjWMmXVeXlzkY9G1LXcbvqti_0UA_vqQQ,1222400
5
- robotic/librai.so,sha256=wG2xwkWhOxujPDmOVFi4hKp7Wmp6PRykAvMP40W-fA4,40187688
4
+ robotic/_robotic.so,sha256=GmuvFNvUU18ox6syy0xEx291Pxoh0sU0XyNEu_kImMc,1222400
5
+ robotic/librai.so,sha256=0HQ3yE2-SI33rTLRc_NtLe2kcI_HCNIPHuPU5zyRiFM,40175496
6
6
  robotic/manipulation.py,sha256=EhM_Zuv3vl8H4SBNqqYMD3NT9AzFUpOhr4PIzM4U7tM,22374
7
- robotic/meshTool,sha256=o2BWBOG3MkBEJ_QhYL3uQ1-KhBh5NHylJ0CDTnYCYk4,52168
7
+ robotic/meshTool,sha256=VjGOnOwgoO0iujNEhKJ8D_AOscHs_mlIWi1tuWoCKVw,48072
8
8
  robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
9
9
  robotic/render.py,sha256=OE1dvyWHD7Oyzk4wlhXZ7m3v3xxa3zAL5_LCV1RgJXk,4662
10
10
  robotic/ry-bot,sha256=nd2yWqaDsFbwAmr7ySdOjq06ek0E1FMHTxPRO-7e2Q8,2294
@@ -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=ZXURDm-5GIDwe3tGJPR-rwsbLBgY-2r_P4FqGqGXp-8,27
19
+ robotic/version.py,sha256=bd8hlxKMc0Fh_2w5GWfqBtuwa8uTepTMjT8w7F-EKvY,22
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
@@ -46,10 +46,10 @@ robotic/include/rai/Control/control.h,sha256=_dJefR6WzvdQMaJIYIBuYP8NwoKgNeG4owh
46
46
  robotic/include/rai/Control/ctrlMsg.h,sha256=uGuwAaKM1UsQW3hTNv4AihW99MJMuow4cxa9-AU9AmA,1121
47
47
  robotic/include/rai/Control/timingOpt.h,sha256=Ne_IH8QuFCID0Sy88LS5i3qkp1nL1FbIgREqSjRctz0,2045
48
48
  robotic/include/rai/Core/array.h,sha256=YYdSaiZ0o7RoC_Zv6S1oGWMuFBdSrOWIIt-6KuaiO0Q,25290
49
- robotic/include/rai/Core/array.ipp,sha256=hdyULakmWOdt6Gi_-4338uzkWbrkw2_eCh-H3nXFwuo,58314
49
+ robotic/include/rai/Core/array.ipp,sha256=ELRBdyAqrIi3taDBe74rjPQRDYp5MwYFn4eYAhwE8EI,58371
50
50
  robotic/include/rai/Core/arrayDouble.h,sha256=ACvesIGz_0UP3G-x7-LlfGzodKB7EVsGeX5z2RbMFx8,28869
51
51
  robotic/include/rai/Core/defines.h,sha256=hBTgf5EiJ50rQYW1saGw8Ox87aKVFOYVKnFw0jojVW0,6894
52
- robotic/include/rai/Core/graph.h,sha256=Eo0j8q8IbY_M7V2FwzKAi9E8makxgRBvrFcPfJKuCtE,20890
52
+ robotic/include/rai/Core/graph.h,sha256=YlDZVq5woqF7nYSgqk2hn6ynVPpA4SJakjPic2cjA2c,20534
53
53
  robotic/include/rai/Core/h5.h,sha256=FzIP0eLL7XYg5eRjJgfPIt9SwY5HBaazy4ddoCcpkSU,1057
54
54
  robotic/include/rai/Core/thread.h,sha256=wjwvXACwI8B6rhZSf2UDruWUb8kT9Xjm-VE-OnUQpwk,18248
55
55
  robotic/include/rai/Core/util.h,sha256=KhBcYsprUaZXt2BMpsOACoOcmEWLEtOG4WM9Dcooamc,19514
@@ -64,7 +64,7 @@ robotic/include/rai/Geo/assimpInterface.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg
64
64
  robotic/include/rai/Geo/depth2PointCloud.h,sha256=0mXJnTk0sMB--KDE9CO_2gKgGw4gHXUe7xg6DcROhvk,1168
65
65
  robotic/include/rai/Geo/fclInterface.h,sha256=iNdxNc_DSOgYCLyCajxP8lxdnrNcyoKQmjUlVmjxjQM,940
66
66
  robotic/include/rai/Geo/geo.h,sha256=qZFXffvHa2sM2JsvvKWkRnlQ59gdD8qvsGyDtXrk_Oo,14715
67
- robotic/include/rai/Geo/mesh.h,sha256=ompiO_tbsImfg-QqGognNsoqJxW77Kk10Fe6jiS_CNY,6639
67
+ robotic/include/rai/Geo/mesh.h,sha256=cmEhGxaTaBc9K2Z7lOjm7ZFzH9teVYA6I_Kr1B3sxlg,6803
68
68
  robotic/include/rai/Geo/pairCollision.h,sha256=kFEtQpkgPV_VKJ6YBDBKdb3ko62_s7HKDUti0kB2yYI,4374
69
69
  robotic/include/rai/Geo/qhull.h,sha256=dRAAHIdvujPPW1fXW4hXMjgixpBDajDg-y_OX1JMi_0,1890
70
70
  robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=hrC838CsYWQ6TXm536iNRwB8W5-62LNb-JPqPoDAFPE,4831
@@ -87,7 +87,7 @@ robotic/include/rai/Geo/ccd_rai/support.h,sha256=B9KBuOctG7Hx-e1TXpnkU667WVH7SP4
87
87
  robotic/include/rai/Geo/ccd_rai/vec3.h,sha256=ARkNnQz8yWf_Cs3vgt22zclN1cLeGmwWPTVHVpvmfEA,8115
88
88
  robotic/include/rai/Geo/ply/ply.h,sha256=_oAXgQ5CyHvUMtPDBxYtOBbnKDVoZf5PKMswisqvOeI,9384
89
89
  robotic/include/rai/Geo/vhacd/VHACD.h,sha256=QT_cT6PPzec_mxKODsS9cJGr6nBt6S8cUJF7dCeBQCc,258343
90
- robotic/include/rai/Gui/RenderData.h,sha256=FPN7ApW8SK-MAI5wIoCU8_ezJbJogUMxfhAvK6GSAJ4,4775
90
+ robotic/include/rai/Gui/RenderData.h,sha256=PpNfJ6-k2mPTMv2CemQ8Ki8rPzQWrburopSgtosvb-k,4897
91
91
  robotic/include/rai/Gui/color.h,sha256=4ElBkpWgwBuqQEFD4Mdhv_afZE4ul6NkptwFQ2oDS5o,2596
92
92
  robotic/include/rai/Gui/opengl.h,sha256=sRvOz-QGHwgrf11UiQV4At4G2FjClveTTJorXyer1Fw,9036
93
93
  robotic/include/rai/Gui/plot.h,sha256=xhTBY84UN4KpgZsX7SJQGqVKd1jU7jojGVKFv02v0xU,2341
@@ -117,7 +117,7 @@ robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV
117
117
  robotic/include/rai/Kin/feature.h,sha256=xicsrElMcYnYXdIXdO5LBLmXxvCGVUVgZJY2NIarO5I,3935
118
118
  robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
119
119
  robotic/include/rai/Kin/frame.h,sha256=lYP6v7yZodtCQrfVg61H9qwtOsiYab9l7y2BHLOmeXY,14440
120
- robotic/include/rai/Kin/kin.h,sha256=BFZAdY7RRHhBtcjSkZf32EFhJswot1u3mIUn3P13qt4,15547
120
+ robotic/include/rai/Kin/kin.h,sha256=IBnhAcpn1R6ubXCh1dSac-NBhKZA_i8-GCK7eJBwme4,15610
121
121
  robotic/include/rai/Kin/kin_bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
122
122
  robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
123
123
  robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
@@ -347,6 +347,13 @@ robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/elbow_flex.ply,s
347
347
  robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll.ply,sha256=tm0QfQgssjev648wWCbrVDodi1hMgi9kfBfCed6TPJM,19230
348
348
  robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll_L.ply,sha256=yykffZwhCqhqAG2sQi2hwiNBzfzeXBjxL2fr7YcWq5U,4459
349
349
  robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/upper_arm.ply,sha256=39sYPJsVZNWelcC4yX12toVRtQC3KKS1CMyyQNmNSUg,33860
350
+ robotic/rai-robotModels/ranger/ranger.g,sha256=FFnALDKjUHIFh8qBMgjGSENlxqgwhGdXca2QeinaSkQ,1331
351
+ robotic/rai-robotModels/ranger/ranger_clean.g,sha256=uvTXQ3Dp9DeZqNGVqst4i0FwaZpgxEDVuWOxYJEPpnc,2106
352
+ robotic/rai-robotModels/ranger/meshes/cleanMeshes.mlx,sha256=owTpbxCg0SWiXs_xR5TrvsPZ0tcE38XyJh7_J6_fIkc,4155
353
+ robotic/rai-robotModels/ranger/meshes/cleanMeshes.sh,sha256=JK8w118AZQl0GiN873DNZsNfB6Q61gsW3qnTcmREaQQ,211
354
+ robotic/rai-robotModels/ranger/meshes/ranger_mini3.ply,sha256=OUhhCPG4dFCrpa-O95bbJ8E-wx-Gu8fGrjGgq2ZS91o,332381
355
+ robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.ply,sha256=W8__YI0o8dCDLKnPNfkOReN4ThCKhAOqqFKYxogR8bc,377953
356
+ robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.ply,sha256=s0IUxZqvsZmCNkXUXrtUT7bv5V38sRXczVTPiAnmwD8,376946
350
357
  robotic/rai-robotModels/robotiq/robotiq.g,sha256=C74qu9Ca7F1uNtSxyhQ9Er7g9XB1SVdoFrqihbI-NRU,1057
351
358
  robotic/rai-robotModels/robotiq/robotiq_clean.g,sha256=s1QwMa1s-Y29aB70IUfuK0s96gxnIUhTzvQZ31pvld8,3737
352
359
  robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link.ply,sha256=Wsp8wg1vwELn1rUAAn3tosY9a6uLUy3C96OVoOtzB9k,299782
@@ -398,16 +405,16 @@ robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/UpperArm.ply,sha2
398
405
  robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist1.ply,sha256=Qmlgt3g046pi8GPzlUBKbDcR-4JehZkXfSRNabe_RVI,282487
399
406
  robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist2.ply,sha256=br9zVxfiGNlEMAuVm36e2dJ0chDKpVMe3H1MCh-318E,784726
400
407
  robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist3.ply,sha256=el2jO6EOzwgz3ybkKjz9XcjCIQJWCpOCgTA7DSFHz6U,25593
401
- robotic-0.2.8.dev4.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
402
- robotic-0.2.8.dev4.data/scripts/ry-h5info,sha256=J-0Q4NRASUaQ_Xgii4Zyiw5mLp5XvvrrJvp-L248Ia4,606
403
- robotic-0.2.8.dev4.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
404
- robotic-0.2.8.dev4.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
405
- robotic-0.2.8.dev4.data/scripts/ry-test,sha256=61CnOEa-OqBsNznvXlZ_Xo5aCXx8QKYeokhsHcEUZac,962
406
- robotic-0.2.8.dev4.data/scripts/ry-urdf2rai,sha256=oeLKgNzYKV5yZ_vkvCrw65CY3ZAxL2ssFQQKcRuCNeo,7722
407
- robotic-0.2.8.dev4.data/scripts/ry-urdf2yaml,sha256=Nebu73TLTUx2p40-FLakek9n3y74cRJfRchV0vV0Gf0,8529
408
- robotic-0.2.8.dev4.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
409
- robotic-0.2.8.dev4.dist-info/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
410
- robotic-0.2.8.dev4.dist-info/METADATA,sha256=i8zEwUIA_m8DgisJEtucaDMZBv5kAphNDC-aOllrumg,6694
411
- robotic-0.2.8.dev4.dist-info/WHEEL,sha256=j8oier4takLUVcFcy0cH_vU6_14W-9VWvzUgXWN1YHo,104
412
- robotic-0.2.8.dev4.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
413
- robotic-0.2.8.dev4.dist-info/RECORD,,
408
+ robotic-0.2.9.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
409
+ robotic-0.2.9.data/scripts/ry-h5info,sha256=J-0Q4NRASUaQ_Xgii4Zyiw5mLp5XvvrrJvp-L248Ia4,606
410
+ robotic-0.2.9.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
411
+ robotic-0.2.9.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
412
+ robotic-0.2.9.data/scripts/ry-test,sha256=61CnOEa-OqBsNznvXlZ_Xo5aCXx8QKYeokhsHcEUZac,962
413
+ robotic-0.2.9.data/scripts/ry-urdf2rai,sha256=oeLKgNzYKV5yZ_vkvCrw65CY3ZAxL2ssFQQKcRuCNeo,7722
414
+ robotic-0.2.9.data/scripts/ry-urdf2yaml,sha256=Nebu73TLTUx2p40-FLakek9n3y74cRJfRchV0vV0Gf0,8529
415
+ robotic-0.2.9.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
416
+ robotic-0.2.9.dist-info/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
417
+ robotic-0.2.9.dist-info/METADATA,sha256=V-QbtPFkkEHRjHB4hKvKz02v75r6KWr_eFYFudutdxs,6689
418
+ robotic-0.2.9.dist-info/WHEEL,sha256=j8oier4takLUVcFcy0cH_vU6_14W-9VWvzUgXWN1YHo,104
419
+ robotic-0.2.9.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
420
+ robotic-0.2.9.dist-info/RECORD,,