placo 0.9.1__0-cp313-cp313-manylinux_2_28_x86_64.whl → 0.9.3__0-cp313-cp313-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.13/site-packages/placo.pyi +36 -18
- cmeel.prefix/lib/python3.13/site-packages/placo.so +0 -0
- {placo-0.9.1.dist-info → placo-0.9.3.dist-info}/METADATA +1 -1
- placo-0.9.3.dist-info/RECORD +12 -0
- placo-0.9.1.dist-info/RECORD +0 -12
- {placo-0.9.1.dist-info → placo-0.9.3.dist-info}/WHEEL +0 -0
- {placo-0.9.1.dist-info → placo-0.9.3.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.1.dist-info → placo-0.9.3.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -3456,7 +3456,7 @@ class FootstepsPlanner:
|
|
|
3456
3456
|
parameters: HumanoidParameters, # placo::humanoid::HumanoidParameters
|
|
3457
3457
|
) -> any:
|
|
3458
3458
|
"""
|
|
3459
|
-
Initializes the
|
|
3459
|
+
Initializes the planner.
|
|
3460
3460
|
|
|
3461
3461
|
:param HumanoidParameters parameters: Parameters of the walk
|
|
3462
3462
|
"""
|
|
@@ -3492,6 +3492,12 @@ class FootstepsPlanner:
|
|
|
3492
3492
|
"""
|
|
3493
3493
|
...
|
|
3494
3494
|
|
|
3495
|
+
def supports_head(
|
|
3496
|
+
arg1: Supports,
|
|
3497
|
+
arg2: int,
|
|
3498
|
+
) -> Supports:
|
|
3499
|
+
...
|
|
3500
|
+
|
|
3495
3501
|
|
|
3496
3502
|
class FootstepsPlannerNaive:
|
|
3497
3503
|
def __init__(
|
|
@@ -3558,6 +3564,12 @@ class FootstepsPlannerNaive:
|
|
|
3558
3564
|
"""
|
|
3559
3565
|
...
|
|
3560
3566
|
|
|
3567
|
+
def supports_head(
|
|
3568
|
+
arg1: Supports,
|
|
3569
|
+
arg2: int,
|
|
3570
|
+
) -> Supports:
|
|
3571
|
+
...
|
|
3572
|
+
|
|
3561
3573
|
|
|
3562
3574
|
class FootstepsPlannerRepetitive:
|
|
3563
3575
|
def __init__(
|
|
@@ -3628,6 +3640,12 @@ class FootstepsPlannerRepetitive:
|
|
|
3628
3640
|
"""
|
|
3629
3641
|
...
|
|
3630
3642
|
|
|
3643
|
+
def supports_head(
|
|
3644
|
+
arg1: Supports,
|
|
3645
|
+
arg2: int,
|
|
3646
|
+
) -> Supports:
|
|
3647
|
+
...
|
|
3648
|
+
|
|
3631
3649
|
|
|
3632
3650
|
class FrameTask:
|
|
3633
3651
|
T_world_frame: any
|
|
@@ -4143,7 +4161,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4143
4161
|
"""
|
|
4144
4162
|
Computes all minimum distances between current collision pairs.
|
|
4145
4163
|
|
|
4146
|
-
:return: <Element 'para' at
|
|
4164
|
+
:return: <Element 'para' at 0x7fc438ca93f0>
|
|
4147
4165
|
"""
|
|
4148
4166
|
...
|
|
4149
4167
|
|
|
@@ -4175,7 +4193,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4175
4193
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
4176
4194
|
|
|
4177
4195
|
:param any frame: the frame for which we want the jacobian
|
|
4178
|
-
:return: <Element 'para' at
|
|
4196
|
+
:return: <Element 'para' at 0x7fc438b94680>
|
|
4179
4197
|
"""
|
|
4180
4198
|
...
|
|
4181
4199
|
|
|
@@ -4188,7 +4206,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4188
4206
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
4189
4207
|
|
|
4190
4208
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4191
|
-
:return: <Element 'para' at
|
|
4209
|
+
:return: <Element 'para' at 0x7fc438b953f0>
|
|
4192
4210
|
"""
|
|
4193
4211
|
...
|
|
4194
4212
|
|
|
@@ -4494,7 +4512,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4494
4512
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
4495
4513
|
|
|
4496
4514
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4497
|
-
:return: <Element 'para' at
|
|
4515
|
+
:return: <Element 'para' at 0x7fc438ca8ae0>
|
|
4498
4516
|
"""
|
|
4499
4517
|
...
|
|
4500
4518
|
|
|
@@ -7356,7 +7374,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7356
7374
|
"""
|
|
7357
7375
|
Computes all minimum distances between current collision pairs.
|
|
7358
7376
|
|
|
7359
|
-
:return: <Element 'para' at
|
|
7377
|
+
:return: <Element 'para' at 0x7fc438be20c0>
|
|
7360
7378
|
"""
|
|
7361
7379
|
...
|
|
7362
7380
|
|
|
@@ -7369,7 +7387,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7369
7387
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
7370
7388
|
|
|
7371
7389
|
:param any frame: the frame for which we want the jacobian
|
|
7372
|
-
:return: <Element 'para' at
|
|
7390
|
+
:return: <Element 'para' at 0x7fc438be22f0>
|
|
7373
7391
|
"""
|
|
7374
7392
|
...
|
|
7375
7393
|
|
|
@@ -7382,7 +7400,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7382
7400
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
7383
7401
|
|
|
7384
7402
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7385
|
-
:return: <Element 'para' at
|
|
7403
|
+
:return: <Element 'para' at 0x7fc438b327f0>
|
|
7386
7404
|
"""
|
|
7387
7405
|
...
|
|
7388
7406
|
|
|
@@ -7620,7 +7638,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7620
7638
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
7621
7639
|
|
|
7622
7640
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7623
|
-
:return: <Element 'para' at
|
|
7641
|
+
:return: <Element 'para' at 0x7fc438be0900>
|
|
7624
7642
|
"""
|
|
7625
7643
|
...
|
|
7626
7644
|
|
|
@@ -8717,15 +8735,6 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8717
8735
|
) -> numpy.ndarray:
|
|
8718
8736
|
...
|
|
8719
8737
|
|
|
8720
|
-
kept_ts: any
|
|
8721
|
-
"""
|
|
8722
|
-
|
|
8723
|
-
None( (placo.WPGTrajectory)arg1) -> int :
|
|
8724
|
-
|
|
8725
|
-
C++ signature :
|
|
8726
|
-
int {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8727
|
-
"""
|
|
8728
|
-
|
|
8729
8738
|
parts: any
|
|
8730
8739
|
"""
|
|
8731
8740
|
|
|
@@ -8740,6 +8749,15 @@ None( (placo.WPGTrajectory)arg1) -> object :
|
|
|
8740
8749
|
) -> None:
|
|
8741
8750
|
...
|
|
8742
8751
|
|
|
8752
|
+
replan_success: any
|
|
8753
|
+
"""
|
|
8754
|
+
|
|
8755
|
+
None( (placo.WPGTrajectory)arg1) -> bool :
|
|
8756
|
+
|
|
8757
|
+
C++ signature :
|
|
8758
|
+
bool {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8759
|
+
"""
|
|
8760
|
+
|
|
8743
8761
|
def support_is_both(
|
|
8744
8762
|
self,
|
|
8745
8763
|
t: float, # double
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=LPGd5yzTWpgnMFL0gKYfcWOSCoMppE8geAvRC24dd-c,2106144
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=VIRatiJOggvbKEyRAXg-_Sq0UiulnEq1cp9vYO6mSr0,196694
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=43zHVrBOeCA9Ie3rW4s-DKrGDWgWzf5v7wWHYHL-Ka4,8431264
|
|
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.3.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.3.dist-info/METADATA,sha256=DBHbwi-DvN5P7To0NuwzxiSbQaXooNpDsGhILdWciog,2620
|
|
10
|
+
placo-0.9.3.dist-info/WHEEL,sha256=0HdmGrCnJOL3jd3aEKVYybYMjjAJ-FS-_IUmzdFUhHE,115
|
|
11
|
+
placo-0.9.3.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.3.dist-info/RECORD,,
|
placo-0.9.1.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=r9qVp9tbjozA_NkIwfF1YA5fUKpkYrZHh3qtzkLK-oA,1985608
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=Xbt75zGa5UTdU8AMBlzr98l3ahJ54wxukNpMDLJy99g,196438
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=qnIp4cCruO8h58___0eheA89GWzgbhBqhR4j8sgeqog,8408832
|
|
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.1.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.1.dist-info/METADATA,sha256=Kd24ONb11iqnbdUPph0Tw0DAdzgjpPGLeBh3Pw8sW5M,2620
|
|
10
|
-
placo-0.9.1.dist-info/WHEEL,sha256=0HdmGrCnJOL3jd3aEKVYybYMjjAJ-FS-_IUmzdFUhHE,115
|
|
11
|
-
placo-0.9.1.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|