placo 0.9.13__0-cp39-cp39-macosx_11_0_arm64.whl → 0.9.14__0-cp39-cp39-macosx_11_0_arm64.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.dylib +0 -0
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi +27 -8
- cmeel.prefix/lib/python3.9/site-packages/placo.so +0 -0
- {placo-0.9.13.dist-info → placo-0.9.14.dist-info}/METADATA +1 -1
- placo-0.9.14.dist-info/RECORD +12 -0
- placo-0.9.13.dist-info/RECORD +0 -12
- {placo-0.9.13.dist-info → placo-0.9.14.dist-info}/WHEEL +0 -0
- {placo-0.9.13.dist-info → placo-0.9.14.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.13.dist-info → placo-0.9.14.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -3308,6 +3308,25 @@ class HumanoidParameters:
|
|
|
3308
3308
|
"""
|
|
3309
3309
|
...
|
|
3310
3310
|
|
|
3311
|
+
def conic_clip(
|
|
3312
|
+
self,
|
|
3313
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3314
|
+
) -> numpy.ndarray:
|
|
3315
|
+
"""
|
|
3316
|
+
Applies the conic clipping to a given step size (dx, dy, dtheta)
|
|
3317
|
+
"""
|
|
3318
|
+
...
|
|
3319
|
+
|
|
3320
|
+
def conic_overlap_clip(
|
|
3321
|
+
self,
|
|
3322
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3323
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3324
|
+
) -> numpy.ndarray:
|
|
3325
|
+
"""
|
|
3326
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3327
|
+
"""
|
|
3328
|
+
...
|
|
3329
|
+
|
|
3311
3330
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3312
3331
|
|
|
3313
3332
|
def double_support_duration(
|
|
@@ -3568,7 +3587,7 @@ class HumanoidRobot:
|
|
|
3568
3587
|
"""
|
|
3569
3588
|
Computes all minimum distances between current collision pairs.
|
|
3570
3589
|
|
|
3571
|
-
:return: <Element 'para' at
|
|
3590
|
+
:return: <Element 'para' at 0x107f1ef90>
|
|
3572
3591
|
"""
|
|
3573
3592
|
...
|
|
3574
3593
|
|
|
@@ -3601,7 +3620,7 @@ class HumanoidRobot:
|
|
|
3601
3620
|
|
|
3602
3621
|
:param any frame: the frame for which we want the jacobian
|
|
3603
3622
|
|
|
3604
|
-
:return: <Element 'para' at
|
|
3623
|
+
:return: <Element 'para' at 0x107f1e4a0>
|
|
3605
3624
|
"""
|
|
3606
3625
|
...
|
|
3607
3626
|
|
|
@@ -3615,7 +3634,7 @@ class HumanoidRobot:
|
|
|
3615
3634
|
|
|
3616
3635
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3617
3636
|
|
|
3618
|
-
:return: <Element 'para' at
|
|
3637
|
+
:return: <Element 'para' at 0x107f24680>
|
|
3619
3638
|
"""
|
|
3620
3639
|
...
|
|
3621
3640
|
|
|
@@ -3923,7 +3942,7 @@ class HumanoidRobot:
|
|
|
3923
3942
|
|
|
3924
3943
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3925
3944
|
|
|
3926
|
-
:return: <Element 'para' at
|
|
3945
|
+
:return: <Element 'para' at 0x107f13860>
|
|
3927
3946
|
"""
|
|
3928
3947
|
...
|
|
3929
3948
|
|
|
@@ -6391,7 +6410,7 @@ class RobotWrapper:
|
|
|
6391
6410
|
"""
|
|
6392
6411
|
Computes all minimum distances between current collision pairs.
|
|
6393
6412
|
|
|
6394
|
-
:return: <Element 'para' at
|
|
6413
|
+
:return: <Element 'para' at 0x10768c9f0>
|
|
6395
6414
|
"""
|
|
6396
6415
|
...
|
|
6397
6416
|
|
|
@@ -6405,7 +6424,7 @@ class RobotWrapper:
|
|
|
6405
6424
|
|
|
6406
6425
|
:param any frame: the frame for which we want the jacobian
|
|
6407
6426
|
|
|
6408
|
-
:return: <Element 'para' at
|
|
6427
|
+
:return: <Element 'para' at 0x107691540>
|
|
6409
6428
|
"""
|
|
6410
6429
|
...
|
|
6411
6430
|
|
|
@@ -6419,7 +6438,7 @@ class RobotWrapper:
|
|
|
6419
6438
|
|
|
6420
6439
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6421
6440
|
|
|
6422
|
-
:return: <Element 'para' at
|
|
6441
|
+
:return: <Element 'para' at 0x107694f90>
|
|
6423
6442
|
"""
|
|
6424
6443
|
...
|
|
6425
6444
|
|
|
@@ -6656,7 +6675,7 @@ class RobotWrapper:
|
|
|
6656
6675
|
|
|
6657
6676
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6658
6677
|
|
|
6659
|
-
:return: <Element 'para' at
|
|
6678
|
+
:return: <Element 'para' at 0x10768c2c0>
|
|
6660
6679
|
"""
|
|
6661
6680
|
...
|
|
6662
6681
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=crRzsDKSdoeEYOylJmQ5dIELZgGBiJt8bqil9QnijoM,1401888
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=y3QWIntWGZ3QZsvpV79-_Kml2TOBMrSKLO-ZkZW3tBU,162776
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=bLhHQw2LzONNqCQB58icLq42coXFCIaHa5YXhIUUlTY,6790408
|
|
4
|
+
cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.9/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=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
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.13.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=DpRT3jZkw2IcV-GPfQSC_7WAVlc79gKi77E5kk5vPSI,1401424
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=qy0lvHZ4pMstE9PopzWaGP6cs_fVFsE64lrWQE24zZU,162345
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=4_tjch6pHGab0-K_w3GfuTadwVqpPIv22Rp80GvmwI0,6789944
|
|
4
|
-
cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.9/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=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
11
|
-
placo-0.9.13.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|