placo 0.9.11__0-cp310-cp310-manylinux_2_28_aarch64.whl → 0.9.13__0-cp310-cp310-manylinux_2_28_aarch64.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.10/site-packages/placo.pyi +38 -9
- cmeel.prefix/lib/python3.10/site-packages/placo.so +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/METADATA +1 -1
- placo-0.9.13.dist-info/RECORD +12 -0
- placo-0.9.11.dist-info/RECORD +0 -12
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/WHEEL +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -3174,6 +3174,25 @@ 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
|
+
|
|
3177
3196
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3178
3197
|
|
|
3179
3198
|
def double_support_duration(
|
|
@@ -3210,7 +3229,17 @@ class HumanoidParameters:
|
|
|
3210
3229
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3211
3230
|
) -> numpy.ndarray:
|
|
3212
3231
|
"""
|
|
3213
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3232
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3233
|
+
"""
|
|
3234
|
+
...
|
|
3235
|
+
|
|
3236
|
+
def ellipsoid_overlap_clip(
|
|
3237
|
+
self,
|
|
3238
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3239
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3240
|
+
) -> numpy.ndarray:
|
|
3241
|
+
"""
|
|
3242
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3214
3243
|
"""
|
|
3215
3244
|
...
|
|
3216
3245
|
|
|
@@ -3423,7 +3452,7 @@ class HumanoidRobot:
|
|
|
3423
3452
|
"""
|
|
3424
3453
|
Computes all minimum distances between current collision pairs.
|
|
3425
3454
|
|
|
3426
|
-
:return: <Element 'para' at
|
|
3455
|
+
:return: <Element 'para' at 0xff512d7cf240>
|
|
3427
3456
|
"""
|
|
3428
3457
|
...
|
|
3429
3458
|
|
|
@@ -3455,7 +3484,7 @@ class HumanoidRobot:
|
|
|
3455
3484
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3456
3485
|
|
|
3457
3486
|
:param any frame: the frame for which we want the jacobian
|
|
3458
|
-
:return: <Element 'para' at
|
|
3487
|
+
:return: <Element 'para' at 0xff512d7cfa10>
|
|
3459
3488
|
"""
|
|
3460
3489
|
...
|
|
3461
3490
|
|
|
@@ -3468,7 +3497,7 @@ class HumanoidRobot:
|
|
|
3468
3497
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3469
3498
|
|
|
3470
3499
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3471
|
-
:return: <Element 'para' at
|
|
3500
|
+
:return: <Element 'para' at 0xff512d93a7f0>
|
|
3472
3501
|
"""
|
|
3473
3502
|
...
|
|
3474
3503
|
|
|
@@ -3770,7 +3799,7 @@ class HumanoidRobot:
|
|
|
3770
3799
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3771
3800
|
|
|
3772
3801
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3773
|
-
:return: <Element 'para' at
|
|
3802
|
+
:return: <Element 'para' at 0xff512d91fa60>
|
|
3774
3803
|
"""
|
|
3775
3804
|
...
|
|
3776
3805
|
|
|
@@ -6162,7 +6191,7 @@ class RobotWrapper:
|
|
|
6162
6191
|
"""
|
|
6163
6192
|
Computes all minimum distances between current collision pairs.
|
|
6164
6193
|
|
|
6165
|
-
:return: <Element 'para' at
|
|
6194
|
+
:return: <Element 'para' at 0xff512d951ad0>
|
|
6166
6195
|
"""
|
|
6167
6196
|
...
|
|
6168
6197
|
|
|
@@ -6175,7 +6204,7 @@ class RobotWrapper:
|
|
|
6175
6204
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6176
6205
|
|
|
6177
6206
|
:param any frame: the frame for which we want the jacobian
|
|
6178
|
-
:return: <Element 'para' at
|
|
6207
|
+
:return: <Element 'para' at 0xff512d9534c0>
|
|
6179
6208
|
"""
|
|
6180
6209
|
...
|
|
6181
6210
|
|
|
@@ -6188,7 +6217,7 @@ class RobotWrapper:
|
|
|
6188
6217
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6189
6218
|
|
|
6190
6219
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6191
|
-
:return: <Element 'para' at
|
|
6220
|
+
:return: <Element 'para' at 0xff512d938220>
|
|
6192
6221
|
"""
|
|
6193
6222
|
...
|
|
6194
6223
|
|
|
@@ -6422,7 +6451,7 @@ class RobotWrapper:
|
|
|
6422
6451
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6423
6452
|
|
|
6424
6453
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6425
|
-
:return: <Element 'para' at
|
|
6454
|
+
:return: <Element 'para' at 0xff512d933a10>
|
|
6426
6455
|
"""
|
|
6427
6456
|
...
|
|
6428
6457
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=RCZWsfSVBWUsSn5gPIKQJw--FVJJti26tTT4_21b1qU,1711720
|
|
2
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=2oSWqVdXeKD7D42TqAkX747KTD4bcnVIj21wo6aq_WI,160598
|
|
3
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=r0uRkGM8wm8jNcDecCYljO0XlB7v-szzOhnivpfkol0,8963424
|
|
4
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
+
placo-0.9.13.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.13.dist-info/METADATA,sha256=iHR1UfDkqy_3epoMhxa2rUEHUs4Bc8e3do1_EAKNIog,2623
|
|
10
|
+
placo-0.9.13.dist-info/WHEEL,sha256=vUz_L4RoT4ywPXSZmvCo12N3bCrHpcjUe1J1qrvdTu8,116
|
|
11
|
+
placo-0.9.13.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.13.dist-info/RECORD,,
|
placo-0.9.11.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=P3L80LqeIyA9bvYqiJq9BFoeoTZrLMwTmFuiU9G7hCQ,1711128
|
|
2
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=NU9hz1wqRB6u_DBXJj6eWQS0G_6jYq_JxxX5CPFgtCw,159915
|
|
3
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=zdTkrKxdIge-QqvnDuKQh92KGryteuFKLSYp3p2TwpE,8960864
|
|
4
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
-
placo-0.9.11.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.11.dist-info/METADATA,sha256=0K25RC_P7oh7mthpw4jmB7k8tANO-4CxmcPcaMiqyNg,2623
|
|
10
|
-
placo-0.9.11.dist-info/WHEEL,sha256=vUz_L4RoT4ywPXSZmvCo12N3bCrHpcjUe1J1qrvdTu8,116
|
|
11
|
-
placo-0.9.11.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|