placo 0.9.12__0-cp39-cp39-manylinux_2_28_x86_64.whl → 0.9.13__0-cp39-cp39-manylinux_2_28_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
@@ -3170,6 +3170,25 @@ class HumanoidParameters:
3170
3170
  ) -> None:
3171
3171
  ...
3172
3172
 
3173
+ def box_clip(
3174
+ self,
3175
+ step: numpy.ndarray, # Eigen::Vector3d
3176
+ ) -> numpy.ndarray:
3177
+ """
3178
+ Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
3179
+ """
3180
+ ...
3181
+
3182
+ def box_overlap_clip(
3183
+ self,
3184
+ support_side: any, # placo::humanoid::HumanoidRobot::Side
3185
+ step: numpy.ndarray, # Eigen::Vector3d
3186
+ ) -> numpy.ndarray:
3187
+ """
3188
+ Clips a step using ellipsoid and overlap avoidance.
3189
+ """
3190
+ ...
3191
+
3173
3192
  dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3174
3193
 
3175
3194
  def double_support_duration(
@@ -3206,7 +3225,7 @@ class HumanoidParameters:
3206
3225
  step: numpy.ndarray, # Eigen::Vector3d
3207
3226
  ) -> numpy.ndarray:
3208
3227
  """
3209
- Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
3228
+ Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
3210
3229
  """
3211
3230
  ...
3212
3231
 
@@ -3429,7 +3448,7 @@ class HumanoidRobot:
3429
3448
  """
3430
3449
  Computes all minimum distances between current collision pairs.
3431
3450
 
3432
- :return: <Element 'para' at 0x7f3a25007180>
3451
+ :return: <Element 'para' at 0x7f92500a0220>
3433
3452
  """
3434
3453
  ...
3435
3454
 
@@ -3461,7 +3480,7 @@ class HumanoidRobot:
3461
3480
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
3462
3481
 
3463
3482
  :param any frame: the frame for which we want the jacobian
3464
- :return: <Element 'para' at 0x7f3a25007bd0>
3483
+ :return: <Element 'para' at 0x7f92500a0cc0>
3465
3484
  """
3466
3485
  ...
3467
3486
 
@@ -3474,7 +3493,7 @@ class HumanoidRobot:
3474
3493
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
3475
3494
 
3476
3495
  :param any frame: the frame for which we want the jacobian time variation
3477
- :return: <Element 'para' at 0x7f3a2500f540>
3496
+ :return: <Element 'para' at 0x7f92500a66d0>
3478
3497
  """
3479
3498
  ...
3480
3499
 
@@ -3776,7 +3795,7 @@ class HumanoidRobot:
3776
3795
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
3777
3796
 
3778
3797
  :param bool stop_at_first: whether to stop at the first collision found
3779
- :return: <Element 'para' at 0x7f3a25001950>
3798
+ :return: <Element 'para' at 0x7f9250098ae0>
3780
3799
  """
3781
3800
  ...
3782
3801
 
@@ -6164,7 +6183,7 @@ class RobotWrapper:
6164
6183
  """
6165
6184
  Computes all minimum distances between current collision pairs.
6166
6185
 
6167
- :return: <Element 'para' at 0x7f3a2506ab80>
6186
+ :return: <Element 'para' at 0x7f92500ffc70>
6168
6187
  """
6169
6188
  ...
6170
6189
 
@@ -6177,7 +6196,7 @@ class RobotWrapper:
6177
6196
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
6178
6197
 
6179
6198
  :param any frame: the frame for which we want the jacobian
6180
- :return: <Element 'para' at 0x7f3a2506f680>
6199
+ :return: <Element 'para' at 0x7f9250105770>
6181
6200
  """
6182
6201
  ...
6183
6202
 
@@ -6190,7 +6209,7 @@ class RobotWrapper:
6190
6209
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
6191
6210
 
6192
6211
  :param any frame: the frame for which we want the jacobian time variation
6193
- :return: <Element 'para' at 0x7f3a2508e090>
6212
+ :return: <Element 'para' at 0x7f9250124180>
6194
6213
  """
6195
6214
  ...
6196
6215
 
@@ -6424,7 +6443,7 @@ class RobotWrapper:
6424
6443
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
6425
6444
 
6426
6445
  :param bool stop_at_first: whether to stop at the first collision found
6427
- :return: <Element 'para' at 0x7f3a2506a4a0>
6446
+ :return: <Element 'para' at 0x7f92500ff590>
6428
6447
  """
6429
6448
  ...
6430
6449
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.12
3
+ Version: 0.9.13
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.so,sha256=33NTsgXH_4Wh1iGk-K_JAQj9JULMg_HkK3BaZcWDlDQ,2000328
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=3NUF-_y76xiznBoAtWiAnuw9UvrUQ0YjGCbD4ly5wL4,160522
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=Peru9KmXT2ZwLiwF5EATtmlHrvl38_2Fh_BtlIJW9Tw,8631608
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.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=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
11
+ placo-0.9.13.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.13.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.so,sha256=cjG_gBdpjCkoJt92jQMYNUXZ2EZD_lwoSXZDy-2tHlo,1999920
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=LjnD5bkPj6OJPMyw-BHFP7uizcF23a2b54LONcoiE98,160087
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=ZRb0vedtJvOiV_rxWcsFp6McqRUb5sQBrIF1fxqLP0w,8627256
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=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
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