placo 0.9.12__0-cp311-cp311-manylinux_2_28_x86_64.whl → 0.9.14__0-cp311-cp311-manylinux_2_28_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 placo might be problematic. Click here for more details.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.11/site-packages/placo.pyi +47 -9
- cmeel.prefix/lib/python3.11/site-packages/placo.so +0 -0
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/METADATA +1 -1
- placo-0.9.14.dist-info/RECORD +12 -0
- placo-0.9.12.dist-info/RECORD +0 -12
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/WHEEL +0 -0
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -3174,6 +3174,44 @@ class HumanoidParameters:
|
|
|
3174
3174
|
) -> None:
|
|
3175
3175
|
...
|
|
3176
3176
|
|
|
3177
|
+
def box_clip(
|
|
3178
|
+
self,
|
|
3179
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3180
|
+
) -> numpy.ndarray:
|
|
3181
|
+
"""
|
|
3182
|
+
Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
|
|
3183
|
+
"""
|
|
3184
|
+
...
|
|
3185
|
+
|
|
3186
|
+
def box_overlap_clip(
|
|
3187
|
+
self,
|
|
3188
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3189
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3190
|
+
) -> numpy.ndarray:
|
|
3191
|
+
"""
|
|
3192
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3193
|
+
"""
|
|
3194
|
+
...
|
|
3195
|
+
|
|
3196
|
+
def conic_clip(
|
|
3197
|
+
self,
|
|
3198
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3199
|
+
) -> numpy.ndarray:
|
|
3200
|
+
"""
|
|
3201
|
+
Applies the conic clipping to a given step size (dx, dy, dtheta)
|
|
3202
|
+
"""
|
|
3203
|
+
...
|
|
3204
|
+
|
|
3205
|
+
def conic_overlap_clip(
|
|
3206
|
+
self,
|
|
3207
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3208
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3209
|
+
) -> numpy.ndarray:
|
|
3210
|
+
"""
|
|
3211
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3212
|
+
"""
|
|
3213
|
+
...
|
|
3214
|
+
|
|
3177
3215
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3178
3216
|
|
|
3179
3217
|
def double_support_duration(
|
|
@@ -3210,7 +3248,7 @@ class HumanoidParameters:
|
|
|
3210
3248
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3211
3249
|
) -> numpy.ndarray:
|
|
3212
3250
|
"""
|
|
3213
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3251
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3214
3252
|
"""
|
|
3215
3253
|
...
|
|
3216
3254
|
|
|
@@ -3433,7 +3471,7 @@ class HumanoidRobot:
|
|
|
3433
3471
|
"""
|
|
3434
3472
|
Computes all minimum distances between current collision pairs.
|
|
3435
3473
|
|
|
3436
|
-
:return: <Element 'para' at
|
|
3474
|
+
:return: <Element 'para' at 0x7f767edb1170>
|
|
3437
3475
|
"""
|
|
3438
3476
|
...
|
|
3439
3477
|
|
|
@@ -3465,7 +3503,7 @@ class HumanoidRobot:
|
|
|
3465
3503
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3466
3504
|
|
|
3467
3505
|
:param any frame: the frame for which we want the jacobian
|
|
3468
|
-
:return: <Element 'para' at
|
|
3506
|
+
:return: <Element 'para' at 0x7f767edb3a10>
|
|
3469
3507
|
"""
|
|
3470
3508
|
...
|
|
3471
3509
|
|
|
@@ -3478,7 +3516,7 @@ class HumanoidRobot:
|
|
|
3478
3516
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3479
3517
|
|
|
3480
3518
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3481
|
-
:return: <Element 'para' at
|
|
3519
|
+
:return: <Element 'para' at 0x7f767ee61120>
|
|
3482
3520
|
"""
|
|
3483
3521
|
...
|
|
3484
3522
|
|
|
@@ -3780,7 +3818,7 @@ class HumanoidRobot:
|
|
|
3780
3818
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3781
3819
|
|
|
3782
3820
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3783
|
-
:return: <Element 'para' at
|
|
3821
|
+
:return: <Element 'para' at 0x7f767edb06d0>
|
|
3784
3822
|
"""
|
|
3785
3823
|
...
|
|
3786
3824
|
|
|
@@ -6172,7 +6210,7 @@ class RobotWrapper:
|
|
|
6172
6210
|
"""
|
|
6173
6211
|
Computes all minimum distances between current collision pairs.
|
|
6174
6212
|
|
|
6175
|
-
:return: <Element 'para' at
|
|
6213
|
+
:return: <Element 'para' at 0x7f767ee05ee0>
|
|
6176
6214
|
"""
|
|
6177
6215
|
...
|
|
6178
6216
|
|
|
@@ -6185,7 +6223,7 @@ class RobotWrapper:
|
|
|
6185
6223
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6186
6224
|
|
|
6187
6225
|
:param any frame: the frame for which we want the jacobian
|
|
6188
|
-
:return: <Element 'para' at
|
|
6226
|
+
:return: <Element 'para' at 0x7f767ee06980>
|
|
6189
6227
|
"""
|
|
6190
6228
|
...
|
|
6191
6229
|
|
|
@@ -6198,7 +6236,7 @@ class RobotWrapper:
|
|
|
6198
6236
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6199
6237
|
|
|
6200
6238
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6201
|
-
:return: <Element 'para' at
|
|
6239
|
+
:return: <Element 'para' at 0x7f767ee34310>
|
|
6202
6240
|
"""
|
|
6203
6241
|
...
|
|
6204
6242
|
|
|
@@ -6432,7 +6470,7 @@ class RobotWrapper:
|
|
|
6432
6470
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6433
6471
|
|
|
6434
6472
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6435
|
-
:return: <Element 'para' at
|
|
6473
|
+
:return: <Element 'para' at 0x7f767ee05800>
|
|
6436
6474
|
"""
|
|
6437
6475
|
...
|
|
6438
6476
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=jd70xEYVAYSSSSOSWPkyUDGUKV3WKoxdZGl7xfkHcIM,2000640
|
|
2
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=5Jec70dzO9PV8n6-kKQORgdYRa3jj7me9el7miV_TX8,161029
|
|
3
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=_zsc61DjAp1ucQUbl8eYcJpCKcaXWg0ppe7lELzg8O0,8627776
|
|
4
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
+
placo-0.9.14.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.14.dist-info/METADATA,sha256=_3wZKUF837Ia-4AHbVGMUayxVIFodnLIeQMiA2fJqFE,2623
|
|
10
|
+
placo-0.9.14.dist-info/WHEEL,sha256=4kQvjbP6MS9CMWLI0C5DqDYm1zrnyiEx5eHwljDK5vs,115
|
|
11
|
+
placo-0.9.14.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.14.dist-info/RECORD,,
|
placo-0.9.12.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=2vIH_PkdRvvkS6ZaGN7BEo5b86Veo7W5TFK6uvuseNA,1999920
|
|
2
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=mzvCcpSNOnYiFNbmO915OmPeMbF2RHeYBUebyaaRkmE,160163
|
|
3
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=N8-m_23vGuuW9xx5ePZZm5hY3d76524aHiBAMwml-aw,8627256
|
|
4
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
-
placo-0.9.12.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.12.dist-info/METADATA,sha256=u4Uf_P83uEbsyUZs116-Es_sMqT9T3aAX6HBnwOniqo,2623
|
|
10
|
-
placo-0.9.12.dist-info/WHEEL,sha256=4kQvjbP6MS9CMWLI0C5DqDYm1zrnyiEx5eHwljDK5vs,115
|
|
11
|
-
placo-0.9.12.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|