placo 0.9.2__0-cp311-cp311-macosx_10_9_x86_64.whl → 0.9.4__0-cp311-cp311-macosx_10_9_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.dylib +0 -0
- cmeel.prefix/lib/python3.11/site-packages/placo.pyi +30 -9
- cmeel.prefix/lib/python3.11/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
|
|
@@ -3544,7 +3544,7 @@ class FootstepsPlanner:
|
|
|
3544
3544
|
parameters: HumanoidParameters, # placo::humanoid::HumanoidParameters
|
|
3545
3545
|
) -> any:
|
|
3546
3546
|
"""
|
|
3547
|
-
Initializes the
|
|
3547
|
+
Initializes the planner.
|
|
3548
3548
|
|
|
3549
3549
|
:param HumanoidParameters parameters: Parameters of the walk
|
|
3550
3550
|
"""
|
|
@@ -3582,6 +3582,13 @@ class FootstepsPlanner:
|
|
|
3582
3582
|
"""
|
|
3583
3583
|
...
|
|
3584
3584
|
|
|
3585
|
+
def truncate_supports(
|
|
3586
|
+
arg1: Supports,
|
|
3587
|
+
arg2: int,
|
|
3588
|
+
arg3: bool,
|
|
3589
|
+
) -> Supports:
|
|
3590
|
+
...
|
|
3591
|
+
|
|
3585
3592
|
|
|
3586
3593
|
class FootstepsPlannerNaive:
|
|
3587
3594
|
def __init__(
|
|
@@ -3653,6 +3660,13 @@ class FootstepsPlannerNaive:
|
|
|
3653
3660
|
"""
|
|
3654
3661
|
...
|
|
3655
3662
|
|
|
3663
|
+
def truncate_supports(
|
|
3664
|
+
arg1: Supports,
|
|
3665
|
+
arg2: int,
|
|
3666
|
+
arg3: bool,
|
|
3667
|
+
) -> Supports:
|
|
3668
|
+
...
|
|
3669
|
+
|
|
3656
3670
|
|
|
3657
3671
|
class FootstepsPlannerRepetitive:
|
|
3658
3672
|
def __init__(
|
|
@@ -3730,6 +3744,13 @@ class FootstepsPlannerRepetitive:
|
|
|
3730
3744
|
"""
|
|
3731
3745
|
...
|
|
3732
3746
|
|
|
3747
|
+
def truncate_supports(
|
|
3748
|
+
arg1: Supports,
|
|
3749
|
+
arg2: int,
|
|
3750
|
+
arg3: bool,
|
|
3751
|
+
) -> Supports:
|
|
3752
|
+
...
|
|
3753
|
+
|
|
3733
3754
|
|
|
3734
3755
|
class FrameTask:
|
|
3735
3756
|
T_world_frame: any
|
|
@@ -4255,7 +4276,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4255
4276
|
"""
|
|
4256
4277
|
Computes all minimum distances between current collision pairs.
|
|
4257
4278
|
|
|
4258
|
-
:return: <Element 'para' at
|
|
4279
|
+
:return: <Element 'para' at 0x103c9e610>
|
|
4259
4280
|
"""
|
|
4260
4281
|
...
|
|
4261
4282
|
|
|
@@ -4288,7 +4309,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4288
4309
|
|
|
4289
4310
|
:param any frame: the frame for which we want the jacobian
|
|
4290
4311
|
|
|
4291
|
-
:return: <Element 'para' at
|
|
4312
|
+
:return: <Element 'para' at 0x103c6af20>
|
|
4292
4313
|
"""
|
|
4293
4314
|
...
|
|
4294
4315
|
|
|
@@ -4302,7 +4323,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4302
4323
|
|
|
4303
4324
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4304
4325
|
|
|
4305
|
-
:return: <Element 'para' at
|
|
4326
|
+
:return: <Element 'para' at 0x103c6a700>
|
|
4306
4327
|
"""
|
|
4307
4328
|
...
|
|
4308
4329
|
|
|
@@ -4614,7 +4635,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4614
4635
|
|
|
4615
4636
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4616
4637
|
|
|
4617
|
-
:return: <Element 'para' at
|
|
4638
|
+
:return: <Element 'para' at 0x103c9fd30>
|
|
4618
4639
|
"""
|
|
4619
4640
|
...
|
|
4620
4641
|
|
|
@@ -7552,7 +7573,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7552
7573
|
"""
|
|
7553
7574
|
Computes all minimum distances between current collision pairs.
|
|
7554
7575
|
|
|
7555
|
-
:return: <Element 'para' at
|
|
7576
|
+
:return: <Element 'para' at 0x103c42430>
|
|
7556
7577
|
"""
|
|
7557
7578
|
...
|
|
7558
7579
|
|
|
@@ -7566,7 +7587,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7566
7587
|
|
|
7567
7588
|
:param any frame: the frame for which we want the jacobian
|
|
7568
7589
|
|
|
7569
|
-
:return: <Element 'para' at
|
|
7590
|
+
:return: <Element 'para' at 0x103c42f20>
|
|
7570
7591
|
"""
|
|
7571
7592
|
...
|
|
7572
7593
|
|
|
@@ -7580,7 +7601,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7580
7601
|
|
|
7581
7602
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7582
7603
|
|
|
7583
|
-
:return: <Element 'para' at
|
|
7604
|
+
:return: <Element 'para' at 0x103c50950>
|
|
7584
7605
|
"""
|
|
7585
7606
|
...
|
|
7586
7607
|
|
|
@@ -7821,7 +7842,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7821
7842
|
|
|
7822
7843
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7823
7844
|
|
|
7824
|
-
:return: <Element 'para' at
|
|
7845
|
+
:return: <Element 'para' at 0x103c41d00>
|
|
7825
7846
|
"""
|
|
7826
7847
|
...
|
|
7827
7848
|
|
|
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=XzXRbUvxBe_HnwGTIMr5kNra3phOCNwqcRE_3s0-TqQ,1859144
|
|
2
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=-KDZUvM0V7g0dbB-eAgTXxj0uYVqky3Q4_Q9HLf4x9g,198669
|
|
3
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=F4KYxDWO27gtjaFpDs5A3SBAQ602bYLIQXxcgR9plJU,7096704
|
|
4
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.11/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=w9iRXwrZ34xH7YkTKFQXDZnfo6T60yVj60vK0XG2fFo,112
|
|
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=bT_GhnE4OxzvRxMbJBnW86nT0YfxVqUpvEXQAFLrw6w,1689184
|
|
2
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=rQluhYBkXItSuBs0mZoSkex9CUymZSgCGh5UQ1Lh7CQ,198362
|
|
3
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=kJhKAZ3Tn0_chbP0zXm82D7NAZIdV1UUH48tckwm04o,7066064
|
|
4
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.11/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.11/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=w9iRXwrZ34xH7YkTKFQXDZnfo6T60yVj60vK0XG2fFo,112
|
|
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
|