placo 0.9.11__0-cp39-cp39-manylinux_2_28_aarch64.whl → 0.9.13__0-cp39-cp39-manylinux_2_28_aarch64.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,17 @@ 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)
3229
+ """
3230
+ ...
3231
+
3232
+ def ellipsoid_overlap_clip(
3233
+ self,
3234
+ support_side: any, # placo::humanoid::HumanoidRobot::Side
3235
+ step: numpy.ndarray, # Eigen::Vector3d
3236
+ ) -> numpy.ndarray:
3237
+ """
3238
+ Clips a step using ellipsoid and overlap avoidance.
3210
3239
  """
3211
3240
  ...
3212
3241
 
@@ -3419,7 +3448,7 @@ class HumanoidRobot:
3419
3448
  """
3420
3449
  Computes all minimum distances between current collision pairs.
3421
3450
 
3422
- :return: <Element 'para' at 0xff71fa050db0>
3451
+ :return: <Element 'para' at 0xffd6ed500400>
3423
3452
  """
3424
3453
  ...
3425
3454
 
@@ -3451,7 +3480,7 @@ class HumanoidRobot:
3451
3480
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
3452
3481
 
3453
3482
  :param any frame: the frame for which we want the jacobian
3454
- :return: <Element 'para' at 0xff71fa0504f0>
3483
+ :return: <Element 'para' at 0xffd6ed54a2c0>
3455
3484
  """
3456
3485
  ...
3457
3486
 
@@ -3464,7 +3493,7 @@ class HumanoidRobot:
3464
3493
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
3465
3494
 
3466
3495
  :param any frame: the frame for which we want the jacobian time variation
3467
- :return: <Element 'para' at 0xff71fa0ed590>
3496
+ :return: <Element 'para' at 0xffd6ed53a220>
3468
3497
  """
3469
3498
  ...
3470
3499
 
@@ -3766,7 +3795,7 @@ class HumanoidRobot:
3766
3795
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
3767
3796
 
3768
3797
  :param bool stop_at_first: whether to stop at the first collision found
3769
- :return: <Element 'para' at 0xff71fa04e360>
3798
+ :return: <Element 'para' at 0xffd6ed5009f0>
3770
3799
  """
3771
3800
  ...
3772
3801
 
@@ -6154,7 +6183,7 @@ class RobotWrapper:
6154
6183
  """
6155
6184
  Computes all minimum distances between current collision pairs.
6156
6185
 
6157
- :return: <Element 'para' at 0xff71fa013d10>
6186
+ :return: <Element 'para' at 0xffd6ed48c810>
6158
6187
  """
6159
6188
  ...
6160
6189
 
@@ -6167,7 +6196,7 @@ class RobotWrapper:
6167
6196
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
6168
6197
 
6169
6198
  :param any frame: the frame for which we want the jacobian
6170
- :return: <Element 'para' at 0xff71f9fe87c0>
6199
+ :return: <Element 'para' at 0xffd6ed4e4400>
6171
6200
  """
6172
6201
  ...
6173
6202
 
@@ -6180,7 +6209,7 @@ class RobotWrapper:
6180
6209
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
6181
6210
 
6182
6211
  :param any frame: the frame for which we want the jacobian time variation
6183
- :return: <Element 'para' at 0xff71f9fe3900>
6212
+ :return: <Element 'para' at 0xffd6ed4955e0>
6184
6213
  """
6185
6214
  ...
6186
6215
 
@@ -6414,7 +6443,7 @@ class RobotWrapper:
6414
6443
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
6415
6444
 
6416
6445
  :param bool stop_at_first: whether to stop at the first collision found
6417
- :return: <Element 'para' at 0xff71fa013450>
6446
+ :return: <Element 'para' at 0xffd6ed4824f0>
6418
6447
  """
6419
6448
  ...
6420
6449
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.11
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=2ouxzUAVr-tXEuJ6fNQRWX028sZyClEfloUZ9muH4sY,1711720
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=boRMCwDHHi_fTP6KAkGI-IOzkyBwNQ76ojZ0KwUbGkU,160522
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=Z2deUCVMclQveLsAWBORYaAXDT8sKJpk2PCkAnZR_UU,8963424
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=UpsNPCAbucsGLzlF7xcG-xAWM966_qp3wtQSt2FQzyw,114
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=SSiAUPEu2P3PcDi1NY3r1sc7ri7Ydd1_kH6B3kxA5V0,1711128
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=-xvfP7ttYX8fNBeRh98gskYXtE0AkRQPoOJBUV83p3Q,159839
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=YvpP_cqHENH_GLdiNXRab6UZFC_OMQ_xqGDFo3oHVnc,8960864
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.11.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
- placo-0.9.11.dist-info/METADATA,sha256=0K25RC_P7oh7mthpw4jmB7k8tANO-4CxmcPcaMiqyNg,2623
10
- placo-0.9.11.dist-info/WHEEL,sha256=UpsNPCAbucsGLzlF7xcG-xAWM966_qp3wtQSt2FQzyw,114
11
- placo-0.9.11.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- placo-0.9.11.dist-info/RECORD,,
File without changes