placo 0.9.12__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.14__0-cp313-cp313-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.13/site-packages/placo.pyi +47 -9
- cmeel.prefix/lib/python3.13/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
|
|
@@ -3297,6 +3297,44 @@ class HumanoidParameters:
|
|
|
3297
3297
|
) -> None:
|
|
3298
3298
|
...
|
|
3299
3299
|
|
|
3300
|
+
def box_clip(
|
|
3301
|
+
self,
|
|
3302
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3303
|
+
) -> numpy.ndarray:
|
|
3304
|
+
"""
|
|
3305
|
+
Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
|
|
3306
|
+
"""
|
|
3307
|
+
...
|
|
3308
|
+
|
|
3309
|
+
def box_overlap_clip(
|
|
3310
|
+
self,
|
|
3311
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3312
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3313
|
+
) -> numpy.ndarray:
|
|
3314
|
+
"""
|
|
3315
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3316
|
+
"""
|
|
3317
|
+
...
|
|
3318
|
+
|
|
3319
|
+
def conic_clip(
|
|
3320
|
+
self,
|
|
3321
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3322
|
+
) -> numpy.ndarray:
|
|
3323
|
+
"""
|
|
3324
|
+
Applies the conic clipping to a given step size (dx, dy, dtheta)
|
|
3325
|
+
"""
|
|
3326
|
+
...
|
|
3327
|
+
|
|
3328
|
+
def conic_overlap_clip(
|
|
3329
|
+
self,
|
|
3330
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3331
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3332
|
+
) -> numpy.ndarray:
|
|
3333
|
+
"""
|
|
3334
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3335
|
+
"""
|
|
3336
|
+
...
|
|
3337
|
+
|
|
3300
3338
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3301
3339
|
|
|
3302
3340
|
def double_support_duration(
|
|
@@ -3333,7 +3371,7 @@ class HumanoidParameters:
|
|
|
3333
3371
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3334
3372
|
) -> numpy.ndarray:
|
|
3335
3373
|
"""
|
|
3336
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3374
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3337
3375
|
"""
|
|
3338
3376
|
...
|
|
3339
3377
|
|
|
@@ -3557,7 +3595,7 @@ class HumanoidRobot:
|
|
|
3557
3595
|
"""
|
|
3558
3596
|
Computes all minimum distances between current collision pairs.
|
|
3559
3597
|
|
|
3560
|
-
:return: <Element 'para' at
|
|
3598
|
+
:return: <Element 'para' at 0x104da2fc0>
|
|
3561
3599
|
"""
|
|
3562
3600
|
...
|
|
3563
3601
|
|
|
@@ -3590,7 +3628,7 @@ class HumanoidRobot:
|
|
|
3590
3628
|
|
|
3591
3629
|
:param any frame: the frame for which we want the jacobian
|
|
3592
3630
|
|
|
3593
|
-
:return: <Element 'para' at
|
|
3631
|
+
:return: <Element 'para' at 0x104da22f0>
|
|
3594
3632
|
"""
|
|
3595
3633
|
...
|
|
3596
3634
|
|
|
@@ -3604,7 +3642,7 @@ class HumanoidRobot:
|
|
|
3604
3642
|
|
|
3605
3643
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3606
3644
|
|
|
3607
|
-
:return: <Element 'para' at
|
|
3645
|
+
:return: <Element 'para' at 0x104da2610>
|
|
3608
3646
|
"""
|
|
3609
3647
|
...
|
|
3610
3648
|
|
|
@@ -3912,7 +3950,7 @@ class HumanoidRobot:
|
|
|
3912
3950
|
|
|
3913
3951
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3914
3952
|
|
|
3915
|
-
:return: <Element 'para' at
|
|
3953
|
+
:return: <Element 'para' at 0x104fd8040>
|
|
3916
3954
|
"""
|
|
3917
3955
|
...
|
|
3918
3956
|
|
|
@@ -6388,7 +6426,7 @@ class RobotWrapper:
|
|
|
6388
6426
|
"""
|
|
6389
6427
|
Computes all minimum distances between current collision pairs.
|
|
6390
6428
|
|
|
6391
|
-
:return: <Element 'para' at
|
|
6429
|
+
:return: <Element 'para' at 0x104d80590>
|
|
6392
6430
|
"""
|
|
6393
6431
|
...
|
|
6394
6432
|
|
|
@@ -6402,7 +6440,7 @@ class RobotWrapper:
|
|
|
6402
6440
|
|
|
6403
6441
|
:param any frame: the frame for which we want the jacobian
|
|
6404
6442
|
|
|
6405
|
-
:return: <Element 'para' at
|
|
6443
|
+
:return: <Element 'para' at 0x104d81030>
|
|
6406
6444
|
"""
|
|
6407
6445
|
...
|
|
6408
6446
|
|
|
@@ -6416,7 +6454,7 @@ class RobotWrapper:
|
|
|
6416
6454
|
|
|
6417
6455
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6418
6456
|
|
|
6419
|
-
:return: <Element 'para' at
|
|
6457
|
+
:return: <Element 'para' at 0x104d827a0>
|
|
6420
6458
|
"""
|
|
6421
6459
|
...
|
|
6422
6460
|
|
|
@@ -6653,7 +6691,7 @@ class RobotWrapper:
|
|
|
6653
6691
|
|
|
6654
6692
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6655
6693
|
|
|
6656
|
-
:return: <Element 'para' at
|
|
6694
|
+
:return: <Element 'para' at 0x104d7bd30>
|
|
6657
6695
|
"""
|
|
6658
6696
|
...
|
|
6659
6697
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=1J1TwG01GSowIdA5wti8jR_K1RL5pBo11DCJzckDqDQ,1401888
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=rBeMnSpDz-B_BNXzlD3RC4oejujn6NCDUQGwYOMgvow,162930
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=YYpVKQQ6ctsa-C7ysIppqUb9_5HteALb0pJ6rbrSai4,6846056
|
|
4
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.13/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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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=8LD7qan91SR8cTfF-C5ExeOZzJkWwlOeWs1aRgjRWQY,1400816
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=hNX7QRf5HqRcSJpQRFFhLxqfa5l3iJ8SnQ03HUI0RqY,162064
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=68Co7huWH-8ZsJIIFTlZAOSubUrYmRD_r5BMhb4gnM0,6845048
|
|
4
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.13/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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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
|