placo 0.9.12__0-cp39-cp39-manylinux_2_28_x86_64.whl → 0.9.14__0-cp39-cp39-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.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi +47 -9
- cmeel.prefix/lib/python3.9/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
|
|
@@ -3170,6 +3170,44 @@ 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
|
+
|
|
3192
|
+
def conic_clip(
|
|
3193
|
+
self,
|
|
3194
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3195
|
+
) -> numpy.ndarray:
|
|
3196
|
+
"""
|
|
3197
|
+
Applies the conic clipping to a given step size (dx, dy, dtheta)
|
|
3198
|
+
"""
|
|
3199
|
+
...
|
|
3200
|
+
|
|
3201
|
+
def conic_overlap_clip(
|
|
3202
|
+
self,
|
|
3203
|
+
support_side: any, # placo::humanoid::HumanoidRobot::Side
|
|
3204
|
+
step: numpy.ndarray, # Eigen::Vector3d
|
|
3205
|
+
) -> numpy.ndarray:
|
|
3206
|
+
"""
|
|
3207
|
+
Clips a step using ellipsoid and overlap avoidance.
|
|
3208
|
+
"""
|
|
3209
|
+
...
|
|
3210
|
+
|
|
3173
3211
|
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3174
3212
|
|
|
3175
3213
|
def double_support_duration(
|
|
@@ -3206,7 +3244,7 @@ class HumanoidParameters:
|
|
|
3206
3244
|
step: numpy.ndarray, # Eigen::Vector3d
|
|
3207
3245
|
) -> numpy.ndarray:
|
|
3208
3246
|
"""
|
|
3209
|
-
Applies the ellipsoid clipping to a given step size (dx, dy, dtheta)
|
|
3247
|
+
Applies the ellipsoid (L2) clipping to a given step size (dx, dy, dtheta)
|
|
3210
3248
|
"""
|
|
3211
3249
|
...
|
|
3212
3250
|
|
|
@@ -3429,7 +3467,7 @@ class HumanoidRobot:
|
|
|
3429
3467
|
"""
|
|
3430
3468
|
Computes all minimum distances between current collision pairs.
|
|
3431
3469
|
|
|
3432
|
-
:return: <Element 'para' at
|
|
3470
|
+
:return: <Element 'para' at 0x7fb0d5abc310>
|
|
3433
3471
|
"""
|
|
3434
3472
|
...
|
|
3435
3473
|
|
|
@@ -3461,7 +3499,7 @@ class HumanoidRobot:
|
|
|
3461
3499
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3462
3500
|
|
|
3463
3501
|
:param any frame: the frame for which we want the jacobian
|
|
3464
|
-
:return: <Element 'para' at
|
|
3502
|
+
:return: <Element 'para' at 0x7fb0d5abcdb0>
|
|
3465
3503
|
"""
|
|
3466
3504
|
...
|
|
3467
3505
|
|
|
@@ -3474,7 +3512,7 @@ class HumanoidRobot:
|
|
|
3474
3512
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3475
3513
|
|
|
3476
3514
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3477
|
-
:return: <Element 'para' at
|
|
3515
|
+
:return: <Element 'para' at 0x7fb0d5ab9810>
|
|
3478
3516
|
"""
|
|
3479
3517
|
...
|
|
3480
3518
|
|
|
@@ -3776,7 +3814,7 @@ class HumanoidRobot:
|
|
|
3776
3814
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3777
3815
|
|
|
3778
3816
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3779
|
-
:return: <Element 'para' at
|
|
3817
|
+
:return: <Element 'para' at 0x7fb0d5aa7bd0>
|
|
3780
3818
|
"""
|
|
3781
3819
|
...
|
|
3782
3820
|
|
|
@@ -6164,7 +6202,7 @@ class RobotWrapper:
|
|
|
6164
6202
|
"""
|
|
6165
6203
|
Computes all minimum distances between current collision pairs.
|
|
6166
6204
|
|
|
6167
|
-
:return: <Element 'para' at
|
|
6205
|
+
:return: <Element 'para' at 0x7fb0d5b15d60>
|
|
6168
6206
|
"""
|
|
6169
6207
|
...
|
|
6170
6208
|
|
|
@@ -6177,7 +6215,7 @@ class RobotWrapper:
|
|
|
6177
6215
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6178
6216
|
|
|
6179
6217
|
:param any frame: the frame for which we want the jacobian
|
|
6180
|
-
:return: <Element 'para' at
|
|
6218
|
+
:return: <Element 'para' at 0x7fb0d5b12860>
|
|
6181
6219
|
"""
|
|
6182
6220
|
...
|
|
6183
6221
|
|
|
@@ -6190,7 +6228,7 @@ class RobotWrapper:
|
|
|
6190
6228
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6191
6229
|
|
|
6192
6230
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6193
|
-
:return: <Element 'para' at
|
|
6231
|
+
:return: <Element 'para' at 0x7fb0d5b39270>
|
|
6194
6232
|
"""
|
|
6195
6233
|
...
|
|
6196
6234
|
|
|
@@ -6424,7 +6462,7 @@ class RobotWrapper:
|
|
|
6424
6462
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6425
6463
|
|
|
6426
6464
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6427
|
-
:return: <Element 'para' at
|
|
6465
|
+
:return: <Element 'para' at 0x7fb0d5b15680>
|
|
6428
6466
|
"""
|
|
6429
6467
|
...
|
|
6430
6468
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=gElQEUZAOx6mhQYpAGGidl5YYbeUl6KzhYwM8yn9nbM,2000640
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=QTM5rHQPCamOMzrZZ7fgC2w950QUv61Y3hnupUgeRc8,160953
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=hm7IZkAEgTpfwTAy5VWMGdcoS0JqV71lj_YID5--kbY,8631872
|
|
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.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=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
|
|
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=cjG_gBdpjCkoJt92jQMYNUXZ2EZD_lwoSXZDy-2tHlo,1999920
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=LjnD5bkPj6OJPMyw-BHFP7uizcF23a2b54LONcoiE98,160087
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=ZRb0vedtJvOiV_rxWcsFp6McqRUb5sQBrIF1fxqLP0w,8627256
|
|
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.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=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
|
|
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
|