placo 0.9.12__0-cp312-cp312-manylinux_2_28_aarch64.whl → 0.9.14__0-cp312-cp312-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.12/site-packages/placo.pyi +47 -9
- cmeel.prefix/lib/python3.12/site-packages/placo.so +0 -0
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/METADATA +1 -1
- placo-0.9.14.dist-info/RECORD +12 -0
- placo-0.9.12.dist-info/RECORD +0 -12
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/WHEEL +0 -0
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.12.dist-info → placo-0.9.14.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
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
|
|
3478
|
+
:return: <Element 'para' at 0xffa5c0aa0720>
|
|
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
|
|
3510
|
+
:return: <Element 'para' at 0xffa5c0aa28e0>
|
|
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
|
|
3523
|
+
:return: <Element 'para' at 0xffa5c0ab2110>
|
|
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
|
|
3825
|
+
:return: <Element 'para' at 0xffa5c0aa0310>
|
|
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
|
|
6221
|
+
:return: <Element 'para' at 0xffa5c08f7380>
|
|
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
|
|
6234
|
+
:return: <Element 'para' at 0xffa5c08f6610>
|
|
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
|
|
6247
|
+
:return: <Element 'para' at 0xffa5c08f5080>
|
|
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
|
|
6481
|
+
:return: <Element 'para' at 0xffa5c08f79c0>
|
|
6444
6482
|
"""
|
|
6445
6483
|
...
|
|
6446
6484
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=rbotpHNZ4gEv3cD_80y00x9hruEyLF0DxWZE1SFJuQI,1712008
|
|
2
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=f08s1bK_B-OqGRkDn-hF0O89dBdhX2po_lZDhEBozr8,161107
|
|
3
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=aNJbmi7OiUjsWsEPIysisI25NoY9fVbF-oEb6EvNfg0,8890664
|
|
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=ToaEwJN9ywpm4RbRLZDEOVlE45Im7C9qIw02cSBZGOA,116
|
|
11
|
+
placo-0.9.14.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.14.dist-info/RECORD,,
|
placo-0.9.12.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=rhl2GDXY1TD3hajjst4KBXkBouZFkQKfR0JyYyhYLpY,1711304
|
|
2
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=TNWtrXSAPSp1neiPjKJp0t_e0h_5SnbUbP3r113-8ec,160241
|
|
3
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=ApLuCR5rt6Gs5hoPYfvvCB9Sx8MvE4J5dJCJbZtXge8,8890152
|
|
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=ToaEwJN9ywpm4RbRLZDEOVlE45Im7C9qIw02cSBZGOA,116
|
|
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
|
|
File without changes
|
|
File without changes
|