placo 0.9.11__0-cp39-cp39-macosx_11_0_arm64.whl → 0.9.13__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 +38 -9
- cmeel.prefix/lib/python3.9/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
|
Binary file
|
|
@@ -3289,6 +3289,25 @@ class HumanoidParameters:
|
|
|
3289
3289
|
) -> None:
|
|
3290
3290
|
...
|
|
3291
3291
|
|
|
3292
|
+
def box_clip(
|
|
3293
|
+
self,
|
|
3294
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3295
|
+
) -> numpy.ndarray:
|
|
3296
|
+
"""
|
|
3297
|
+
Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
|
|
3298
|
+
"""
|
|
3299
|
+
...
|
|
3300
|
+
|
|
3301
|
+
def box_overlap_clip(
|
|
3302
|
+
self,
|
|
3303
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3304
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3305
|
+
) -> numpy.ndarray:
|
|
3306
|
+
"""
|
|
3307
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3308
|
+
"""
|
|
3309
|
+
...
|
|
3310
|
+
|
|
3292
3311
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3293
3312
|
|
|
3294
3313
|
def double_support_duration(
|
|
@@ -3325,7 +3344,17 @@ class HumanoidParameters:
|
|
|
3325
3344
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3326
3345
|
) -> numpy.ndarray:
|
|
3327
3346
|
"""
|
|
3328
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3347
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3348
|
+
"""
|
|
3349
|
+
...
|
|
3350
|
+
|
|
3351
|
+
def ellipsoid_overlap_clip(
|
|
3352
|
+
self,
|
|
3353
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3354
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3355
|
+
) -> numpy.ndarray:
|
|
3356
|
+
"""
|
|
3357
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3329
3358
|
"""
|
|
3330
3359
|
...
|
|
3331
3360
|
|
|
@@ -3539,7 +3568,7 @@ class HumanoidRobot:
|
|
|
3539
3568
|
"""
|
|
3540
3569
|
Computes all minimum distances between current collision pairs.
|
|
3541
3570
|
|
|
3542
|
-
:return: <Element 'para' at
|
|
3571
|
+
:return: <Element 'para' at 0x1079c4f40>
|
|
3543
3572
|
"""
|
|
3544
3573
|
...
|
|
3545
3574
|
|
|
@@ -3572,7 +3601,7 @@ class HumanoidRobot:
|
|
|
3572
3601
|
|
|
3573
3602
|
:param any frame: the frame for which we want the jacobian
|
|
3574
3603
|
|
|
3575
|
-
:return: <Element 'para' at
|
|
3604
|
+
:return: <Element 'para' at 0x1079dca90>
|
|
3576
3605
|
"""
|
|
3577
3606
|
...
|
|
3578
3607
|
|
|
@@ -3586,7 +3615,7 @@ class HumanoidRobot:
|
|
|
3586
3615
|
|
|
3587
3616
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3588
3617
|
|
|
3589
|
-
:return: <Element 'para' at
|
|
3618
|
+
:return: <Element 'para' at 0x1079e4540>
|
|
3590
3619
|
"""
|
|
3591
3620
|
...
|
|
3592
3621
|
|
|
@@ -3894,7 +3923,7 @@ class HumanoidRobot:
|
|
|
3894
3923
|
|
|
3895
3924
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3896
3925
|
|
|
3897
|
-
:return: <Element 'para' at
|
|
3926
|
+
:return: <Element 'para' at 0x1079c4810>
|
|
3898
3927
|
"""
|
|
3899
3928
|
...
|
|
3900
3929
|
|
|
@@ -6362,7 +6391,7 @@ class RobotWrapper:
|
|
|
6362
6391
|
"""
|
|
6363
6392
|
Computes all minimum distances between current collision pairs.
|
|
6364
6393
|
|
|
6365
|
-
:return: <Element 'para' at
|
|
6394
|
+
:return: <Element 'para' at 0x1070309a0>
|
|
6366
6395
|
"""
|
|
6367
6396
|
...
|
|
6368
6397
|
|
|
@@ -6376,7 +6405,7 @@ class RobotWrapper:
|
|
|
6376
6405
|
|
|
6377
6406
|
:param any frame: the frame for which we want the jacobian
|
|
6378
6407
|
|
|
6379
|
-
:return: <Element 'para' at
|
|
6408
|
+
:return: <Element 'para' at 0x1070354f0>
|
|
6380
6409
|
"""
|
|
6381
6410
|
...
|
|
6382
6411
|
|
|
@@ -6390,7 +6419,7 @@ class RobotWrapper:
|
|
|
6390
6419
|
|
|
6391
6420
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6392
6421
|
|
|
6393
|
-
:return: <Element 'para' at
|
|
6422
|
+
:return: <Element 'para' at 0x107038f40>
|
|
6394
6423
|
"""
|
|
6395
6424
|
...
|
|
6396
6425
|
|
|
@@ -6627,7 +6656,7 @@ class RobotWrapper:
|
|
|
6627
6656
|
|
|
6628
6657
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6629
6658
|
|
|
6630
|
-
:return: <Element 'para' at
|
|
6659
|
+
:return: <Element 'para' at 0x107030270>
|
|
6631
6660
|
"""
|
|
6632
6661
|
...
|
|
6633
6662
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
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,,
|
placo-0.9.11.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=A7Oc95kQgfkpmN5jHE8yZjz7QJ4k4Fy2nnDv966656k,1400528
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=3LzddiMYrcqTpzoexsMdGkv02WrByveMmuxXT9jVdiA,161662
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=Y8mygLxOVFeFV566chVeWOqhkY3gkjLSqzn-NqCmrTg,6785864
|
|
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.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=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
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
|