robotic 0.3.3.dev1__cp312-cp312-manylinux2014_x86_64.whl → 0.3.4.dev1__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.
- robotic/_robotic.pyi +3 -3
- robotic/_robotic.so +0 -0
- robotic/include/rai/Control/TimingMPC.h +2 -2
- robotic/include/rai/Core/array.h +3 -1
- robotic/include/rai/Core/arrayDouble.h +0 -2
- robotic/include/rai/Core/graph.h +1 -1
- robotic/include/rai/Geo/geo.h +3 -2
- robotic/include/rai/Geo/mesh.h +0 -2
- robotic/include/rai/Geo/signedDistanceFunctions.h +2 -1
- robotic/include/rai/Geo/stb_image.h +1 -1
- robotic/include/rai/Gui/RenderData.h +1 -1
- robotic/include/rai/KOMO/manipTools.h +1 -0
- robotic/include/rai/Kin/F_forces.h +2 -2
- robotic/include/rai/Kin/frame.h +10 -13
- robotic/include/rai/Kin/kin.h +1 -0
- robotic/include/rai/Kin/simulation.h +2 -0
- robotic/include/rai/PathAlgos/RRT_PathFinder.h +1 -1
- robotic/librai.so +0 -0
- robotic/meshTool +0 -0
- robotic/version.py +1 -1
- {robotic-0.3.3.dev1.dist-info → robotic-0.3.4.dev1.dist-info}/METADATA +1 -1
- {robotic-0.3.3.dev1.dist-info → robotic-0.3.4.dev1.dist-info}/RECORD +32 -32
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-bot +0 -0
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-h5info +0 -0
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-info +0 -0
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-meshTool +0 -0
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-test +0 -0
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-urdfConvert.py +0 -0
- {robotic-0.3.3.dev1.data → robotic-0.3.4.dev1.data}/scripts/ry-view +0 -0
- {robotic-0.3.3.dev1.dist-info → robotic-0.3.4.dev1.dist-info}/WHEEL +0 -0
- {robotic-0.3.3.dev1.dist-info → robotic-0.3.4.dev1.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.3.3.dev1.dist-info → robotic-0.3.4.dev1.dist-info}/top_level.txt +0 -0
robotic/_robotic.pyi
CHANGED
|
@@ -458,7 +458,7 @@ class ConfigurationViewer:
|
|
|
458
458
|
@staticmethod
|
|
459
459
|
def _pybind11_conduit_v1_(*args, **kwargs):
|
|
460
460
|
...
|
|
461
|
-
def focus(self,
|
|
461
|
+
def focus(self, position_3d: arr, heightAbs: float = 1.0) -> None:
|
|
462
462
|
"""
|
|
463
463
|
focus at a 3D position; second argument distances camara so that view window has roughly given absHeight around object
|
|
464
464
|
"""
|
|
@@ -1616,7 +1616,7 @@ class RRT_PathFinder:
|
|
|
1616
1616
|
...
|
|
1617
1617
|
def setStartGoal(self, starts: arr, goals: arr) -> None:
|
|
1618
1618
|
...
|
|
1619
|
-
def solve(self) -> SolverReturn:
|
|
1619
|
+
def solve(self, verbose: int = 1) -> SolverReturn:
|
|
1620
1620
|
...
|
|
1621
1621
|
class ST:
|
|
1622
1622
|
"""
|
|
@@ -1917,7 +1917,7 @@ class Simulation:
|
|
|
1917
1917
|
"""
|
|
1918
1918
|
reset the spline reference, i.e., clear the current spline buffer and initialize it to constant spline at current position (to which setSplineRef can append)
|
|
1919
1919
|
"""
|
|
1920
|
-
def resetTime(self,
|
|
1920
|
+
def resetTime(self, time: float = 1.0) -> None:
|
|
1921
1921
|
...
|
|
1922
1922
|
def selectSensor(self, sensorName: str) -> ...:
|
|
1923
1923
|
...
|
robotic/_robotic.so
CHANGED
|
Binary file
|
|
@@ -44,8 +44,8 @@ struct TimingMPC {
|
|
|
44
44
|
|
|
45
45
|
uint nPhases() const { return waypoints.d0; }
|
|
46
46
|
bool done() const { return phase>=nPhases(); }
|
|
47
|
-
arr getWaypoints() const { if(done()) return waypoints[-1].copy().reshape(1, -1); return waypoints({phase,
|
|
48
|
-
arr getTimes() const { if(done()) return {.1}; return integral(tau({phase,
|
|
47
|
+
arr getWaypoints() const { if(done()) return waypoints[-1].copy().reshape(1, -1); return waypoints({phase,0}).copy(); }
|
|
48
|
+
arr getTimes() const { if(done()) return {.1}; return integral(tau({phase,0})); }
|
|
49
49
|
arr getVels() const;
|
|
50
50
|
|
|
51
51
|
bool set_progressedTime(double gap, double tauCutoff=0.);
|
robotic/include/rai/Core/array.h
CHANGED
|
@@ -574,6 +574,7 @@ template<class T> uint numberSharedElements(const Array<T>& x, const Array<T>& y
|
|
|
574
574
|
//
|
|
575
575
|
// special iterators
|
|
576
576
|
|
|
577
|
+
|
|
577
578
|
namespace rai {
|
|
578
579
|
|
|
579
580
|
template<class T>
|
|
@@ -676,7 +677,8 @@ template<class T> Array<T>& Array<T>::setNoArr() { special = new SpecialArray(Sp
|
|
|
676
677
|
|
|
677
678
|
namespace rai {
|
|
678
679
|
uint product(const uintA& x);
|
|
679
|
-
|
|
680
|
+
template<class T> T& min(const Array<T>& x);
|
|
681
|
+
template<class T> T& max(const Array<T>& x);
|
|
680
682
|
uint sum(const uintA& x);
|
|
681
683
|
float sum(const floatA& x);
|
|
682
684
|
template<class T> Array<T> integral(const Array<T>& x);
|
|
@@ -494,8 +494,6 @@ double euclideanDistance(const arr& v, const arr& w);
|
|
|
494
494
|
double metricDistance(const arr& g, const arr& v, const arr& w);
|
|
495
495
|
|
|
496
496
|
//min max
|
|
497
|
-
double min(const arr& x);
|
|
498
|
-
double max(const arr& x);
|
|
499
497
|
arr max(const arr& v, uint d);
|
|
500
498
|
arr min(const arr& v, uint d);
|
|
501
499
|
uint argmin(const arr& x);
|
robotic/include/rai/Core/graph.h
CHANGED
|
@@ -188,7 +188,7 @@ struct Graph : NodeL {
|
|
|
188
188
|
void write(std::ostream& os=cout, const char* ELEMSEP="\n", const char* BRACKETS=0, int indent=-1, bool yamlMode=false, bool binary=false) const;
|
|
189
189
|
void writeDot(std::ostream& os, bool withoutHeader=false, bool defaultEdges=false, int nodesOrEdges=0, int focusIndex=-1, bool subGraphsAsNodes=false);
|
|
190
190
|
void writeHtml(std::ostream& os, std::istream& is);
|
|
191
|
-
void writeYaml(std::ostream& os) const;
|
|
191
|
+
void writeYaml(std::ostream& os, bool classic = false) const;
|
|
192
192
|
void writeParseInfo(std::ostream& os);
|
|
193
193
|
|
|
194
194
|
void displayDot(Node* highlight=nullptr);
|
robotic/include/rai/Geo/geo.h
CHANGED
|
@@ -255,11 +255,12 @@ struct Camera {
|
|
|
255
255
|
void setZRange(float znear, float zfar);
|
|
256
256
|
void setWHRatio(float ratio);
|
|
257
257
|
void setFocalLength(float f);
|
|
258
|
-
void setPosition(
|
|
258
|
+
void setPosition(const Vector& x);
|
|
259
259
|
void setKinect();
|
|
260
260
|
void setDefault();
|
|
261
261
|
|
|
262
|
-
void focus(
|
|
262
|
+
void focus(const Vector& x, bool makeUpright=false);
|
|
263
|
+
void focusAtDist(const Vector& x, double dist);
|
|
263
264
|
void watchDirection(const Vector& d);
|
|
264
265
|
void upright(const Vector& up=Vector(0, 0, 1));
|
|
265
266
|
bool checkFocus();
|
robotic/include/rai/Geo/mesh.h
CHANGED
|
@@ -108,7 +108,8 @@ struct DensityDisplayData {
|
|
|
108
108
|
|
|
109
109
|
struct TensorShape : SDF {
|
|
110
110
|
floatA gridData;
|
|
111
|
-
shared_ptr<DensityDisplayData> _densityDisplayData;
|
|
111
|
+
// shared_ptr<DensityDisplayData> _densityDisplayData;
|
|
112
|
+
arr color;
|
|
112
113
|
|
|
113
114
|
TensorShape(const rai::Transformation& _pose, const floatA& _data, const arr& _lo, const arr& _up)
|
|
114
115
|
: SDF(_pose), gridData(_data) { lo = _lo; up = _up; }
|
|
@@ -3896,7 +3896,7 @@ static const int stbi__zlength_base[31] = {
|
|
|
3896
3896
|
};
|
|
3897
3897
|
|
|
3898
3898
|
static const int stbi__zlength_extra[31]=
|
|
3899
|
-
{
|
|
3899
|
+
{0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0 };
|
|
3900
3900
|
|
|
3901
3901
|
static const int stbi__zdist_base[32] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
|
|
3902
3902
|
257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577, 0, 0
|
|
@@ -39,7 +39,7 @@ struct RenderAsset{
|
|
|
39
39
|
void mesh(rai::Mesh &mesh, double avgNormalsThreshold=.9);
|
|
40
40
|
void lines(const arr& lines, const arr& color);
|
|
41
41
|
void pointCloud(const arr& points, const arr& color);
|
|
42
|
-
void tensor(const floatA& vol, const arr& size
|
|
42
|
+
void tensor(const floatA& vol, const arr& size);
|
|
43
43
|
|
|
44
44
|
//engine specific -> should be refactored
|
|
45
45
|
void glInitialize();
|
|
@@ -42,8 +42,8 @@ struct F_HingeXTorque : Feature {
|
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
struct F_TotalForce : Feature {
|
|
45
|
-
|
|
46
|
-
F_TotalForce(
|
|
45
|
+
arr gravity;
|
|
46
|
+
F_TotalForce(const arr& _gravity={0., 0., 9.81}) : gravity(_gravity) {}
|
|
47
47
|
virtual void phi2(arr& y, arr& J, const FrameL& F);
|
|
48
48
|
virtual uint dim_phi(const FrameL& C) { return 6; }
|
|
49
49
|
};
|
robotic/include/rai/Kin/frame.h
CHANGED
|
@@ -97,7 +97,7 @@ struct Frame : NonCopyable {
|
|
|
97
97
|
|
|
98
98
|
//attachments to the frame
|
|
99
99
|
Joint* joint=nullptr; ///< this frame is an articulated joint
|
|
100
|
-
Shape
|
|
100
|
+
shared_ptr<Shape> shape; ///< this frame has a (collision or visual) geometry
|
|
101
101
|
Inertia* inertia=nullptr; ///< this frame has inertia (is a mass)
|
|
102
102
|
//TODO have a single list of all attached dofs (also joint)
|
|
103
103
|
Array<ForceExchangeDof*> forces; ///< this frame exchanges forces with other frames
|
|
@@ -123,7 +123,7 @@ struct Frame : NonCopyable {
|
|
|
123
123
|
//structural operations
|
|
124
124
|
Frame& setParent(Frame* _parent, bool keepAbsolutePose_and_adaptRelativePose=false, bool checkForLoop=false);
|
|
125
125
|
Frame& unLink();
|
|
126
|
-
Frame* insertPreLink(const rai::Transformation& A=0);
|
|
126
|
+
Frame* insertPreLink(const rai::Transformation& A=0, const char* postfix="_origin");
|
|
127
127
|
Frame* insertPostLink(const rai::Transformation& B=0);
|
|
128
128
|
void makeRoot(bool untilPartBreak=true);
|
|
129
129
|
|
|
@@ -329,12 +329,12 @@ stdOutPipe(Inertia)
|
|
|
329
329
|
|
|
330
330
|
/// a Frame with Shape is a collision or visual object
|
|
331
331
|
struct Shape : NonCopyable {
|
|
332
|
-
|
|
333
|
-
Enum<ShapeType> _type;
|
|
332
|
+
Enum<ShapeType> _type = ST_none;
|
|
334
333
|
arr size;
|
|
335
334
|
shared_ptr<Mesh> _mesh;
|
|
336
335
|
shared_ptr<arr> _sscCore;
|
|
337
336
|
double coll_cvxRadius=-1.;
|
|
337
|
+
int version = 0;
|
|
338
338
|
shared_ptr<SDF> _sdf;
|
|
339
339
|
char cont=0; ///< are contacts registered (or filtered in the callback)
|
|
340
340
|
|
|
@@ -345,17 +345,14 @@ struct Shape : NonCopyable {
|
|
|
345
345
|
SDF& sdf() { if(!_sdf) { if(_type==ST_none) _type=ST_sdf; _sdf = make_shared<TensorShape>(); } return *_sdf; }
|
|
346
346
|
double alpha() { arr& C=mesh().C; if(C.N==4 || C.N==2 || (C.nd==2 && C.d1==4)) return C.elem(-1); return 1.; }
|
|
347
347
|
|
|
348
|
-
void createMeshes();
|
|
349
|
-
shared_ptr<ScalarFunction> functional(
|
|
350
|
-
|
|
351
|
-
Shape(Frame& f, const Shape* copyShape=nullptr); //new Shape, being added to graph and frame's shape lists
|
|
352
|
-
virtual ~Shape();
|
|
348
|
+
void createMeshes(const str& name);
|
|
349
|
+
shared_ptr<ScalarFunction> functional(const rai::Transformation& pose=0);
|
|
353
350
|
|
|
354
|
-
bool
|
|
351
|
+
bool canCollide(const rai::Frame* f1, const Frame* f2) const;
|
|
355
352
|
|
|
356
|
-
void read(
|
|
357
|
-
void write(std::ostream& os) const;
|
|
358
|
-
void write(Graph& g);
|
|
353
|
+
void read(Frame& frame);
|
|
354
|
+
void write(std::ostream& os, const Frame& frame) const;
|
|
355
|
+
void write(Graph& g, const Frame& frame);
|
|
359
356
|
};
|
|
360
357
|
|
|
361
358
|
//===========================================================================
|
robotic/include/rai/Kin/kin.h
CHANGED
|
@@ -286,6 +286,7 @@ public:
|
|
|
286
286
|
void view_close();
|
|
287
287
|
void view_setCameraPose(const arr& pose);
|
|
288
288
|
arr view_getCameraPose();
|
|
289
|
+
void view_focus(const char* frameName, double heightAbs);
|
|
289
290
|
void set_viewer(const std::shared_ptr<ConfigurationViewer>& _viewer);
|
|
290
291
|
void coll_stepFcl();
|
|
291
292
|
void stepPhysx(double tau);
|
|
@@ -59,6 +59,8 @@ struct Simulation {
|
|
|
59
59
|
//-- get state information
|
|
60
60
|
const arr& get_q() { return C.getJointState(); }
|
|
61
61
|
const arr& get_qDot();
|
|
62
|
+
const arr& get_qRef(); //executed in the LAST step() call
|
|
63
|
+
|
|
62
64
|
const arr get_frameVelocities();
|
|
63
65
|
double getTimeToSplineEnd();
|
|
64
66
|
double getGripperWidth(const char* gripperFrameName);
|
|
@@ -83,7 +83,7 @@ struct RRT_PathFinder : NonCopyable {
|
|
|
83
83
|
void setExplicitCollisionPairs(const StringA& collisionPairs);
|
|
84
84
|
|
|
85
85
|
//solve
|
|
86
|
-
shared_ptr<SolverReturn> solve();
|
|
86
|
+
shared_ptr<SolverReturn> solve(int verbose=1);
|
|
87
87
|
|
|
88
88
|
//output
|
|
89
89
|
void view(bool pause, const char* txt=0, bool play=false);
|
robotic/librai.so
CHANGED
|
Binary file
|
robotic/meshTool
CHANGED
|
Binary file
|
robotic/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.3.
|
|
1
|
+
__version__ = '0.3.4.dev1'
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
robotic/DataGen.pyi,sha256=qDQjATpbIgFvOrWk7F3ZTVbOuyXjT5nwHxrsRfGxWRU,3716
|
|
2
2
|
robotic/__init__.py,sha256=h8LG-Fle7lAtkJ-ZE1u5kWTyuayhugNxtFX9T_JKQGY,476
|
|
3
|
-
robotic/_robotic.pyi,sha256=
|
|
4
|
-
robotic/_robotic.so,sha256=
|
|
3
|
+
robotic/_robotic.pyi,sha256=cmdhpWzjTIOjayzcAio8wbhI9yYAjekS3zW_J_mb87Q,77158
|
|
4
|
+
robotic/_robotic.so,sha256=ztZQ_Fk7oTCfy5nj1JuHFQi5xGFb9Tzr_riIZ8Cgqu4,1283904
|
|
5
5
|
robotic/algo.pyi,sha256=hAN3ZPvf4VnhcdoRP-EecAwUge_JMxovJ9lAOIgWX2Q,730
|
|
6
|
-
robotic/librai.so,sha256=
|
|
6
|
+
robotic/librai.so,sha256=k5nsbOF742eJiWao-zSOV-k99ForiS4AFvAPo0DnJ5M,38886080
|
|
7
7
|
robotic/manipulation.py,sha256=0B7UzU9J7b4f19thz67TbvknoncxffQEMHSBB6ez1Jg,22279
|
|
8
|
-
robotic/meshTool,sha256=
|
|
8
|
+
robotic/meshTool,sha256=2qh3VPeinawY7HvFbFH7aREfavrgES7PGB-i7xrTdwY,56280
|
|
9
9
|
robotic/mujoco-import.py,sha256=8eC8ldlFwnYQfqII3FVdWEQ7zd1PkSdAF-oyryIQtkY,231
|
|
10
10
|
robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
|
|
11
11
|
robotic/render.py,sha256=OE1dvyWHD7Oyzk4wlhXZ7m3v3xxa3zAL5_LCV1RgJXk,4662
|
|
@@ -17,7 +17,7 @@ robotic/ry-test,sha256=MYMwRyOwCDxsgUwSPj9etNRSKJWvc6jwVWUJNkxlw-U,979
|
|
|
17
17
|
robotic/ry-urdfConvert.py,sha256=8Efnq3PU202rrZrVEZiGwzFOJdvrLjTJ2q-gnY6-tiU,2556
|
|
18
18
|
robotic/ry-view,sha256=T1Omn1QS7cNAtjQhBjMJTNz7aW5FgoOf9vBIfW0mFME,613
|
|
19
19
|
robotic/test.pyi,sha256=vVxwRSerjUG4bpB7pIhof7ZatrBqwg3Bj5voywa-YTI,917
|
|
20
|
-
robotic/version.py,sha256=
|
|
20
|
+
robotic/version.py,sha256=FpPEmzsKx6hTzWWdVU3adASkw6jb_QzVwwVUnboVuRo,27
|
|
21
21
|
robotic/include/rai/Algo/MLcourse.h,sha256=TGkAJWC5ollGfPw0-gcYL0TZeDJiHtWFzkHSMK8_lqU,1828
|
|
22
22
|
robotic/include/rai/Algo/RidgeRegression.h,sha256=SndbBtDte12eUAEFwagmg-xjXIA11z6iTTBxJd_fKAo,3742
|
|
23
23
|
robotic/include/rai/Algo/SplineCtrlFeed.h,sha256=yILBoUh9Ce0YtzGVZeAKmdUqsf0xeCGjXGC8bXNzZ3o,3339
|
|
@@ -45,16 +45,16 @@ robotic/include/rai/Control/CtrlTargets.h,sha256=FRjAi9KwDL2-5ziKYP5g_-uR234SdPw
|
|
|
45
45
|
robotic/include/rai/Control/RTControllerSimulation.h,sha256=iDpVRfivTlGS7DVWxVrS-xzCdVWrag1pUHsczZEb0po,1254
|
|
46
46
|
robotic/include/rai/Control/SecMPC.h,sha256=VpQBxibL9jI6bG31sm4U95vfJlYJDJxIqBDahppixN8,1916
|
|
47
47
|
robotic/include/rai/Control/ShortPathMPC.h,sha256=bZQ9I7fklqPOk-PwCTvi3xgnLVdVBoJ2j5i1iWwNxfE,938
|
|
48
|
-
robotic/include/rai/Control/TimingMPC.h,sha256=
|
|
48
|
+
robotic/include/rai/Control/TimingMPC.h,sha256=Jkj9Hpc4Yd2QIlqtafLT3mvlU0ZCFVCcoi4-ZIwl18Y,1698
|
|
49
49
|
robotic/include/rai/Control/WaypointMPC.h,sha256=Pa36-K1yMxszD9EFuLfLayaOe9pTK8cm1qAALLifdeM,811
|
|
50
50
|
robotic/include/rai/Control/control.h,sha256=_dJefR6WzvdQMaJIYIBuYP8NwoKgNeG4owhQWPxWXzo,765
|
|
51
51
|
robotic/include/rai/Control/ctrlMsg.h,sha256=uGuwAaKM1UsQW3hTNv4AihW99MJMuow4cxa9-AU9AmA,1121
|
|
52
52
|
robotic/include/rai/Control/timingOpt.h,sha256=Ne_IH8QuFCID0Sy88LS5i3qkp1nL1FbIgREqSjRctz0,2045
|
|
53
|
-
robotic/include/rai/Core/array.h,sha256=
|
|
53
|
+
robotic/include/rai/Core/array.h,sha256=ugDmxIL7Wv7YOjykfCqCG7wWLu09nHAL8al8ffPk8rQ,26190
|
|
54
54
|
robotic/include/rai/Core/array.ipp,sha256=DNmfosznj0jF-5lXTb8NUejfrVfs_Fw3O0IvvnDfF7M,63560
|
|
55
|
-
robotic/include/rai/Core/arrayDouble.h,sha256=
|
|
55
|
+
robotic/include/rai/Core/arrayDouble.h,sha256=MFO1FpZKebxFe9xx9RGpjq44QAga6YYiXu7BtfKFlE0,29107
|
|
56
56
|
robotic/include/rai/Core/defines.h,sha256=Y5YF92lo5dV3r0W6DFCapY7_7vUk9dS1po6ixtNxGIg,6896
|
|
57
|
-
robotic/include/rai/Core/graph.h,sha256=
|
|
57
|
+
robotic/include/rai/Core/graph.h,sha256=vV4Cu8wCTz3zQZPK_a1xKVjbWGNhX4nuEGZ2vq6zhCE,20373
|
|
58
58
|
robotic/include/rai/Core/h5.h,sha256=cfs8cew5QYpOxbWFZHV9TXVh5_dEJdFF1-aGZVR54EY,1162
|
|
59
59
|
robotic/include/rai/Core/thread.h,sha256=oCcqgzPHYoVwCbarDibmbTwxKxnGGwdK0e0re3yWfPY,18303
|
|
60
60
|
robotic/include/rai/Core/util.h,sha256=6cKEdQNwoZMDm4iFt8fHWzxpfZTpg1heukdGWG4j4cU,18931
|
|
@@ -68,13 +68,13 @@ robotic/include/rai/DataGen/shapenetGrasps.h,sha256=NlpKWicgaylzw1si7EPzeM7cE_-V
|
|
|
68
68
|
robotic/include/rai/Geo/assimpInterface.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg-LhMlWcjiF_o,1055
|
|
69
69
|
robotic/include/rai/Geo/depth2PointCloud.h,sha256=0mXJnTk0sMB--KDE9CO_2gKgGw4gHXUe7xg6DcROhvk,1168
|
|
70
70
|
robotic/include/rai/Geo/fclInterface.h,sha256=d89JFW3WKI64gOdQSGs6uFdE7NcMavNg89BMHhzMDac,984
|
|
71
|
-
robotic/include/rai/Geo/geo.h,sha256=
|
|
72
|
-
robotic/include/rai/Geo/mesh.h,sha256=
|
|
71
|
+
robotic/include/rai/Geo/geo.h,sha256=6bjl_R_Olr_pvlKcxPNdiu8brWFfYJMVQrKSbx3zhpA,14937
|
|
72
|
+
robotic/include/rai/Geo/mesh.h,sha256=OH1M7cRuJih8DOeCat1cktnfU4jD45nYhtlhEwxNLEg,6894
|
|
73
73
|
robotic/include/rai/Geo/pairCollision.h,sha256=TeV_Vpu9MuXG9wwI0zOyOZX7l54gAjxKnrJJyLR2gDU,4258
|
|
74
74
|
robotic/include/rai/Geo/qhull.h,sha256=dRAAHIdvujPPW1fXW4hXMjgixpBDajDg-y_OX1JMi_0,1890
|
|
75
|
-
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=
|
|
75
|
+
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=qOPr-m6krqG9XQJX6BsCfu4WLmFjXGtxmZpm-pXd5N0,4737
|
|
76
76
|
robotic/include/rai/Geo/stbImage.h,sha256=R5MRPs3KLL-GOipzAN_jdV-pdlBCTkUFaA5LnYEIElw,100
|
|
77
|
-
robotic/include/rai/Geo/stb_image.h,sha256=
|
|
77
|
+
robotic/include/rai/Geo/stb_image.h,sha256=3GREaSd1mttRQgl4onz7bVjl5FGNMROXlWCXoK94G6g,251785
|
|
78
78
|
robotic/include/rai/Geo/testProblems_Geo.h,sha256=PAO_y2X6KFjbfpCBoy59GkVq_A82ovg-stLO3EJ7iuE,927
|
|
79
79
|
robotic/include/rai/Geo/GJK/gjk.h,sha256=L4vvyYX7RYQLt8003G3ReMRhFu8MWsJZckeI-d7hzLc,15006
|
|
80
80
|
robotic/include/rai/Geo/ccd_rai/alloc.h,sha256=hBuAht1y7f0JXuYGi-1od8NYDn8nVMkK1hJwqMmEy6E,1349
|
|
@@ -90,14 +90,14 @@ robotic/include/rai/Geo/ccd_rai/support.h,sha256=B9KBuOctG7Hx-e1TXpnkU667WVH7SP4
|
|
|
90
90
|
robotic/include/rai/Geo/ccd_rai/vec3.h,sha256=ARkNnQz8yWf_Cs3vgt22zclN1cLeGmwWPTVHVpvmfEA,8115
|
|
91
91
|
robotic/include/rai/Geo/ply/ply.h,sha256=_oAXgQ5CyHvUMtPDBxYtOBbnKDVoZf5PKMswisqvOeI,9384
|
|
92
92
|
robotic/include/rai/Geo/vhacd/VHACD.h,sha256=QT_cT6PPzec_mxKODsS9cJGr6nBt6S8cUJF7dCeBQCc,258343
|
|
93
|
-
robotic/include/rai/Gui/RenderData.h,sha256=
|
|
93
|
+
robotic/include/rai/Gui/RenderData.h,sha256=UDuFcqHoc59e51zgldd22Oefp4uoV9Uo3Q0ir3ZDZNM,5035
|
|
94
94
|
robotic/include/rai/Gui/color.h,sha256=4ElBkpWgwBuqQEFD4Mdhv_afZE4ul6NkptwFQ2oDS5o,2596
|
|
95
95
|
robotic/include/rai/Gui/opengl.h,sha256=NipYBJ40hqC6K7xqmB0UYdU4rX_zQgnh7rsi5_Fg0-8,9101
|
|
96
96
|
robotic/include/rai/Gui/plot.h,sha256=Y_X9-V6IExvFafNzkG88O2wUGDCCnarUzpi5b0DKBcQ,2346
|
|
97
97
|
robotic/include/rai/KOMO/PathSmoother.h,sha256=y-t3yVEZvxfQIs8_EA-WI7FJ_RzfbG8TEfdiNAruuUI,813
|
|
98
98
|
robotic/include/rai/KOMO/komo.h,sha256=n2waF70m3GF8c-wOKmKD-kR5R1eFJQ9brwgZZJQVs-Q,13484
|
|
99
99
|
robotic/include/rai/KOMO/komo_NLP.h,sha256=GX4bxbAfbV_z42XrLmS0drLPcsIZiioRkWhF3UuhZno,3681
|
|
100
|
-
robotic/include/rai/KOMO/manipTools.h,sha256=
|
|
100
|
+
robotic/include/rai/KOMO/manipTools.h,sha256=wZdCohK4g5Jzq2bdIOXmRqaCVQNTK5k-FC20ViUXi98,4620
|
|
101
101
|
robotic/include/rai/KOMO/objective.h,sha256=Cl4-KjheRMNWoh_xFas5tLWMKSMlJf-HLDihfqvfcSw,2704
|
|
102
102
|
robotic/include/rai/KOMO/pathTools.h,sha256=w0Wq6BGLBxG1LAZQBDmmPWTXzwxW3RHj2EX1cm92WeE,3288
|
|
103
103
|
robotic/include/rai/KOMO/skeleton.h,sha256=NPaMfUMC_sUd3AjlLHTFpxWH4QtnKP_zzvHb2YvEigI,4437
|
|
@@ -107,7 +107,7 @@ robotic/include/rai/KOMO/switch.h,sha256=teNNnHFe4h9W5rLlL3TFBsq97ni-RUEhcxw4uVP
|
|
|
107
107
|
robotic/include/rai/KOMO/testProblems_KOMO.h,sha256=OH1zWcD-hIXsml2RkLIvl5eyi69WuLKqWPdqWjWWFI0,2805
|
|
108
108
|
robotic/include/rai/Kin/F_LeapCost.h,sha256=wNAUNgAJjLirMurF67BlFLHtjyuXy1EPr--9XLBe6Wk,556
|
|
109
109
|
robotic/include/rai/Kin/F_collisions.h,sha256=Atq9LPVOkEuMF-kSHk78cGjaJYwDIbvrTxHmLBJw3yk,2092
|
|
110
|
-
robotic/include/rai/Kin/F_forces.h,sha256=
|
|
110
|
+
robotic/include/rai/Kin/F_forces.h,sha256=zs1hpVt483wKDJaATlra4H331gEDIW6xNqJ10w1Gh_M,6719
|
|
111
111
|
robotic/include/rai/Kin/F_geometrics.h,sha256=2yPFycgcmZjXLezxoRL_aaetrZusDgtGyx7GQbfbRrI,2146
|
|
112
112
|
robotic/include/rai/Kin/F_operators.h,sha256=Nxdk1dPSoN7lW0A5Ns-BSJ_YXFft4iZi9RDOmVn3BJ0,1608
|
|
113
113
|
robotic/include/rai/Kin/F_pose.h,sha256=QlZnpS4ZTNFBZlH-lpe6sTt2gdbxbjsZTHPqk0T_4AI,5252
|
|
@@ -119,14 +119,14 @@ robotic/include/rai/Kin/dof_particles.h,sha256=PboLndC5a5extUKAfUPAIsJEGTTs6_ACD
|
|
|
119
119
|
robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV1xDtQ,792
|
|
120
120
|
robotic/include/rai/Kin/feature.h,sha256=xicsrElMcYnYXdIXdO5LBLmXxvCGVUVgZJY2NIarO5I,3935
|
|
121
121
|
robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
|
|
122
|
-
robotic/include/rai/Kin/frame.h,sha256=
|
|
123
|
-
robotic/include/rai/Kin/kin.h,sha256=
|
|
122
|
+
robotic/include/rai/Kin/frame.h,sha256=BiBxcR9-6ErLJW3KU0ksZzc_agkpH0xKxrHDA-qlMU4,14614
|
|
123
|
+
robotic/include/rai/Kin/kin.h,sha256=mzHgBV-j46PstUXzXsvVg_b64Q0jUNNk3bPfbnH7Vag,16120
|
|
124
124
|
robotic/include/rai/Kin/kin_bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
|
|
125
125
|
robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
|
|
126
126
|
robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
|
|
127
127
|
robotic/include/rai/Kin/kin_physx.h,sha256=CxsmnWHQMgJBbhA5iajLpOjxpCkd9243tlVyYkNRgOM,1950
|
|
128
128
|
robotic/include/rai/Kin/proxy.h,sha256=jfFQrvokqvt8bGYEzGQoD2ZpnuWuLzCeOjFfUvdxcx0,1473
|
|
129
|
-
robotic/include/rai/Kin/simulation.h,sha256=
|
|
129
|
+
robotic/include/rai/Kin/simulation.h,sha256=jeW1Pj4AVk9mjBTYjDpNd19Dw0QH__m6VhjSvkiftcs,5510
|
|
130
130
|
robotic/include/rai/Kin/viewer.h,sha256=XhfZ3QUYdCuye3NnCwPe2XnoJAqnf9RCtMAZLsc3fd4,2432
|
|
131
131
|
robotic/include/rai/LGP/LGP_SkeletonTool.h,sha256=T4lXAUxY2QFo_ETZEm7RqRzfmU6NAHdVcow8qj_8-9Y,3240
|
|
132
132
|
robotic/include/rai/LGP/LGP_TAMP_Abstraction.h,sha256=EKbyNFgro7Xg5uueo6bXNrNSBTFeQUS1swiy9izQiXc,1492
|
|
@@ -165,7 +165,7 @@ robotic/include/rai/Optim/testProblems_Opt.h,sha256=viiOu5FJHUWFcc-csl72g0G3Ogtq
|
|
|
165
165
|
robotic/include/rai/Optim/utils.h,sha256=UDsMMMyuxNzTB8bHg1IFkGGQMTuCAD1Z9RTGJ8e_qpQ,2350
|
|
166
166
|
robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=Zl_J3yooYFxA2-z-ulFL67nfzQBX90hUbD_cVFzpb3U,1351
|
|
167
167
|
robotic/include/rai/PathAlgos/PathResult.h,sha256=xxZiD8ClGKO719mQR50BsIzOlHeoH0UH4QNzWifoz6c,1070
|
|
168
|
-
robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=
|
|
168
|
+
robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=JBptbQVUc5GWEMer_ypmtMNUK0S0sBo3M0d4E2q4doQ,3306
|
|
169
169
|
robotic/include/rai/Perception/audio.h,sha256=HQPC8bmOv4Mdfl8f71eUmKFlRE0_N_spY3bg6YJzduo,1105
|
|
170
170
|
robotic/include/rai/Perception/avutil.h,sha256=RlxtNGw8mvKYrWI7Sy8neILBDb1SF2wuf4hFKjPx-4w,802
|
|
171
171
|
robotic/include/rai/Perception/colorseg.h,sha256=1zax9KZGSJcTZ7MTnLZBSbHlZsJqQ1NkvU6cStzQ4vc,2314
|
|
@@ -367,15 +367,15 @@ robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnE
|
|
|
367
367
|
robotic/src/mujoco_io.py,sha256=drLNE4yo30hpOY01-AsuCWKLvNoG5w2YDSzR_rlyfz0,9474
|
|
368
368
|
robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
369
369
|
robotic/src/yaml_helper.py,sha256=Jf9QaKSNQrPkUPqd5FUDv7_h0wDlGXrhCdMwu6y-Nh0,925
|
|
370
|
-
robotic-0.3.
|
|
371
|
-
robotic-0.3.
|
|
372
|
-
robotic-0.3.
|
|
373
|
-
robotic-0.3.
|
|
374
|
-
robotic-0.3.
|
|
375
|
-
robotic-0.3.
|
|
376
|
-
robotic-0.3.
|
|
377
|
-
robotic-0.3.
|
|
378
|
-
robotic-0.3.
|
|
379
|
-
robotic-0.3.
|
|
380
|
-
robotic-0.3.
|
|
381
|
-
robotic-0.3.
|
|
370
|
+
robotic-0.3.4.dev1.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
371
|
+
robotic-0.3.4.dev1.data/scripts/ry-h5info,sha256=6orNP37WPoobKup0PcLXQvbiCVWqeRR_JQyMH1iXHJk,449
|
|
372
|
+
robotic-0.3.4.dev1.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
373
|
+
robotic-0.3.4.dev1.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
374
|
+
robotic-0.3.4.dev1.data/scripts/ry-test,sha256=YTCSIuTA4JYk7j7TAr-t7IIp5g6hdLRlTPxJZBxQVpk,965
|
|
375
|
+
robotic-0.3.4.dev1.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
376
|
+
robotic-0.3.4.dev1.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
|
|
377
|
+
robotic-0.3.4.dev1.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
378
|
+
robotic-0.3.4.dev1.dist-info/METADATA,sha256=OICX5bQ74SsUTb7fHrwbel6qelPEWZOZ7QlOmGLF_f0,6663
|
|
379
|
+
robotic-0.3.4.dev1.dist-info/WHEEL,sha256=6TsICjgOR7isz_jYr-ssV7RSRmh1_0Z7_b5ESlzfzVY,104
|
|
380
|
+
robotic-0.3.4.dev1.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
381
|
+
robotic-0.3.4.dev1.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
|