placo 0.9.11__0-cp311-cp311-manylinux_2_28_aarch64.whl → 0.9.13__0-cp311-cp311-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
@@ -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,17 @@ 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)
3233
+ """
3234
+ ...
3235
+
3236
+ def ellipsoid_overlap_clip(
3237
+ self,
3238
+ support_side: any, # placo::humanoid::HumanoidRobot::Side
3239
+ step: numpy.ndarray, # Eigen::Vector3d
3240
+ ) -> numpy.ndarray:
3241
+ """
3242
+ Clips a step using ellipsoid and overlap avoidance.
3214
3243
  """
3215
3244
  ...
3216
3245
 
@@ -3423,7 +3452,7 @@ class HumanoidRobot:
3423
3452
  """
3424
3453
  Computes all minimum distances between current collision pairs.
3425
3454
 
3426
- :return: <Element 'para' at 0xffe52b5a2110>
3455
+ :return: <Element 'para' at 0xff643a4aab60>
3427
3456
  """
3428
3457
  ...
3429
3458
 
@@ -3455,7 +3484,7 @@ class HumanoidRobot:
3455
3484
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
3456
3485
 
3457
3486
  :param any frame: the frame for which we want the jacobian
3458
- :return: <Element 'para' at 0xffe52b5a13f0>
3487
+ :return: <Element 'para' at 0xff643a4a9f80>
3459
3488
  """
3460
3489
  ...
3461
3490
 
@@ -3468,7 +3497,7 @@ class HumanoidRobot:
3468
3497
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
3469
3498
 
3470
3499
  :param any frame: the frame for which we want the jacobian time variation
3471
- :return: <Element 'para' at 0xffe52b511080>
3500
+ :return: <Element 'para' at 0xff643a4a81d0>
3472
3501
  """
3473
3502
  ...
3474
3503
 
@@ -3770,7 +3799,7 @@ class HumanoidRobot:
3770
3799
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
3771
3800
 
3772
3801
  :param bool stop_at_first: whether to stop at the first collision found
3773
- :return: <Element 'para' at 0xffe52b5a2660>
3802
+ :return: <Element 'para' at 0xff643a4ab2e0>
3774
3803
  """
3775
3804
  ...
3776
3805
 
@@ -6162,7 +6191,7 @@ class RobotWrapper:
6162
6191
  """
6163
6192
  Computes all minimum distances between current collision pairs.
6164
6193
 
6165
- :return: <Element 'para' at 0xffe52b4d9a80>
6194
+ :return: <Element 'para' at 0xff643a4b4c20>
6166
6195
  """
6167
6196
  ...
6168
6197
 
@@ -6175,7 +6204,7 @@ class RobotWrapper:
6175
6204
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
6176
6205
 
6177
6206
  :param any frame: the frame for which we want the jacobian
6178
- :return: <Element 'para' at 0xffe52b4da750>
6207
+ :return: <Element 'para' at 0xff643a4b4d60>
6179
6208
  """
6180
6209
  ...
6181
6210
 
@@ -6188,7 +6217,7 @@ class RobotWrapper:
6188
6217
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
6189
6218
 
6190
6219
  :param any frame: the frame for which we want the jacobian time variation
6191
- :return: <Element 'para' at 0xffe52b5a2ca0>
6220
+ :return: <Element 'para' at 0xff643a4b73d0>
6192
6221
  """
6193
6222
  ...
6194
6223
 
@@ -6422,7 +6451,7 @@ class RobotWrapper:
6422
6451
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
6423
6452
 
6424
6453
  :param bool stop_at_first: whether to stop at the first collision found
6425
- :return: <Element 'para' at 0xffe52b4dbe20>
6454
+ :return: <Element 'para' at 0xff643a4b4680>
6426
6455
  """
6427
6456
  ...
6428
6457
 
@@ -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=kck6xKWu5OEz1NwKABgdicgdyyNLXCwGbddIyEA0UOk,1711720
2
+ cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=Oq_jm95QiUht57kTnMTZfdbSeCLuNTEA53mJVpOMxW0,160598
3
+ cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=LNctxjZzflTF-2171P7FmXLlXDdyXxUg2n0nEhZsjNM,8963424
4
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.11/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=IUoq4jkvzpr-RCdJGO4GKbL2IGbQLBAg7MfEZl-UKjg,116
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=kjYtotuNKrY-BDrfj-SXVsSBwTiK1Pc8wbYZoqqhgWE,1711128
2
- cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=RB0pA5o3Tw6ykF4T9dsZoNMnKK6GGKw7vnMgByFqcUM,159915
3
- cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=DolIUbN5gdBXRhg9WK7xIfV3hZjn88eq9rybWP9l8fQ,8960864
4
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.11/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=IUoq4jkvzpr-RCdJGO4GKbL2IGbQLBAg7MfEZl-UKjg,116
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