robotic 0.3.1.dev1__cp311-cp311-manylinux2014_x86_64.whl → 0.3.1.dev2__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.
- robotic/_robotic.pyi +11 -7
- robotic/_robotic.so +0 -0
- robotic/include/rai/Core/graph.h +1 -1
- robotic/include/rai/Core/util.h +9 -0
- robotic/include/rai/Kin/kin.h +1 -1
- robotic/include/rai/Kin/kin_physx.h +2 -2
- robotic/include/rai/Kin/simulation.h +2 -2
- robotic/include/rai/Kin/viewer.h +1 -0
- robotic/include/rai/LGP/LGP_computers.h +1 -1
- robotic/include/rai/PathAlgos/ConfigurationProblem.h +2 -2
- robotic/include/rai/PathAlgos/RRT_PathFinder.h +1 -1
- robotic/librai.so +0 -0
- robotic/manipulation.py +5 -7
- robotic/src/yaml_helper.py +10 -0
- robotic/version.py +1 -1
- {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev2.dist-info}/METADATA +1 -1
- {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev2.dist-info}/RECORD +27 -27
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-bot +0 -0
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-h5info +0 -0
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-info +0 -0
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-meshTool +0 -0
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-test +0 -0
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-urdfConvert.py +0 -0
- {robotic-0.3.1.dev1.data → robotic-0.3.1.dev2.data}/scripts/ry-view +0 -0
- {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev2.dist-info}/WHEEL +0 -0
- {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev2.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.3.1.dev1.dist-info → robotic-0.3.1.dev2.dist-info}/top_level.txt +0 -0
robotic/_robotic.pyi
CHANGED
|
@@ -365,7 +365,7 @@ class Config:
|
|
|
365
365
|
"""
|
|
366
366
|
get the joint state as a numpy vector, optionally only for a subset of joints specified as list of joint names
|
|
367
367
|
"""
|
|
368
|
-
def get_viewer(self
|
|
368
|
+
def get_viewer(self) -> ConfigurationViewer:
|
|
369
369
|
...
|
|
370
370
|
def processInertias(self, recomputeInertias: bool = True, transformToDiagInertia: bool = False) -> None:
|
|
371
371
|
"""
|
|
@@ -401,7 +401,7 @@ class Config:
|
|
|
401
401
|
"""
|
|
402
402
|
def setJointStateSlice(self, arg0: list[float], arg1: int) -> None:
|
|
403
403
|
...
|
|
404
|
-
def set_viewer(self, arg0:
|
|
404
|
+
def set_viewer(self, arg0: ConfigurationViewer) -> None:
|
|
405
405
|
...
|
|
406
406
|
def view(self, pause: bool = False, message: str = None) -> int:
|
|
407
407
|
"""
|
|
@@ -413,7 +413,7 @@ class Config:
|
|
|
413
413
|
"""
|
|
414
414
|
def view_recopyMeshes(self) -> None:
|
|
415
415
|
...
|
|
416
|
-
def viewer(self
|
|
416
|
+
def viewer(self) -> ConfigurationViewer:
|
|
417
417
|
...
|
|
418
418
|
def watchFile(self, arg0: str) -> None:
|
|
419
419
|
"""
|
|
@@ -498,6 +498,10 @@ class ConfigurationViewer:
|
|
|
498
498
|
"""
|
|
499
499
|
set the camera pose directly
|
|
500
500
|
"""
|
|
501
|
+
def setWindow(self, title: str, width: int, height: int) -> None:
|
|
502
|
+
"""
|
|
503
|
+
set title, width, and height
|
|
504
|
+
"""
|
|
501
505
|
def setupEventHandler(self, blockDefaultHandler: bool) -> None:
|
|
502
506
|
"""
|
|
503
507
|
setup callbacks to grab window events and return them with methods below
|
|
@@ -842,17 +846,17 @@ class Frame:
|
|
|
842
846
|
"""
|
|
843
847
|
attach a point cloud shape
|
|
844
848
|
"""
|
|
845
|
-
def setPose(self, arg0: arr) ->
|
|
849
|
+
def setPose(self, arg0: arr) -> Frame:
|
|
846
850
|
...
|
|
847
|
-
def setPoseByText(self, arg0: str) ->
|
|
851
|
+
def setPoseByText(self, arg0: str) -> Frame:
|
|
848
852
|
...
|
|
849
853
|
def setPosition(self, arg0: arr) -> Frame:
|
|
850
854
|
...
|
|
851
855
|
def setQuaternion(self, arg0: arr) -> Frame:
|
|
852
856
|
...
|
|
853
|
-
def setRelativePose(self, arg0: arr) ->
|
|
857
|
+
def setRelativePose(self, arg0: arr) -> Frame:
|
|
854
858
|
...
|
|
855
|
-
def setRelativePoseByText(self, arg0: str) ->
|
|
859
|
+
def setRelativePoseByText(self, arg0: str) -> Frame:
|
|
856
860
|
...
|
|
857
861
|
def setRelativePosition(self, arg0: arr) -> Frame:
|
|
858
862
|
...
|
robotic/_robotic.so
CHANGED
|
Binary file
|
robotic/include/rai/Core/graph.h
CHANGED
|
@@ -189,7 +189,7 @@ struct Graph : NodeL {
|
|
|
189
189
|
Node* readNode(std::istream& is, bool verbose, bool parseInfo); //used only internally..
|
|
190
190
|
void readJson(std::istream& is);
|
|
191
191
|
void writeJson(std::istream& is);
|
|
192
|
-
void write(std::ostream& os=cout, const char* ELEMSEP="
|
|
192
|
+
void write(std::ostream& os=cout, const char* ELEMSEP="\n", const char* BRACKETS=0, int indent=-1, bool yamlMode=false, bool binary=false) const;
|
|
193
193
|
void writeDot(std::ostream& os, bool withoutHeader=false, bool defaultEdges=false, int nodesOrEdges=0, int focusIndex=-1, bool subGraphsAsNodes=false);
|
|
194
194
|
void writeHtml(std::ostream& os, std::istream& is);
|
|
195
195
|
void writeYaml(std::ostream& os) const;
|
robotic/include/rai/Core/util.h
CHANGED
|
@@ -621,6 +621,15 @@ inline bool operator==(Type& t1, Type& t2) { return t1.typeId() == t2.typeId();
|
|
|
621
621
|
// return x;
|
|
622
622
|
// }
|
|
623
623
|
|
|
624
|
+
//===========================================================================
|
|
625
|
+
//
|
|
626
|
+
// shared ptrs
|
|
627
|
+
//
|
|
628
|
+
|
|
629
|
+
template<class T> void _delete(T* ptr){}
|
|
630
|
+
template<class T> std::shared_ptr<T> _shared(T& x){ return std::shared_ptr<T>(&x, &_delete<T>); }
|
|
631
|
+
|
|
632
|
+
|
|
624
633
|
//===========================================================================
|
|
625
634
|
//
|
|
626
635
|
/// running code on init (in cpp files)
|
robotic/include/rai/Kin/kin.h
CHANGED
|
@@ -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(
|
|
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
|
|
42
|
-
void removeJoint(rai::
|
|
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*
|
|
90
|
-
void detach(Frame*
|
|
89
|
+
void attach(Frame* from, Frame* to);
|
|
90
|
+
void detach(Frame* from, Frame* to);
|
|
91
91
|
|
|
92
92
|
//== management interface
|
|
93
93
|
|
robotic/include/rai/Kin/viewer.h
CHANGED
|
@@ -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);
|
|
@@ -31,7 +31,7 @@ struct QueryResult {
|
|
|
31
31
|
stdOutPipe(QueryResult)
|
|
32
32
|
|
|
33
33
|
struct ConfigurationProblem {
|
|
34
|
-
rai::Configuration
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
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/src/yaml_helper.py
CHANGED
|
@@ -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.
|
|
1
|
+
__version__ = '0.3.1.dev2'
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
robotic/DataGen.pyi,sha256=qDQjATpbIgFvOrWk7F3ZTVbOuyXjT5nwHxrsRfGxWRU,3716
|
|
2
2
|
robotic/__init__.py,sha256=H8Qi-wA95h6SuziEFNZFEt6Tpt5UrttS9ftBjZCsMm4,421
|
|
3
|
-
robotic/_robotic.pyi,sha256=
|
|
4
|
-
robotic/_robotic.so,sha256=
|
|
5
|
-
robotic/librai.so,sha256
|
|
6
|
-
robotic/manipulation.py,sha256=
|
|
3
|
+
robotic/_robotic.pyi,sha256=QGS7Zw1nxilAqTCbv0YemHU8ZDab02kp59FRkExtsHM,75530
|
|
4
|
+
robotic/_robotic.so,sha256=zkulnJsedvIXKBRm6kkrxiezP0il_lt0UoAgTTIbzIw,1242920
|
|
5
|
+
robotic/librai.so,sha256=9MntSREVZlircpqFB83r8fVzv4oW0Ve3l2n9zIdl7OE,38726016
|
|
6
|
+
robotic/manipulation.py,sha256=0B7UzU9J7b4f19thz67TbvknoncxffQEMHSBB6ez1Jg,22279
|
|
7
7
|
robotic/meshTool,sha256=wxcOt_C3PAn2vbnMpGYm57rjrU4iZLoEriODlQResmg,52176
|
|
8
8
|
robotic/mujoco-import.py,sha256=8eC8ldlFwnYQfqII3FVdWEQ7zd1PkSdAF-oyryIQtkY,231
|
|
9
9
|
robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
|
|
@@ -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=
|
|
20
|
+
robotic/version.py,sha256=6zFXj91tQaAP1c18NoFsA-iEzHyvj6isEdLopC6_G48,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,10 +50,10 @@ 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=K8LFdhTJ0zGXnd-uI8TaR_k5aTbX3Mf9uUCvr9Yhzxk,21127
|
|
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
|
-
robotic/include/rai/Core/util.h,sha256=
|
|
56
|
+
robotic/include/rai/Core/util.h,sha256=MB07dgIgOYQxsGpGnQS8VmfGch3MnDBbp3qQSn1zTB4,19694
|
|
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
|
|
@@ -118,17 +118,17 @@ robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV
|
|
|
118
118
|
robotic/include/rai/Kin/feature.h,sha256=xicsrElMcYnYXdIXdO5LBLmXxvCGVUVgZJY2NIarO5I,3935
|
|
119
119
|
robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
|
|
120
120
|
robotic/include/rai/Kin/frame.h,sha256=xqNwSGPxCmGOgCEtMZmeE80RJLXcHdpJRHWIkxbqCwU,14617
|
|
121
|
-
robotic/include/rai/Kin/kin.h,sha256=
|
|
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=
|
|
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=
|
|
128
|
-
robotic/include/rai/Kin/viewer.h,sha256=
|
|
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=
|
|
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
|
|
@@ -155,9 +155,9 @@ robotic/include/rai/Optim/options.h,sha256=JSqHw6agqLkvfvw6kd54KHQ6Hz7xZyHeRkWAu
|
|
|
155
155
|
robotic/include/rai/Optim/primalDual.h,sha256=xHXhAPbZWPVj17ZGpDr4OrLJLYj_G1Wr_k4TCPFBiHc,1272
|
|
156
156
|
robotic/include/rai/Optim/testProblems_Opt.h,sha256=rYPVdz7y1pkmzJH6aIw3pQ6JqN2_HhJ50CAAdsL2r9A,6531
|
|
157
157
|
robotic/include/rai/Optim/utils.h,sha256=VMTSVUcg3UWN8RhBYSSyqoBCa_AcUrZ_7zvcz3XWEC0,3517
|
|
158
|
-
robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=
|
|
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=
|
|
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
|
|
@@ -355,16 +355,16 @@ robotic/src/mesh_helper.py,sha256=AMSOz3Eew9uJkDm5tFThbfJKcEQCmGyRLN4bZphISNk,16
|
|
|
355
355
|
robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnEg,3833
|
|
356
356
|
robotic/src/mujoco_io.py,sha256=drLNE4yo30hpOY01-AsuCWKLvNoG5w2YDSzR_rlyfz0,9474
|
|
357
357
|
robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
358
|
-
robotic/src/yaml_helper.py,sha256=
|
|
359
|
-
robotic-0.3.1.
|
|
360
|
-
robotic-0.3.1.
|
|
361
|
-
robotic-0.3.1.
|
|
362
|
-
robotic-0.3.1.
|
|
363
|
-
robotic-0.3.1.
|
|
364
|
-
robotic-0.3.1.
|
|
365
|
-
robotic-0.3.1.
|
|
366
|
-
robotic-0.3.1.
|
|
367
|
-
robotic-0.3.1.
|
|
368
|
-
robotic-0.3.1.
|
|
369
|
-
robotic-0.3.1.
|
|
370
|
-
robotic-0.3.1.
|
|
358
|
+
robotic/src/yaml_helper.py,sha256=Jf9QaKSNQrPkUPqd5FUDv7_h0wDlGXrhCdMwu6y-Nh0,925
|
|
359
|
+
robotic-0.3.1.dev2.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
360
|
+
robotic-0.3.1.dev2.data/scripts/ry-h5info,sha256=eh9McT5Ury7bbTudxkSOLWo-tZ6heiSEpGStM07N-Dc,810
|
|
361
|
+
robotic-0.3.1.dev2.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
362
|
+
robotic-0.3.1.dev2.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
363
|
+
robotic-0.3.1.dev2.data/scripts/ry-test,sha256=vcaPrFq9Co9N2F2Mdl2_1CTieOBssSoEhU67wXqJ2EY,981
|
|
364
|
+
robotic-0.3.1.dev2.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
365
|
+
robotic-0.3.1.dev2.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
|
|
366
|
+
robotic-0.3.1.dev2.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
367
|
+
robotic-0.3.1.dev2.dist-info/METADATA,sha256=gpaBPxgQWGSgSEWO6QTYiggxiHoSazBYmyJfNP2FJcg,6659
|
|
368
|
+
robotic-0.3.1.dev2.dist-info/WHEEL,sha256=ITVdYpiTGnryqIbOR0i1wcdISo8YPJzlx8rAyocabzM,104
|
|
369
|
+
robotic-0.3.1.dev2.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
370
|
+
robotic-0.3.1.dev2.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
|
|
File without changes
|
|
File without changes
|