placo 0.9.11__0-cp313-cp313-manylinux_2_28_aarch64.whl → 0.9.13__0-cp313-cp313-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.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.13/site-packages/placo.pyi +38 -9
- cmeel.prefix/lib/python3.13/site-packages/placo.so +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/METADATA +1 -1
- placo-0.9.13.dist-info/RECORD +12 -0
- placo-0.9.11.dist-info/RECORD +0 -12
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/WHEEL +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.11.dist-info → placo-0.9.13.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -3178,6 +3178,25 @@ 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
|
+
|
|
3181
3200
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3182
3201
|
|
|
3183
3202
|
def double_support_duration(
|
|
@@ -3214,7 +3233,17 @@ class HumanoidParameters:
|
|
|
3214
3233
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3215
3234
|
) -> numpy.ndarray:
|
|
3216
3235
|
"""
|
|
3217
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3236
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3237
|
+
"""
|
|
3238
|
+
...
|
|
3239
|
+
|
|
3240
|
+
def ellipsoid_overlap_clip(
|
|
3241
|
+
self,
|
|
3242
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3243
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3244
|
+
) -> numpy.ndarray:
|
|
3245
|
+
"""
|
|
3246
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3218
3247
|
"""
|
|
3219
3248
|
...
|
|
3220
3249
|
|
|
@@ -3427,7 +3456,7 @@ class HumanoidRobot:
|
|
|
3427
3456
|
"""
|
|
3428
3457
|
Computes all minimum distances between current collision pairs.
|
|
3429
3458
|
|
|
3430
|
-
:return: <Element 'para' at
|
|
3459
|
+
:return: <Element 'para' at 0xff0e9f5627f0>
|
|
3431
3460
|
"""
|
|
3432
3461
|
...
|
|
3433
3462
|
|
|
@@ -3459,7 +3488,7 @@ class HumanoidRobot:
|
|
|
3459
3488
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3460
3489
|
|
|
3461
3490
|
:param any frame: the frame for which we want the jacobian
|
|
3462
|
-
:return: <Element 'para' at
|
|
3491
|
+
:return: <Element 'para' at 0xff0e9f561cb0>
|
|
3463
3492
|
"""
|
|
3464
3493
|
...
|
|
3465
3494
|
|
|
@@ -3472,7 +3501,7 @@ class HumanoidRobot:
|
|
|
3472
3501
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3473
3502
|
|
|
3474
3503
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3475
|
-
:return: <Element 'para' at
|
|
3504
|
+
:return: <Element 'para' at 0xff0e9f56df30>
|
|
3476
3505
|
"""
|
|
3477
3506
|
...
|
|
3478
3507
|
|
|
@@ -3774,7 +3803,7 @@ class HumanoidRobot:
|
|
|
3774
3803
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3775
3804
|
|
|
3776
3805
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3777
|
-
:return: <Element 'para' at
|
|
3806
|
+
:return: <Element 'para' at 0xff0e9f5627a0>
|
|
3778
3807
|
"""
|
|
3779
3808
|
...
|
|
3780
3809
|
|
|
@@ -6170,7 +6199,7 @@ class RobotWrapper:
|
|
|
6170
6199
|
"""
|
|
6171
6200
|
Computes all minimum distances between current collision pairs.
|
|
6172
6201
|
|
|
6173
|
-
:return: <Element 'para' at
|
|
6202
|
+
:return: <Element 'para' at 0xff0e9f5af740>
|
|
6174
6203
|
"""
|
|
6175
6204
|
...
|
|
6176
6205
|
|
|
@@ -6183,7 +6212,7 @@ class RobotWrapper:
|
|
|
6183
6212
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6184
6213
|
|
|
6185
6214
|
:param any frame: the frame for which we want the jacobian
|
|
6186
|
-
:return: <Element 'para' at
|
|
6215
|
+
:return: <Element 'para' at 0xff0e9f5ae840>
|
|
6187
6216
|
"""
|
|
6188
6217
|
...
|
|
6189
6218
|
|
|
@@ -6196,7 +6225,7 @@ class RobotWrapper:
|
|
|
6196
6225
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6197
6226
|
|
|
6198
6227
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6199
|
-
:return: <Element 'para' at
|
|
6228
|
+
:return: <Element 'para' at 0xff0e9f5acb80>
|
|
6200
6229
|
"""
|
|
6201
6230
|
...
|
|
6202
6231
|
|
|
@@ -6430,7 +6459,7 @@ class RobotWrapper:
|
|
|
6430
6459
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6431
6460
|
|
|
6432
6461
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6433
|
-
:return: <Element 'para' at
|
|
6462
|
+
:return: <Element 'para' at 0xff0e9f5aff60>
|
|
6434
6463
|
"""
|
|
6435
6464
|
...
|
|
6436
6465
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=e4OmGbtnNXIiI1oo7F23qg3mQtmkhVvqgJL2oHVvin4,1711720
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=UWwQoBKcJkkO0EONiVT3E3vESqpMqhaGja3k9CIlmGs,160676
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=dbN2a-wAJJSS1t-DkDjnC5N6V1WMMqWWItQIVqe-mus,8890408
|
|
4
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.13/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=DGQqNGUKrJGr1PrENgiumO2xTXy5bjCsF7b9TI0kpzM,116
|
|
11
|
+
placo-0.9.13.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.13.dist-info/RECORD,,
|
placo-0.9.11.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=hB9yfCJQMigAHceiJobQsQ_HSvLRZCfK0VJnvQkM6oE,1711128
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=iDvyfxmZPSW2i4kiNIpv1rB0GQF9rGKC9kCtukDILgw,159993
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=01nOwEmTT5H_XYX3s_v9yyocHieVORKQd0pITVY5mMw,8887848
|
|
4
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.13/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=DGQqNGUKrJGr1PrENgiumO2xTXy5bjCsF7b9TI0kpzM,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
|
|
File without changes
|
|
File without changes
|