placo 0.9.13__0-cp313-cp313-macosx_10_9_x86_64.whl → 0.9.14__0-cp313-cp313-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.13/site-packages/placo.pyi +27 -8
- cmeel.prefix/lib/python3.13/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
|
|
@@ -3316,6 +3316,25 @@ class HumanoidParameters:
|
|
|
3316
3316
|
"""
|
|
3317
3317
|
...
|
|
3318
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
|
+
|
|
3319
3338
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3320
3339
|
|
|
3321
3340
|
def double_support_duration(
|
|
@@ -3576,7 +3595,7 @@ class HumanoidRobot:
|
|
|
3576
3595
|
"""
|
|
3577
3596
|
Computes all minimum distances between current collision pairs.
|
|
3578
3597
|
|
|
3579
|
-
:return: <Element 'para' at
|
|
3598
|
+
:return: <Element 'para' at 0x10fbca250>
|
|
3580
3599
|
"""
|
|
3581
3600
|
...
|
|
3582
3601
|
|
|
@@ -3609,7 +3628,7 @@ class HumanoidRobot:
|
|
|
3609
3628
|
|
|
3610
3629
|
:param any frame: the frame for which we want the jacobian
|
|
3611
3630
|
|
|
3612
|
-
:return: <Element 'para' at
|
|
3631
|
+
:return: <Element 'para' at 0x10fba9a30>
|
|
3613
3632
|
"""
|
|
3614
3633
|
...
|
|
3615
3634
|
|
|
@@ -3623,7 +3642,7 @@ class HumanoidRobot:
|
|
|
3623
3642
|
|
|
3624
3643
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3625
3644
|
|
|
3626
|
-
:return: <Element 'para' at
|
|
3645
|
+
:return: <Element 'para' at 0x10fba80e0>
|
|
3627
3646
|
"""
|
|
3628
3647
|
...
|
|
3629
3648
|
|
|
@@ -3931,7 +3950,7 @@ class HumanoidRobot:
|
|
|
3931
3950
|
|
|
3932
3951
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3933
3952
|
|
|
3934
|
-
:return: <Element 'para' at
|
|
3953
|
+
:return: <Element 'para' at 0x10fbca5c0>
|
|
3935
3954
|
"""
|
|
3936
3955
|
...
|
|
3937
3956
|
|
|
@@ -6407,7 +6426,7 @@ class RobotWrapper:
|
|
|
6407
6426
|
"""
|
|
6408
6427
|
Computes all minimum distances between current collision pairs.
|
|
6409
6428
|
|
|
6410
|
-
:return: <Element 'para' at
|
|
6429
|
+
:return: <Element 'para' at 0x10fb8c400>
|
|
6411
6430
|
"""
|
|
6412
6431
|
...
|
|
6413
6432
|
|
|
@@ -6421,7 +6440,7 @@ class RobotWrapper:
|
|
|
6421
6440
|
|
|
6422
6441
|
:param any frame: the frame for which we want the jacobian
|
|
6423
6442
|
|
|
6424
|
-
:return: <Element 'para' at
|
|
6443
|
+
:return: <Element 'para' at 0x10fb8cea0>
|
|
6425
6444
|
"""
|
|
6426
6445
|
...
|
|
6427
6446
|
|
|
@@ -6435,7 +6454,7 @@ class RobotWrapper:
|
|
|
6435
6454
|
|
|
6436
6455
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6437
6456
|
|
|
6438
|
-
:return: <Element 'para' at
|
|
6457
|
+
:return: <Element 'para' at 0x10fb8e610>
|
|
6439
6458
|
"""
|
|
6440
6459
|
...
|
|
6441
6460
|
|
|
@@ -6672,7 +6691,7 @@ class RobotWrapper:
|
|
|
6672
6691
|
|
|
6673
6692
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6674
6693
|
|
|
6675
|
-
:return: <Element 'para' at
|
|
6694
|
+
:return: <Element 'para' at 0x10fb83ba0>
|
|
6676
6695
|
"""
|
|
6677
6696
|
...
|
|
6678
6697
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=0WBl-uNV2OzHSUyYKsbvLOKail0rWkJtFsG1zMoz2JY,1707968
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=Wm0k5Ae2OaucT1TfQdr0cFC-Ttk9_wg2UjG2oZg_HBA,162930
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=vTfEfmC-vufXa2MSCdsFWerVW6SNvmD5_aN08dfIR8E,7342056
|
|
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=rxuqVnKVP8vDhfl2L6RxGZ8V4IVuMXuhIv9g12R9FC0,112
|
|
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=STfT6egf2M5qRQIt4TUOSAwdkfkJ2uarPEld0vOefto,1707520
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=zajixlo-FFj0tc2Mi84DmxkQelGVINRhzhpGTIYJOgc,162499
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=w9wTnsK_I26Uw4_91QKRtFzdtVcP8JagKCcSOJPJky4,7341584
|
|
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.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=rxuqVnKVP8vDhfl2L6RxGZ8V4IVuMXuhIv9g12R9FC0,112
|
|
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
|