robotic 0.3.4__cp310-cp310-manylinux2014_x86_64.whl → 0.3.4.dev1__cp310-cp310-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.so +0 -0
- robotic/include/rai/Geo/mesh.h +0 -2
- robotic/include/rai/Geo/signedDistanceFunctions.h +1 -1
- robotic/include/rai/Kin/frame.h +9 -12
- robotic/librai.so +0 -0
- robotic/meshTool +0 -0
- robotic/version.py +1 -1
- {robotic-0.3.4.dist-info → robotic-0.3.4.dev1.dist-info}/METADATA +1 -1
- {robotic-0.3.4.dist-info → robotic-0.3.4.dev1.dist-info}/RECORD +19 -19
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-bot +0 -0
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-h5info +0 -0
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-info +0 -0
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-meshTool +0 -0
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-test +0 -0
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-urdfConvert.py +0 -0
- {robotic-0.3.4.data → robotic-0.3.4.dev1.data}/scripts/ry-view +0 -0
- {robotic-0.3.4.dist-info → robotic-0.3.4.dev1.dist-info}/WHEEL +0 -0
- {robotic-0.3.4.dist-info → robotic-0.3.4.dev1.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.3.4.dist-info → robotic-0.3.4.dev1.dist-info}/top_level.txt +0 -0
robotic/_robotic.so
CHANGED
|
Binary file
|
robotic/include/rai/Geo/mesh.h
CHANGED
|
@@ -108,7 +108,7 @@ struct DensityDisplayData {
|
|
|
108
108
|
|
|
109
109
|
struct TensorShape : SDF {
|
|
110
110
|
floatA gridData;
|
|
111
|
-
shared_ptr<DensityDisplayData> _densityDisplayData;
|
|
111
|
+
// shared_ptr<DensityDisplayData> _densityDisplayData;
|
|
112
112
|
arr color;
|
|
113
113
|
|
|
114
114
|
TensorShape(const rai::Transformation& _pose, const floatA& _data, const arr& _lo, const arr& _up)
|
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
|
|
@@ -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/librai.so
CHANGED
|
Binary file
|
robotic/meshTool
CHANGED
|
Binary file
|
robotic/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.3.4'
|
|
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
3
|
robotic/_robotic.pyi,sha256=cmdhpWzjTIOjayzcAio8wbhI9yYAjekS3zW_J_mb87Q,77158
|
|
4
|
-
robotic/_robotic.so,sha256=
|
|
4
|
+
robotic/_robotic.so,sha256=fPVv7Wrf1bcSJvxE2kyHaejiRtbfP9QV0R693R_HVDY,1271656
|
|
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
|
|
@@ -69,10 +69,10 @@ robotic/include/rai/Geo/assimpInterface.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg
|
|
|
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
71
|
robotic/include/rai/Geo/geo.h,sha256=6bjl_R_Olr_pvlKcxPNdiu8brWFfYJMVQrKSbx3zhpA,14937
|
|
72
|
-
robotic/include/rai/Geo/mesh.h,sha256=
|
|
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
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
|
|
@@ -119,7 +119,7 @@ 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=
|
|
122
|
+
robotic/include/rai/Kin/frame.h,sha256=BiBxcR9-6ErLJW3KU0ksZzc_agkpH0xKxrHDA-qlMU4,14614
|
|
123
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
|
|
@@ -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.4.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
371
|
-
robotic-0.3.4.data/scripts/ry-h5info,sha256=6orNP37WPoobKup0PcLXQvbiCVWqeRR_JQyMH1iXHJk,449
|
|
372
|
-
robotic-0.3.4.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
373
|
-
robotic-0.3.4.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
374
|
-
robotic-0.3.4.data/scripts/ry-test,sha256=YTCSIuTA4JYk7j7TAr-t7IIp5g6hdLRlTPxJZBxQVpk,965
|
|
375
|
-
robotic-0.3.4.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
376
|
-
robotic-0.3.4.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
|
|
377
|
-
robotic-0.3.4.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
378
|
-
robotic-0.3.4.dist-info/METADATA,sha256=
|
|
379
|
-
robotic-0.3.4.dist-info/WHEEL,sha256=0-G7woG4LgutcYzUGJCOYFgoh749-FtfhSMeIPLVGS0,104
|
|
380
|
-
robotic-0.3.4.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
381
|
-
robotic-0.3.4.dist-info/RECORD,,
|
|
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=0-G7woG4LgutcYzUGJCOYFgoh749-FtfhSMeIPLVGS0,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
|