placo 0.9.12__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.

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 0x10ea07240>
3598
+ :return: <Element 'para' at 0x10fbca250>
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 0x10e9c0ef0>
3631
+ :return: <Element 'para' at 0x10fba9a30>
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 0x10e9c1850>
3645
+ :return: <Element 'para' at 0x10fba80e0>
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 0x10ea06070>
3953
+ :return: <Element 'para' at 0x10fbca5c0>
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 0x10e9b4270>
6429
+ :return: <Element 'para' at 0x10fb8c400>
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 0x10e9b4d10>
6443
+ :return: <Element 'para' at 0x10fb8cea0>
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 0x10e9b6480>
6457
+ :return: <Element 'para' at 0x10fb8e610>
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 0x10e9aba10>
6694
+ :return: <Element 'para' at 0x10fb83ba0>
6657
6695
  """
6658
6696
  ...
6659
6697
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.12
3
+ Version: 0.9.14
4
4
  Summary: PlaCo: Rhoban Planning and Control
5
5
  Requires-Python: >= 3.8
6
6
  License-Expression: MIT
@@ -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,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.dylib,sha256=NIA_bInbWdBbA2ioNNjz43DufqpW_F5hwDzedvikwgc,1706896
2
- cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=dJxuelmLrvTtPIe76fvgITEZnHdR6PNMN9yujNWhYtU,162064
3
- cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=B_D5kUctIAOpPoKJJRnldbBTNKMNW-hZiOQiUvAJY6k,7341048
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=rxuqVnKVP8vDhfl2L6RxGZ8V4IVuMXuhIv9g12R9FC0,112
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