placo 0.9.12__0-cp39-cp39-macosx_10_9_x86_64.whl → 0.9.14__0-cp39-cp39-macosx_10_9_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.dylib +0 -0
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi +47 -9
- cmeel.prefix/lib/python3.9/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
|
Binary file
|
|
@@ -3289,6 +3289,44 @@ 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
|
+
|
|
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
|
+
|
|
3292
3330
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3293
3331
|
|
|
3294
3332
|
def double_support_duration(
|
|
@@ -3325,7 +3363,7 @@ class HumanoidParameters:
|
|
|
3325
3363
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3326
3364
|
) -> numpy.ndarray:
|
|
3327
3365
|
"""
|
|
3328
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3366
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3329
3367
|
"""
|
|
3330
3368
|
...
|
|
3331
3369
|
|
|
@@ -3549,7 +3587,7 @@ class HumanoidRobot:
|
|
|
3549
3587
|
"""
|
|
3550
3588
|
Computes all minimum distances between current collision pairs.
|
|
3551
3589
|
|
|
3552
|
-
:return: <Element 'para' at
|
|
3590
|
+
:return: <Element 'para' at 0x10f1437c0>
|
|
3553
3591
|
"""
|
|
3554
3592
|
...
|
|
3555
3593
|
|
|
@@ -3582,7 +3620,7 @@ class HumanoidRobot:
|
|
|
3582
3620
|
|
|
3583
3621
|
:param any frame: the frame for which we want the jacobian
|
|
3584
3622
|
|
|
3585
|
-
:return: <Element 'para' at
|
|
3623
|
+
:return: <Element 'para' at 0x10f146310>
|
|
3586
3624
|
"""
|
|
3587
3625
|
...
|
|
3588
3626
|
|
|
@@ -3596,7 +3634,7 @@ class HumanoidRobot:
|
|
|
3596
3634
|
|
|
3597
3635
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3598
3636
|
|
|
3599
|
-
:return: <Element 'para' at
|
|
3637
|
+
:return: <Element 'para' at 0x10f1482c0>
|
|
3600
3638
|
"""
|
|
3601
3639
|
...
|
|
3602
3640
|
|
|
@@ -3904,7 +3942,7 @@ class HumanoidRobot:
|
|
|
3904
3942
|
|
|
3905
3943
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3906
3944
|
|
|
3907
|
-
:return: <Element 'para' at
|
|
3945
|
+
:return: <Element 'para' at 0x10f143090>
|
|
3908
3946
|
"""
|
|
3909
3947
|
...
|
|
3910
3948
|
|
|
@@ -6372,7 +6410,7 @@ class RobotWrapper:
|
|
|
6372
6410
|
"""
|
|
6373
6411
|
Computes all minimum distances between current collision pairs.
|
|
6374
6412
|
|
|
6375
|
-
:return: <Element 'para' at
|
|
6413
|
+
:return: <Element 'para' at 0x10e1ec130>
|
|
6376
6414
|
"""
|
|
6377
6415
|
...
|
|
6378
6416
|
|
|
@@ -6386,7 +6424,7 @@ class RobotWrapper:
|
|
|
6386
6424
|
|
|
6387
6425
|
:param any frame: the frame for which we want the jacobian
|
|
6388
6426
|
|
|
6389
|
-
:return: <Element 'para' at
|
|
6427
|
+
:return: <Element 'para' at 0x10e1ecc20>
|
|
6390
6428
|
"""
|
|
6391
6429
|
...
|
|
6392
6430
|
|
|
@@ -6400,7 +6438,7 @@ class RobotWrapper:
|
|
|
6400
6438
|
|
|
6401
6439
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6402
6440
|
|
|
6403
|
-
:return: <Element 'para' at
|
|
6441
|
+
:return: <Element 'para' at 0x10e1f36d0>
|
|
6404
6442
|
"""
|
|
6405
6443
|
...
|
|
6406
6444
|
|
|
@@ -6637,7 +6675,7 @@ class RobotWrapper:
|
|
|
6637
6675
|
|
|
6638
6676
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6639
6677
|
|
|
6640
|
-
:return: <Element 'para' at
|
|
6678
|
+
:return: <Element 'para' at 0x10e1e69a0>
|
|
6641
6679
|
"""
|
|
6642
6680
|
...
|
|
6643
6681
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=76Kmg6LaS_W_ay6zcMATuJCn4hRQDs09WcyP1k9m0_Y,1708064
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=UiDErQqcm20HruHJE2hewgrQj7JYBeAG1xxyD235yLU,162776
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=K5TZ3xMh8ZPKdUnWSqGmG68a3bn8r47I9U6SgZyrSBc,7221240
|
|
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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
|
|
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.dylib,sha256=qPUHCSw4GAJOsNcM7enOwS9TNnJ6OB_vRHnDmBEbX_w,1706992
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=llB_soTw7rnV8X4ZwkzQt3RpTccIHA0QZt0ZeCzHvIY,161910
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=-7fz7kVeLwTHxmSh8rXK4w2yAZAxKbF3wUzu0Uk5pNE,7220232
|
|
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.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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
|
|
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
|