placo 0.9.9__0-cp39-cp39-macosx_10_9_x86_64.whl → 0.9.11__0-cp39-cp39-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.9/site-packages/placo.pyi +52 -25
- cmeel.prefix/lib/python3.9/site-packages/placo.so +0 -0
- {placo-0.9.9.dist-info → placo-0.9.11.dist-info}/METADATA +4 -4
- placo-0.9.11.dist-info/RECORD +12 -0
- placo-0.9.9.dist-info/RECORD +0 -12
- {placo-0.9.9.dist-info → placo-0.9.11.dist-info}/WHEEL +0 -0
- {placo-0.9.9.dist-info → placo-0.9.11.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.9.dist-info → placo-0.9.11.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -1101,6 +1101,7 @@ class DummyWalk:
|
|
|
1101
1101
|
def __init__(
|
|
1102
1102
|
self,
|
|
1103
1103
|
robot: RobotWrapper, # placo::model::RobotWrapper
|
|
1104
|
+
parameters: HumanoidParameters, # placo::humanoid::HumanoidParameters
|
|
1104
1105
|
) -> any:
|
|
1105
1106
|
...
|
|
1106
1107
|
|
|
@@ -1119,14 +1120,9 @@ class DummyWalk:
|
|
|
1119
1120
|
Last requested step d-.
|
|
1120
1121
|
"""
|
|
1121
1122
|
|
|
1122
|
-
|
|
1123
|
-
"""
|
|
1124
|
-
Feet spacing [m].
|
|
1125
|
-
"""
|
|
1126
|
-
|
|
1127
|
-
lift_height: float # double
|
|
1123
|
+
lift_spline: CubicSpline # placo::tools::CubicSpline
|
|
1128
1124
|
"""
|
|
1129
|
-
|
|
1125
|
+
Cubic splines for the lift trajectory.
|
|
1130
1126
|
"""
|
|
1131
1127
|
|
|
1132
1128
|
def next_step(
|
|
@@ -1146,6 +1142,11 @@ class DummyWalk:
|
|
|
1146
1142
|
"""
|
|
1147
1143
|
...
|
|
1148
1144
|
|
|
1145
|
+
parameters: HumanoidParameters # placo::humanoid::HumanoidParameters
|
|
1146
|
+
"""
|
|
1147
|
+
Humanoid parameters.
|
|
1148
|
+
"""
|
|
1149
|
+
|
|
1149
1150
|
def reset(
|
|
1150
1151
|
self,
|
|
1151
1152
|
support_left: bool = False, # bool
|
|
@@ -1172,16 +1173,6 @@ class DummyWalk:
|
|
|
1172
1173
|
Whether the current support is left or right.
|
|
1173
1174
|
"""
|
|
1174
1175
|
|
|
1175
|
-
trunk_height: float # double
|
|
1176
|
-
"""
|
|
1177
|
-
Trunk height [m].
|
|
1178
|
-
"""
|
|
1179
|
-
|
|
1180
|
-
trunk_pitch: float # double
|
|
1181
|
-
"""
|
|
1182
|
-
Trunk pitch angle [rad].
|
|
1183
|
-
"""
|
|
1184
|
-
|
|
1185
1176
|
def update(
|
|
1186
1177
|
self,
|
|
1187
1178
|
t: float, # double
|
|
@@ -2907,6 +2898,18 @@ class FootstepsPlanner:
|
|
|
2907
2898
|
"""
|
|
2908
2899
|
...
|
|
2909
2900
|
|
|
2901
|
+
def clipped_opposite_footstep(
|
|
2902
|
+
self,
|
|
2903
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2904
|
+
d_x: float = 0., # double
|
|
2905
|
+
d_y: float = 0., # double
|
|
2906
|
+
d_theta: float = 0., # double
|
|
2907
|
+
) -> Footstep:
|
|
2908
|
+
"""
|
|
2909
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2910
|
+
"""
|
|
2911
|
+
...
|
|
2912
|
+
|
|
2910
2913
|
@staticmethod
|
|
2911
2914
|
def make_supports(
|
|
2912
2915
|
self,
|
|
@@ -2954,6 +2957,18 @@ class FootstepsPlannerNaive:
|
|
|
2954
2957
|
) -> any:
|
|
2955
2958
|
...
|
|
2956
2959
|
|
|
2960
|
+
def clipped_opposite_footstep(
|
|
2961
|
+
self,
|
|
2962
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2963
|
+
d_x: float = 0., # double
|
|
2964
|
+
d_y: float = 0., # double
|
|
2965
|
+
d_theta: float = 0., # double
|
|
2966
|
+
) -> Footstep:
|
|
2967
|
+
"""
|
|
2968
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2969
|
+
"""
|
|
2970
|
+
...
|
|
2971
|
+
|
|
2957
2972
|
def configure(
|
|
2958
2973
|
self,
|
|
2959
2974
|
T_world_left_target: numpy.ndarray, # Eigen::Affine3d
|
|
@@ -3032,6 +3047,18 @@ class FootstepsPlannerRepetitive:
|
|
|
3032
3047
|
) -> any:
|
|
3033
3048
|
...
|
|
3034
3049
|
|
|
3050
|
+
def clipped_opposite_footstep(
|
|
3051
|
+
self,
|
|
3052
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
3053
|
+
d_x: float = 0., # double
|
|
3054
|
+
d_y: float = 0., # double
|
|
3055
|
+
d_theta: float = 0., # double
|
|
3056
|
+
) -> Footstep:
|
|
3057
|
+
"""
|
|
3058
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
3059
|
+
"""
|
|
3060
|
+
...
|
|
3061
|
+
|
|
3035
3062
|
def configure(
|
|
3036
3063
|
self,
|
|
3037
3064
|
x: float, # double
|
|
@@ -3512,7 +3539,7 @@ class HumanoidRobot:
|
|
|
3512
3539
|
"""
|
|
3513
3540
|
Computes all minimum distances between current collision pairs.
|
|
3514
3541
|
|
|
3515
|
-
:return: <Element 'para' at
|
|
3542
|
+
:return: <Element 'para' at 0x10d391f40>
|
|
3516
3543
|
"""
|
|
3517
3544
|
...
|
|
3518
3545
|
|
|
@@ -3545,7 +3572,7 @@ class HumanoidRobot:
|
|
|
3545
3572
|
|
|
3546
3573
|
:param any frame: the frame for which we want the jacobian
|
|
3547
3574
|
|
|
3548
|
-
:return: <Element 'para' at
|
|
3575
|
+
:return: <Element 'para' at 0x10d391450>
|
|
3549
3576
|
"""
|
|
3550
3577
|
...
|
|
3551
3578
|
|
|
@@ -3559,7 +3586,7 @@ class HumanoidRobot:
|
|
|
3559
3586
|
|
|
3560
3587
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3561
3588
|
|
|
3562
|
-
:return: <Element 'para' at
|
|
3589
|
+
:return: <Element 'para' at 0x10d3996d0>
|
|
3563
3590
|
"""
|
|
3564
3591
|
...
|
|
3565
3592
|
|
|
@@ -3867,7 +3894,7 @@ class HumanoidRobot:
|
|
|
3867
3894
|
|
|
3868
3895
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3869
3896
|
|
|
3870
|
-
:return: <Element 'para' at
|
|
3897
|
+
:return: <Element 'para' at 0x10d3ad9a0>
|
|
3871
3898
|
"""
|
|
3872
3899
|
...
|
|
3873
3900
|
|
|
@@ -6335,7 +6362,7 @@ class RobotWrapper:
|
|
|
6335
6362
|
"""
|
|
6336
6363
|
Computes all minimum distances between current collision pairs.
|
|
6337
6364
|
|
|
6338
|
-
:return: <Element 'para' at
|
|
6365
|
+
:return: <Element 'para' at 0x10c437db0>
|
|
6339
6366
|
"""
|
|
6340
6367
|
...
|
|
6341
6368
|
|
|
@@ -6349,7 +6376,7 @@ class RobotWrapper:
|
|
|
6349
6376
|
|
|
6350
6377
|
:param any frame: the frame for which we want the jacobian
|
|
6351
6378
|
|
|
6352
|
-
:return: <Element 'para' at
|
|
6379
|
+
:return: <Element 'para' at 0x10c43c900>
|
|
6353
6380
|
"""
|
|
6354
6381
|
...
|
|
6355
6382
|
|
|
@@ -6363,7 +6390,7 @@ class RobotWrapper:
|
|
|
6363
6390
|
|
|
6364
6391
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6365
6392
|
|
|
6366
|
-
:return: <Element 'para' at
|
|
6393
|
+
:return: <Element 'para' at 0x10c4433b0>
|
|
6367
6394
|
"""
|
|
6368
6395
|
...
|
|
6369
6396
|
|
|
@@ -6600,7 +6627,7 @@ class RobotWrapper:
|
|
|
6600
6627
|
|
|
6601
6628
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6602
6629
|
|
|
6603
|
-
:return: <Element 'para' at
|
|
6630
|
+
:return: <Element 'para' at 0x10c437680>
|
|
6604
6631
|
"""
|
|
6605
6632
|
...
|
|
6606
6633
|
|
|
Binary file
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: placo
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.11
|
|
4
4
|
Summary: PlaCo: Rhoban Planning and Control
|
|
5
|
-
Requires-Python: >= 3.
|
|
5
|
+
Requires-Python: >= 3.8
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Author-email: Rhoban team <team@rhoban.com>
|
|
@@ -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.4.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.4.0 ; extra == "build"
|
|
20
20
|
Requires-Dist: doxystub >= 0.1.7 ; 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=1h2beo_ZdnA7FDMgl9MfoZiUc-RTrYpmx-3tDc2HzOc,1706712
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=aCCHaix0xGQe11ixgf_mAspDE3ktk470YdDCKVMOHb0,161662
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=E1ekUOiyOdlmkNyJMuzZ022NrEWrd2dRd8h8YrORpJs,7216480
|
|
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.11.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.11.dist-info/METADATA,sha256=0K25RC_P7oh7mthpw4jmB7k8tANO-4CxmcPcaMiqyNg,2623
|
|
10
|
+
placo-0.9.11.dist-info/WHEEL,sha256=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
|
|
11
|
+
placo-0.9.11.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.11.dist-info/RECORD,,
|
placo-0.9.9.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=DCKWAjJtSNNRWMeJJ_8NiwLxBnjmu2VN_VomqcbLaqE,1860184
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=ie5KfntJH4DebrdlgMBpzBByfdL1jTlqdgVP06Jh_OA,160699
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=zWj8RYLC4xGgEXeVqLHWwmC39umiMfKkSn5Ay0a6TRA,7194320
|
|
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.9.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.9.dist-info/METADATA,sha256=EYweFOycHmb4tbNUve3lvAkGy54_F2A76sDUgh45yEI,2627
|
|
10
|
-
placo-0.9.9.dist-info/WHEEL,sha256=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
|
|
11
|
-
placo-0.9.9.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|