placo 0.9.11__0-cp38-cp38-manylinux_2_28_aarch64.whl → 0.9.13__0-cp38-cp38-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.8/site-packages/placo.pyi +38 -9
- cmeel.prefix/lib/python3.8/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
|
|
@@ -3170,6 +3170,25 @@ class HumanoidParameters:
|
|
|
3170
3170
|
) -> None:
|
|
3171
3171
|
...
|
|
3172
3172
|
|
|
3173
|
+
def box_clip(
|
|
3174
|
+
self,
|
|
3175
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3176
|
+
) -> numpy.ndarray:
|
|
3177
|
+
"""
|
|
3178
|
+
Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
|
|
3179
|
+
"""
|
|
3180
|
+
...
|
|
3181
|
+
|
|
3182
|
+
def box_overlap_clip(
|
|
3183
|
+
self,
|
|
3184
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3185
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3186
|
+
) -> numpy.ndarray:
|
|
3187
|
+
"""
|
|
3188
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3189
|
+
"""
|
|
3190
|
+
...
|
|
3191
|
+
|
|
3173
3192
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3174
3193
|
|
|
3175
3194
|
def double_support_duration(
|
|
@@ -3206,7 +3225,17 @@ class HumanoidParameters:
|
|
|
3206
3225
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3207
3226
|
) -> numpy.ndarray:
|
|
3208
3227
|
"""
|
|
3209
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3228
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3229
|
+
"""
|
|
3230
|
+
...
|
|
3231
|
+
|
|
3232
|
+
def ellipsoid_overlap_clip(
|
|
3233
|
+
self,
|
|
3234
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3235
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3236
|
+
) -> numpy.ndarray:
|
|
3237
|
+
"""
|
|
3238
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3210
3239
|
"""
|
|
3211
3240
|
...
|
|
3212
3241
|
|
|
@@ -3419,7 +3448,7 @@ class HumanoidRobot:
|
|
|
3419
3448
|
"""
|
|
3420
3449
|
Computes all minimum distances between current collision pairs.
|
|
3421
3450
|
|
|
3422
|
-
:return: <Element 'para' at
|
|
3451
|
+
:return: <Element 'para' at 0xff1b95147b80>
|
|
3423
3452
|
"""
|
|
3424
3453
|
...
|
|
3425
3454
|
|
|
@@ -3451,7 +3480,7 @@ class HumanoidRobot:
|
|
|
3451
3480
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3452
3481
|
|
|
3453
3482
|
:param any frame: the frame for which we want the jacobian
|
|
3454
|
-
:return: <Element 'para' at
|
|
3483
|
+
:return: <Element 'para' at 0xff1b9512e900>
|
|
3455
3484
|
"""
|
|
3456
3485
|
...
|
|
3457
3486
|
|
|
@@ -3464,7 +3493,7 @@ class HumanoidRobot:
|
|
|
3464
3493
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3465
3494
|
|
|
3466
3495
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3467
|
-
:return: <Element 'para' at
|
|
3496
|
+
:return: <Element 'para' at 0xff1b95172c20>
|
|
3468
3497
|
"""
|
|
3469
3498
|
...
|
|
3470
3499
|
|
|
@@ -3766,7 +3795,7 @@ class HumanoidRobot:
|
|
|
3766
3795
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3767
3796
|
|
|
3768
3797
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3769
|
-
:return: <Element 'para' at
|
|
3798
|
+
:return: <Element 'para' at 0xff1b95154d60>
|
|
3770
3799
|
"""
|
|
3771
3800
|
...
|
|
3772
3801
|
|
|
@@ -6154,7 +6183,7 @@ class RobotWrapper:
|
|
|
6154
6183
|
"""
|
|
6155
6184
|
Computes all minimum distances between current collision pairs.
|
|
6156
6185
|
|
|
6157
|
-
:return: <Element 'para' at
|
|
6186
|
+
:return: <Element 'para' at 0xff1b95172ae0>
|
|
6158
6187
|
"""
|
|
6159
6188
|
...
|
|
6160
6189
|
|
|
@@ -6167,7 +6196,7 @@ class RobotWrapper:
|
|
|
6167
6196
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6168
6197
|
|
|
6169
6198
|
:param any frame: the frame for which we want the jacobian
|
|
6170
|
-
:return: <Element 'para' at
|
|
6199
|
+
:return: <Element 'para' at 0xff1b9518f900>
|
|
6171
6200
|
"""
|
|
6172
6201
|
...
|
|
6173
6202
|
|
|
@@ -6180,7 +6209,7 @@ class RobotWrapper:
|
|
|
6180
6209
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6181
6210
|
|
|
6182
6211
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6183
|
-
:return: <Element 'para' at
|
|
6212
|
+
:return: <Element 'para' at 0xff1b950840e0>
|
|
6184
6213
|
"""
|
|
6185
6214
|
...
|
|
6186
6215
|
|
|
@@ -6414,7 +6443,7 @@ class RobotWrapper:
|
|
|
6414
6443
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6415
6444
|
|
|
6416
6445
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6417
|
-
:return: <Element 'para' at
|
|
6446
|
+
:return: <Element 'para' at 0xff1b9507fc70>
|
|
6418
6447
|
"""
|
|
6419
6448
|
...
|
|
6420
6449
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=pV0EWrujl5dfmCQ62NVmzV-lfzsVUrKdgKf4hLqUpHw,1711720
|
|
2
|
+
cmeel.prefix/lib/python3.8/site-packages/placo.pyi,sha256=Dp8yKOdrAZxtyJezo_V5YNxuD7tYk4XqCPoGg09RTOQ,160522
|
|
3
|
+
cmeel.prefix/lib/python3.8/site-packages/placo.so,sha256=a53oYoJA-cyLxEp9RT6nIiosWdnT_IM0hR-xGVFKQy0,8963360
|
|
4
|
+
cmeel.prefix/lib/python3.8/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.8/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.8/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.8/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=YWcN_rwXwVVhVz0eZwcoH0DtwyFt42EtZoXF30KrCVo,114
|
|
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=loXikYZeH6YehKSNobcnhe7X6hx-NFqK49WTLnDdOuI,1711128
|
|
2
|
-
cmeel.prefix/lib/python3.8/site-packages/placo.pyi,sha256=Ep3q4NNAo9SrBKCRH3DAKAxAAGdmMoH-obHZphR5mv4,159839
|
|
3
|
-
cmeel.prefix/lib/python3.8/site-packages/placo.so,sha256=xjDi3sVAiGx7Qyldp9pQ9jwcBY7UOEsTjruJ0FAZbMA,8960800
|
|
4
|
-
cmeel.prefix/lib/python3.8/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.8/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.8/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.8/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=YWcN_rwXwVVhVz0eZwcoH0DtwyFt42EtZoXF30KrCVo,114
|
|
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
|