placo 0.9.12__0-cp310-cp310-manylinux_2_28_x86_64.whl → 0.9.13__0-cp310-cp310-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
@@ -3174,6 +3174,25 @@ class HumanoidParameters:
3174
3174
  ) -> None:
3175
3175
  ...
3176
3176
 
3177
+ def box_clip(
3178
+ self,
3179
+ step: numpy.ndarray, # Eigen::Vector3d
3180
+ ) -> numpy.ndarray:
3181
+ """
3182
+ Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
3183
+ """
3184
+ ...
3185
+
3186
+ def box_overlap_clip(
3187
+ self,
3188
+ support_side: any, # placo::humanoid::HumanoidRobot::Side
3189
+ step: numpy.ndarray, # Eigen::Vector3d
3190
+ ) -> numpy.ndarray:
3191
+ """
3192
+ Clips a step using ellipsoid and overlap avoidance.
3193
+ """
3194
+ ...
3195
+
3177
3196
  dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3178
3197
 
3179
3198
  def double_support_duration(
@@ -3210,7 +3229,7 @@ class HumanoidParameters:
3210
3229
  step: numpy.ndarray, # Eigen::Vector3d
3211
3230
  ) -> numpy.ndarray:
3212
3231
  """
3213
- Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
3232
+ Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
3214
3233
  """
3215
3234
  ...
3216
3235
 
@@ -3433,7 +3452,7 @@ class HumanoidRobot:
3433
3452
  """
3434
3453
  Computes all minimum distances between current collision pairs.
3435
3454
 
3436
- :return: <Element 'para' at 0x7fd4558b49f0>
3455
+ :return: <Element 'para' at 0x7fa02d5c4d10>
3437
3456
  """
3438
3457
  ...
3439
3458
 
@@ -3465,7 +3484,7 @@ class HumanoidRobot:
3465
3484
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
3466
3485
 
3467
3486
  :param any frame: the frame for which we want the jacobian
3468
- :return: <Element 'para' at 0x7fd4558b5490>
3487
+ :return: <Element 'para' at 0x7fa02d5c57b0>
3469
3488
  """
3470
3489
  ...
3471
3490
 
@@ -3478,7 +3497,7 @@ class HumanoidRobot:
3478
3497
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
3479
3498
 
3480
3499
  :param any frame: the frame for which we want the jacobian time variation
3481
- :return: <Element 'para' at 0x7fd4558b6de0>
3500
+ :return: <Element 'para' at 0x7fa02d5c7100>
3482
3501
  """
3483
3502
  ...
3484
3503
 
@@ -3780,7 +3799,7 @@ class HumanoidRobot:
3780
3799
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
3781
3800
 
3782
3801
  :param bool stop_at_first: whether to stop at the first collision found
3783
- :return: <Element 'para' at 0x7fd4558b4310>
3802
+ :return: <Element 'para' at 0x7fa02d5c4630>
3784
3803
  """
3785
3804
  ...
3786
3805
 
@@ -6172,7 +6191,7 @@ class RobotWrapper:
6172
6191
  """
6173
6192
  Computes all minimum distances between current collision pairs.
6174
6193
 
6175
- :return: <Element 'para' at 0x7fd4557d0130>
6194
+ :return: <Element 'para' at 0x7fa02d4d8220>
6176
6195
  """
6177
6196
  ...
6178
6197
 
@@ -6185,7 +6204,7 @@ class RobotWrapper:
6185
6204
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
6186
6205
 
6187
6206
  :param any frame: the frame for which we want the jacobian
6188
- :return: <Element 'para' at 0x7fd4557d0bd0>
6207
+ :return: <Element 'para' at 0x7fa02d4d8cc0>
6189
6208
  """
6190
6209
  ...
6191
6210
 
@@ -6198,7 +6217,7 @@ class RobotWrapper:
6198
6217
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
6199
6218
 
6200
6219
  :param any frame: the frame for which we want the jacobian time variation
6201
- :return: <Element 'para' at 0x7fd4557d2520>
6220
+ :return: <Element 'para' at 0x7fa02d4da610>
6202
6221
  """
6203
6222
  ...
6204
6223
 
@@ -6432,7 +6451,7 @@ class RobotWrapper:
6432
6451
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
6433
6452
 
6434
6453
  :param bool stop_at_first: whether to stop at the first collision found
6435
- :return: <Element 'para' at 0x7fd4557e3a10>
6454
+ :return: <Element 'para' at 0x7fa02d4e3b00>
6436
6455
  """
6437
6456
  ...
6438
6457
 
@@ -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=Pg1RB2LgDqLHmf9ocrWCRU0m49HIYdUL7FZljuMUBnA,2000328
2
+ cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=eU_tBZ_SAwvIb7WFHF_SwOVIuzLjJZIMabk1bQWK2uk,160598
3
+ cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=Rc4urSn5-cCFocqvEj2s6K1JCcKVXyMdHEZfoh-4utU,8631608
4
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.10/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=Wkd9YieXdH5gmAf-td4KdKc4NpXgxiNZvpS7nFiEXLQ,115
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=2KKKZu5haWuaq1wZLk9cyNpGJ-1MBkltP_-yhv7OXGs,1999920
2
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=CQN9T2cVzGGLztOQIpoVHumEQbRCbP-ngkCNbGIHMI4,160163
3
- cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=4lO8aPH1fbSuzglw_tx-GiXnnqOW7_1AIIrcCCUzFbc,8627256
4
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.10/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=Wkd9YieXdH5gmAf-td4KdKc4NpXgxiNZvpS7nFiEXLQ,115
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