placo 0.9.12__0-cp312-cp312-manylinux_2_28_x86_64.whl → 0.9.14__0-cp312-cp312-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
@@ -3178,6 +3178,44 @@ class HumanoidParameters:
3178
3178
  ) -> None:
3179
3179
  ...
3180
3180
 
3181
+ def box_clip(
3182
+ self,
3183
+ step: numpy.ndarray, # Eigen::Vector3d
3184
+ ) -> numpy.ndarray:
3185
+ """
3186
+ Applies the box clipping (L1) to a given step size (dx, dy, dtheta)
3187
+ """
3188
+ ...
3189
+
3190
+ def box_overlap_clip(
3191
+ self,
3192
+ support_side: any, # placo::humanoid::HumanoidRobot::Side
3193
+ step: numpy.ndarray, # Eigen::Vector3d
3194
+ ) -> numpy.ndarray:
3195
+ """
3196
+ Clips a step using ellipsoid and overlap avoidance.
3197
+ """
3198
+ ...
3199
+
3200
+ def conic_clip(
3201
+ self,
3202
+ step: numpy.ndarray, # Eigen::Vector3d
3203
+ ) -> numpy.ndarray:
3204
+ """
3205
+ Applies the conic clipping to a given step size (dx, dy, dtheta)
3206
+ """
3207
+ ...
3208
+
3209
+ def conic_overlap_clip(
3210
+ self,
3211
+ support_side: any, # placo::humanoid::HumanoidRobot::Side
3212
+ step: numpy.ndarray, # Eigen::Vector3d
3213
+ ) -> numpy.ndarray:
3214
+ """
3215
+ Clips a step using ellipsoid and overlap avoidance.
3216
+ """
3217
+ ...
3218
+
3181
3219
  dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3182
3220
 
3183
3221
  def double_support_duration(
@@ -3214,7 +3252,7 @@ class HumanoidParameters:
3214
3252
  step: numpy.ndarray, # Eigen::Vector3d
3215
3253
  ) -> numpy.ndarray:
3216
3254
  """
3217
- Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
3255
+ Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
3218
3256
  """
3219
3257
  ...
3220
3258
 
@@ -3437,7 +3475,7 @@ class HumanoidRobot:
3437
3475
  """
3438
3476
  Computes all minimum distances between current collision pairs.
3439
3477
 
3440
- :return: <Element 'para' at 0x7f2a69f81e40>
3478
+ :return: <Element 'para' at 0x7f3aece5a660>
3441
3479
  """
3442
3480
  ...
3443
3481
 
@@ -3469,7 +3507,7 @@ class HumanoidRobot:
3469
3507
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
3470
3508
 
3471
3509
  :param any frame: the frame for which we want the jacobian
3472
- :return: <Element 'para' at 0x7f2a69f81b20>
3510
+ :return: <Element 'para' at 0x7f3aed02cc20>
3473
3511
  """
3474
3512
  ...
3475
3513
 
@@ -3482,7 +3520,7 @@ class HumanoidRobot:
3482
3520
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
3483
3521
 
3484
3522
  :param any frame: the frame for which we want the jacobian time variation
3485
- :return: <Element 'para' at 0x7f2a69f834c0>
3523
+ :return: <Element 'para' at 0x7f3aed02f380>
3486
3524
  """
3487
3525
  ...
3488
3526
 
@@ -3784,7 +3822,7 @@ class HumanoidRobot:
3784
3822
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
3785
3823
 
3786
3824
  :param bool stop_at_first: whether to stop at the first collision found
3787
- :return: <Element 'para' at 0x7f2a69f5fec0>
3825
+ :return: <Element 'para' at 0x7f3aece5af20>
3788
3826
  """
3789
3827
  ...
3790
3828
 
@@ -6180,7 +6218,7 @@ class RobotWrapper:
6180
6218
  """
6181
6219
  Computes all minimum distances between current collision pairs.
6182
6220
 
6183
- :return: <Element 'para' at 0x7f2a69f80bd0>
6221
+ :return: <Element 'para' at 0x7f3aece84cc0>
6184
6222
  """
6185
6223
  ...
6186
6224
 
@@ -6193,7 +6231,7 @@ class RobotWrapper:
6193
6231
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
6194
6232
 
6195
6233
  :param any frame: the frame for which we want the jacobian
6196
- :return: <Element 'para' at 0x7f2a69f81620>
6234
+ :return: <Element 'para' at 0x7f3aece85710>
6197
6235
  """
6198
6236
  ...
6199
6237
 
@@ -6206,7 +6244,7 @@ class RobotWrapper:
6206
6244
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
6207
6245
 
6208
6246
  :param any frame: the frame for which we want the jacobian time variation
6209
- :return: <Element 'para' at 0x7f2a69f82cf0>
6247
+ :return: <Element 'para' at 0x7f3aece86de0>
6210
6248
  """
6211
6249
  ...
6212
6250
 
@@ -6440,7 +6478,7 @@ class RobotWrapper:
6440
6478
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
6441
6479
 
6442
6480
  :param bool stop_at_first: whether to stop at the first collision found
6443
- :return: <Element 'para' at 0x7f2a69f80450>
6481
+ :return: <Element 'para' at 0x7f3aece84540>
6444
6482
  """
6445
6483
  ...
6446
6484
 
@@ -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.so,sha256=lZ512asXRntVTxNGWt7YMnixE_BiYgitGVdyEbZz5MM,2000640
2
+ cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=jfHmbJhVq5AgVGTYT3ybNxab2982hh2_UU-yA9wEXX0,161107
3
+ cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=hkzOoo1t5fHK84MblFzVR5DIM8JAzGmLOvFBFRjEyl4,8606248
4
+ cmeel.prefix/lib/python3.12/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.12/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.12/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.12/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=eXheUxpbFnMVV8zNFDEABgfUQTPiFjxEEzg6PDTNDzE,115
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.so,sha256=jif0bc73vUODzkYAFfRGTjD-qu0tkvxdRDRxsZ8Da5M,1999920
2
- cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=jcxsi0EarQmv3h2fDkyxIOI2zFh2adaT76WL08r_G1k,160241
3
- cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=_7MgVO3g7w3ShoLEIP7tET_2juSqC8J3mBJaLqeq20o,8605736
4
- cmeel.prefix/lib/python3.12/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.12/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.12/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.12/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=eXheUxpbFnMVV8zNFDEABgfUQTPiFjxEEzg6PDTNDzE,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