placo 0.9.11__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.13__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 +38 -9
- cmeel.prefix/lib/python3.13/site-packages/placo.so +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/METADATA +1 -1
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/RECORD +8 -8
- {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
|
|
@@ -3297,6 +3297,25 @@ 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
|
+
|
|
3300
3319
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3301
3320
|
|
|
3302
3321
|
def double_support_duration(
|
|
@@ -3333,7 +3352,17 @@ class HumanoidParameters:
|
|
|
3333
3352
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3334
3353
|
) -> numpy.ndarray:
|
|
3335
3354
|
"""
|
|
3336
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3355
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3356
|
+
"""
|
|
3357
|
+
...
|
|
3358
|
+
|
|
3359
|
+
def ellipsoid_overlap_clip(
|
|
3360
|
+
self,
|
|
3361
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3362
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3363
|
+
) -> numpy.ndarray:
|
|
3364
|
+
"""
|
|
3365
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3337
3366
|
"""
|
|
3338
3367
|
...
|
|
3339
3368
|
|
|
@@ -3547,7 +3576,7 @@ class HumanoidRobot:
|
|
|
3547
3576
|
"""
|
|
3548
3577
|
Computes all minimum distances between current collision pairs.
|
|
3549
3578
|
|
|
3550
|
-
:return: <Element 'para' at
|
|
3579
|
+
:return: <Element 'para' at 0x1057e71a0>
|
|
3551
3580
|
"""
|
|
3552
3581
|
...
|
|
3553
3582
|
|
|
@@ -3580,7 +3609,7 @@ class HumanoidRobot:
|
|
|
3580
3609
|
|
|
3581
3610
|
:param any frame: the frame for which we want the jacobian
|
|
3582
3611
|
|
|
3583
|
-
:return: <Element 'para' at
|
|
3612
|
+
:return: <Element 'para' at 0x1057e6200>
|
|
3584
3613
|
"""
|
|
3585
3614
|
...
|
|
3586
3615
|
|
|
@@ -3594,7 +3623,7 @@ class HumanoidRobot:
|
|
|
3594
3623
|
|
|
3595
3624
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3596
3625
|
|
|
3597
|
-
:return: <Element 'para' at
|
|
3626
|
+
:return: <Element 'para' at 0x10577fe20>
|
|
3598
3627
|
"""
|
|
3599
3628
|
...
|
|
3600
3629
|
|
|
@@ -3902,7 +3931,7 @@ class HumanoidRobot:
|
|
|
3902
3931
|
|
|
3903
3932
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3904
3933
|
|
|
3905
|
-
:return: <Element 'para' at
|
|
3934
|
+
:return: <Element 'para' at 0x1057e6390>
|
|
3906
3935
|
"""
|
|
3907
3936
|
...
|
|
3908
3937
|
|
|
@@ -6378,7 +6407,7 @@ class RobotWrapper:
|
|
|
6378
6407
|
"""
|
|
6379
6408
|
Computes all minimum distances between current collision pairs.
|
|
6380
6409
|
|
|
6381
|
-
:return: <Element 'para' at
|
|
6410
|
+
:return: <Element 'para' at 0x1057e45e0>
|
|
6382
6411
|
"""
|
|
6383
6412
|
...
|
|
6384
6413
|
|
|
@@ -6392,7 +6421,7 @@ class RobotWrapper:
|
|
|
6392
6421
|
|
|
6393
6422
|
:param any frame: the frame for which we want the jacobian
|
|
6394
6423
|
|
|
6395
|
-
:return: <Element 'para' at
|
|
6424
|
+
:return: <Element 'para' at 0x1057e5080>
|
|
6396
6425
|
"""
|
|
6397
6426
|
...
|
|
6398
6427
|
|
|
@@ -6406,7 +6435,7 @@ class RobotWrapper:
|
|
|
6406
6435
|
|
|
6407
6436
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6408
6437
|
|
|
6409
|
-
:return: <Element 'para' at
|
|
6438
|
+
:return: <Element 'para' at 0x1057e67f0>
|
|
6410
6439
|
"""
|
|
6411
6440
|
...
|
|
6412
6441
|
|
|
@@ -6643,7 +6672,7 @@ class RobotWrapper:
|
|
|
6643
6672
|
|
|
6644
6673
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6645
6674
|
|
|
6646
|
-
:return: <Element 'para' at
|
|
6675
|
+
:return: <Element 'para' at 0x1057dfd80>
|
|
6647
6676
|
"""
|
|
6648
6677
|
...
|
|
6649
6678
|
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=YMQ-ZPv8ObwAWqSCNb2iPH-cCBz-rKjRGyI2CySC9LU,1401424
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=rOPE0A2rEuoif2rPeXExPNNAxF9miElOrGYjdUItjAk,162499
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=bS7UFoga3PAFZXlPs7YQRPMEfBFZ8k_3OQf4buR5has,6845576
|
|
4
4
|
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
5
|
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
6
|
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
7
|
cmeel.prefix/lib/python3.13/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
-
placo-0.9.
|
|
9
|
-
placo-0.9.
|
|
10
|
-
placo-0.9.
|
|
11
|
-
placo-0.9.
|
|
12
|
-
placo-0.9.
|
|
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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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
|