placo 0.9.2__0-cp39-cp39-macosx_11_0_arm64.whl → 0.9.4__0-cp39-cp39-macosx_11_0_arm64.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.dylib +0 -0
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi +30 -9
- cmeel.prefix/lib/python3.9/site-packages/placo.so +0 -0
- {placo-0.9.2.dist-info → placo-0.9.4.dist-info}/METADATA +3 -3
- placo-0.9.4.dist-info/RECORD +12 -0
- placo-0.9.2.dist-info/RECORD +0 -12
- {placo-0.9.2.dist-info → placo-0.9.4.dist-info}/WHEEL +0 -0
- {placo-0.9.2.dist-info → placo-0.9.4.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.2.dist-info → placo-0.9.4.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -3540,7 +3540,7 @@ class FootstepsPlanner:
|
|
|
3540
3540
|
parameters: HumanoidParameters, # placo::humanoid::HumanoidParameters
|
|
3541
3541
|
) -> any:
|
|
3542
3542
|
"""
|
|
3543
|
-
Initializes the
|
|
3543
|
+
Initializes the planner.
|
|
3544
3544
|
|
|
3545
3545
|
:param HumanoidParameters parameters: Parameters of the walk
|
|
3546
3546
|
"""
|
|
@@ -3578,6 +3578,13 @@ class FootstepsPlanner:
|
|
|
3578
3578
|
"""
|
|
3579
3579
|
...
|
|
3580
3580
|
|
|
3581
|
+
def truncate_supports(
|
|
3582
|
+
arg1: Supports,
|
|
3583
|
+
arg2: int,
|
|
3584
|
+
arg3: bool,
|
|
3585
|
+
) -> Supports:
|
|
3586
|
+
...
|
|
3587
|
+
|
|
3581
3588
|
|
|
3582
3589
|
class FootstepsPlannerNaive:
|
|
3583
3590
|
def __init__(
|
|
@@ -3649,6 +3656,13 @@ class FootstepsPlannerNaive:
|
|
|
3649
3656
|
"""
|
|
3650
3657
|
...
|
|
3651
3658
|
|
|
3659
|
+
def truncate_supports(
|
|
3660
|
+
arg1: Supports,
|
|
3661
|
+
arg2: int,
|
|
3662
|
+
arg3: bool,
|
|
3663
|
+
) -> Supports:
|
|
3664
|
+
...
|
|
3665
|
+
|
|
3652
3666
|
|
|
3653
3667
|
class FootstepsPlannerRepetitive:
|
|
3654
3668
|
def __init__(
|
|
@@ -3726,6 +3740,13 @@ class FootstepsPlannerRepetitive:
|
|
|
3726
3740
|
"""
|
|
3727
3741
|
...
|
|
3728
3742
|
|
|
3743
|
+
def truncate_supports(
|
|
3744
|
+
arg1: Supports,
|
|
3745
|
+
arg2: int,
|
|
3746
|
+
arg3: bool,
|
|
3747
|
+
) -> Supports:
|
|
3748
|
+
...
|
|
3749
|
+
|
|
3729
3750
|
|
|
3730
3751
|
class FrameTask:
|
|
3731
3752
|
T_world_frame: any
|
|
@@ -4251,7 +4272,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4251
4272
|
"""
|
|
4252
4273
|
Computes all minimum distances between current collision pairs.
|
|
4253
4274
|
|
|
4254
|
-
:return: <Element 'para' at
|
|
4275
|
+
:return: <Element 'para' at 0x1034cb4a0>
|
|
4255
4276
|
"""
|
|
4256
4277
|
...
|
|
4257
4278
|
|
|
@@ -4284,7 +4305,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4284
4305
|
|
|
4285
4306
|
:param any frame: the frame for which we want the jacobian
|
|
4286
4307
|
|
|
4287
|
-
:return: <Element 'para' at
|
|
4308
|
+
:return: <Element 'para' at 0x1034cbf90>
|
|
4288
4309
|
"""
|
|
4289
4310
|
...
|
|
4290
4311
|
|
|
@@ -4298,7 +4319,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4298
4319
|
|
|
4299
4320
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4300
4321
|
|
|
4301
|
-
:return: <Element 'para' at
|
|
4322
|
+
:return: <Element 'para' at 0x1034c2a40>
|
|
4302
4323
|
"""
|
|
4303
4324
|
...
|
|
4304
4325
|
|
|
@@ -4610,7 +4631,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4610
4631
|
|
|
4611
4632
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4612
4633
|
|
|
4613
|
-
:return: <Element 'para' at
|
|
4634
|
+
:return: <Element 'para' at 0x1034ced10>
|
|
4614
4635
|
"""
|
|
4615
4636
|
...
|
|
4616
4637
|
|
|
@@ -7544,7 +7565,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7544
7565
|
"""
|
|
7545
7566
|
Computes all minimum distances between current collision pairs.
|
|
7546
7567
|
|
|
7547
|
-
:return: <Element 'para' at
|
|
7568
|
+
:return: <Element 'para' at 0x102ba4720>
|
|
7548
7569
|
"""
|
|
7549
7570
|
...
|
|
7550
7571
|
|
|
@@ -7558,7 +7579,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7558
7579
|
|
|
7559
7580
|
:param any frame: the frame for which we want the jacobian
|
|
7560
7581
|
|
|
7561
|
-
:return: <Element 'para' at
|
|
7582
|
+
:return: <Element 'para' at 0x102baa270>
|
|
7562
7583
|
"""
|
|
7563
7584
|
...
|
|
7564
7585
|
|
|
@@ -7572,7 +7593,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7572
7593
|
|
|
7573
7594
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7574
7595
|
|
|
7575
|
-
:return: <Element 'para' at
|
|
7596
|
+
:return: <Element 'para' at 0x102baccc0>
|
|
7576
7597
|
"""
|
|
7577
7598
|
...
|
|
7578
7599
|
|
|
@@ -7813,7 +7834,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7813
7834
|
|
|
7814
7835
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7815
7836
|
|
|
7816
|
-
:return: <Element 'para' at
|
|
7837
|
+
:return: <Element 'para' at 0x102ba0f90>
|
|
7817
7838
|
"""
|
|
7818
7839
|
...
|
|
7819
7840
|
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: placo
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.4
|
|
4
4
|
Summary: PlaCo: Rhoban Planning and Control
|
|
5
5
|
Requires-Python: >= 3.9
|
|
6
6
|
License-Expression: MIT
|
|
@@ -11,12 +11,12 @@ Home-page: https://placo.readthedocs.io/en/latest/
|
|
|
11
11
|
Project-URL: Repository, https://github.com/rhoban/placo.git
|
|
12
12
|
Requires-Dist: cmeel
|
|
13
13
|
Requires-Dist: eiquadprog >= 1.2.6, < 2
|
|
14
|
-
Requires-Dist: pin
|
|
14
|
+
Requires-Dist: pin == 3.7.0
|
|
15
15
|
Requires-Dist: rhoban-cmeel-jsoncpp
|
|
16
16
|
Requires-Dist: meshcat
|
|
17
17
|
Requires-Dist: ischedule
|
|
18
18
|
Provides-Extra: build
|
|
19
|
-
Requires-Dist: pin[build]
|
|
19
|
+
Requires-Dist: pin[build] == 3.7.0 ; extra == "build"
|
|
20
20
|
Requires-Dist: doxystub >= 0.0.13 ; extra == "build"
|
|
21
21
|
Requires-Dist: cmake<4 ; extra == "build"
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=fdd9_ILfEW3J0-JgmT3YEqusP_RdqSokOUPhkpVCYvU,1504608
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=PIEQ9EaWPl4f3f3PTgzbAJfVKB14QI8dolE5NnAo4AM,198593
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=2pYQuQteqQ8rsOPW086s5eAisb99Uidvg0fMeIqcR2w,6677416
|
|
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.4.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.4.dist-info/METADATA,sha256=vb4ibUMVg2bNQzde1RsUzBy7pgahnehX8BQZc_o_6bo,2628
|
|
10
|
+
placo-0.9.4.dist-info/WHEEL,sha256=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
11
|
+
placo-0.9.4.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.4.dist-info/RECORD,,
|
placo-0.9.2.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=i8lhDQRl7hYEiq_78ql_aBwrsBREkNS-5qfeFE3JqnM,1399360
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=WGvewtFeMZpBDzPXJnzc6KkEiZLCdGFjg12ZNaJQfMs,198286
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=OX1WnPFKiti4_05Zw4JE5bg6RMYvJPn7WmPOWaTKiy4,6647752
|
|
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.2.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.2.dist-info/METADATA,sha256=J3JpPZ0GlSCqi8liiO02WiGJXzJ-q4p5fGUYxPdF8LE,2620
|
|
10
|
-
placo-0.9.2.dist-info/WHEEL,sha256=L4i5x-b2_mmN301N-Fm2blmgWxGr90rVrliWtA2YuAU,109
|
|
11
|
-
placo-0.9.2.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|