placo 0.9.9__0-cp313-cp313-manylinux_2_28_aarch64.whl → 0.9.11__0-cp313-cp313-manylinux_2_28_aarch64.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 +52 -25
- cmeel.prefix/lib/python3.13/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
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -1066,6 +1066,7 @@ class DummyWalk:
|
|
|
1066
1066
|
def __init__(
|
|
1067
1067
|
self,
|
|
1068
1068
|
robot: RobotWrapper, # placo::model::RobotWrapper
|
|
1069
|
+
parameters: HumanoidParameters, # placo::humanoid::HumanoidParameters
|
|
1069
1070
|
) -> any:
|
|
1070
1071
|
...
|
|
1071
1072
|
|
|
@@ -1084,14 +1085,9 @@ class DummyWalk:
|
|
|
1084
1085
|
Last requested step d-.
|
|
1085
1086
|
"""
|
|
1086
1087
|
|
|
1087
|
-
|
|
1088
|
-
"""
|
|
1089
|
-
Feet spacing [m].
|
|
1090
|
-
"""
|
|
1091
|
-
|
|
1092
|
-
lift_height: float # double
|
|
1088
|
+
lift_spline: CubicSpline # placo::tools::CubicSpline
|
|
1093
1089
|
"""
|
|
1094
|
-
|
|
1090
|
+
Cubic splines for the lift trajectory.
|
|
1095
1091
|
"""
|
|
1096
1092
|
|
|
1097
1093
|
def next_step(
|
|
@@ -1109,6 +1105,11 @@ class DummyWalk:
|
|
|
1109
1105
|
"""
|
|
1110
1106
|
...
|
|
1111
1107
|
|
|
1108
|
+
parameters: HumanoidParameters # placo::humanoid::HumanoidParameters
|
|
1109
|
+
"""
|
|
1110
|
+
Humanoid parameters.
|
|
1111
|
+
"""
|
|
1112
|
+
|
|
1112
1113
|
def reset(
|
|
1113
1114
|
self,
|
|
1114
1115
|
support_left: bool = False, # bool
|
|
@@ -1135,16 +1136,6 @@ class DummyWalk:
|
|
|
1135
1136
|
Whether the current support is left or right.
|
|
1136
1137
|
"""
|
|
1137
1138
|
|
|
1138
|
-
trunk_height: float # double
|
|
1139
|
-
"""
|
|
1140
|
-
Trunk height [m].
|
|
1141
|
-
"""
|
|
1142
|
-
|
|
1143
|
-
trunk_pitch: float # double
|
|
1144
|
-
"""
|
|
1145
|
-
Trunk pitch angle [rad].
|
|
1146
|
-
"""
|
|
1147
|
-
|
|
1148
1139
|
def update(
|
|
1149
1140
|
self,
|
|
1150
1141
|
t: float, # double
|
|
@@ -2819,6 +2810,18 @@ class FootstepsPlanner:
|
|
|
2819
2810
|
"""
|
|
2820
2811
|
...
|
|
2821
2812
|
|
|
2813
|
+
def clipped_opposite_footstep(
|
|
2814
|
+
self,
|
|
2815
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2816
|
+
d_x: float = 0., # double
|
|
2817
|
+
d_y: float = 0., # double
|
|
2818
|
+
d_theta: float = 0., # double
|
|
2819
|
+
) -> Footstep:
|
|
2820
|
+
"""
|
|
2821
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2822
|
+
"""
|
|
2823
|
+
...
|
|
2824
|
+
|
|
2822
2825
|
@staticmethod
|
|
2823
2826
|
def make_supports(
|
|
2824
2827
|
self,
|
|
@@ -2864,6 +2867,18 @@ class FootstepsPlannerNaive:
|
|
|
2864
2867
|
) -> any:
|
|
2865
2868
|
...
|
|
2866
2869
|
|
|
2870
|
+
def clipped_opposite_footstep(
|
|
2871
|
+
self,
|
|
2872
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2873
|
+
d_x: float = 0., # double
|
|
2874
|
+
d_y: float = 0., # double
|
|
2875
|
+
d_theta: float = 0., # double
|
|
2876
|
+
) -> Footstep:
|
|
2877
|
+
"""
|
|
2878
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2879
|
+
"""
|
|
2880
|
+
...
|
|
2881
|
+
|
|
2867
2882
|
def configure(
|
|
2868
2883
|
self,
|
|
2869
2884
|
T_world_left_target: numpy.ndarray, # Eigen::Affine3d
|
|
@@ -2937,6 +2952,18 @@ class FootstepsPlannerRepetitive:
|
|
|
2937
2952
|
) -> any:
|
|
2938
2953
|
...
|
|
2939
2954
|
|
|
2955
|
+
def clipped_opposite_footstep(
|
|
2956
|
+
self,
|
|
2957
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2958
|
+
d_x: float = 0., # double
|
|
2959
|
+
d_y: float = 0., # double
|
|
2960
|
+
d_theta: float = 0., # double
|
|
2961
|
+
) -> Footstep:
|
|
2962
|
+
"""
|
|
2963
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2964
|
+
"""
|
|
2965
|
+
...
|
|
2966
|
+
|
|
2940
2967
|
def configure(
|
|
2941
2968
|
self,
|
|
2942
2969
|
x: float, # double
|
|
@@ -3400,7 +3427,7 @@ class HumanoidRobot:
|
|
|
3400
3427
|
"""
|
|
3401
3428
|
Computes all minimum distances between current collision pairs.
|
|
3402
3429
|
|
|
3403
|
-
:return: <Element 'para' at
|
|
3430
|
+
:return: <Element 'para' at 0xff45b66ed800>
|
|
3404
3431
|
"""
|
|
3405
3432
|
...
|
|
3406
3433
|
|
|
@@ -3432,7 +3459,7 @@ class HumanoidRobot:
|
|
|
3432
3459
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3433
3460
|
|
|
3434
3461
|
:param any frame: the frame for which we want the jacobian
|
|
3435
|
-
:return: <Element 'para' at
|
|
3462
|
+
:return: <Element 'para' at 0xff45b66eff60>
|
|
3436
3463
|
"""
|
|
3437
3464
|
...
|
|
3438
3465
|
|
|
@@ -3445,7 +3472,7 @@ class HumanoidRobot:
|
|
|
3445
3472
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3446
3473
|
|
|
3447
3474
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3448
|
-
:return: <Element 'para' at
|
|
3475
|
+
:return: <Element 'para' at 0xff45b66f9990>
|
|
3449
3476
|
"""
|
|
3450
3477
|
...
|
|
3451
3478
|
|
|
@@ -3747,7 +3774,7 @@ class HumanoidRobot:
|
|
|
3747
3774
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3748
3775
|
|
|
3749
3776
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3750
|
-
:return: <Element 'para' at
|
|
3777
|
+
:return: <Element 'para' at 0xff45b66ede90>
|
|
3751
3778
|
"""
|
|
3752
3779
|
...
|
|
3753
3780
|
|
|
@@ -6143,7 +6170,7 @@ class RobotWrapper:
|
|
|
6143
6170
|
"""
|
|
6144
6171
|
Computes all minimum distances between current collision pairs.
|
|
6145
6172
|
|
|
6146
|
-
:return: <Element 'para' at
|
|
6173
|
+
:return: <Element 'para' at 0xff45b66ff970>
|
|
6147
6174
|
"""
|
|
6148
6175
|
...
|
|
6149
6176
|
|
|
@@ -6156,7 +6183,7 @@ class RobotWrapper:
|
|
|
6156
6183
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6157
6184
|
|
|
6158
6185
|
:param any frame: the frame for which we want the jacobian
|
|
6159
|
-
:return: <Element 'para' at
|
|
6186
|
+
:return: <Element 'para' at 0xff45b66fec00>
|
|
6160
6187
|
"""
|
|
6161
6188
|
...
|
|
6162
6189
|
|
|
@@ -6169,7 +6196,7 @@ class RobotWrapper:
|
|
|
6169
6196
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6170
6197
|
|
|
6171
6198
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6172
|
-
:return: <Element 'para' at
|
|
6199
|
+
:return: <Element 'para' at 0xff45b66fc4f0>
|
|
6173
6200
|
"""
|
|
6174
6201
|
...
|
|
6175
6202
|
|
|
@@ -6403,7 +6430,7 @@ class RobotWrapper:
|
|
|
6403
6430
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6404
6431
|
|
|
6405
6432
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6406
|
-
:return: <Element 'para' at
|
|
6433
|
+
:return: <Element 'para' at 0xff45b66ffe70>
|
|
6407
6434
|
"""
|
|
6408
6435
|
...
|
|
6409
6436
|
|
|
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.so,sha256=hB9yfCJQMigAHceiJobQsQ_HSvLRZCfK0VJnvQkM6oE,1711128
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=iDvyfxmZPSW2i4kiNIpv1rB0GQF9rGKC9kCtukDILgw,159993
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=01nOwEmTT5H_XYX3s_v9yyocHieVORKQd0pITVY5mMw,8887848
|
|
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.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=DGQqNGUKrJGr1PrENgiumO2xTXy5bjCsF7b9TI0kpzM,116
|
|
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.so,sha256=Q0dzzqqOyUt7tcsv3DeElFhXd-N71qNu36Rou8qYkSI,1809200
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=jvsJmublsB1sH-bf_QurRgpyexNeQJiReT_yRbr-FLs,159030
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=HZBxWRcmFjxPYsqzyCsf-12CgeBMYwKgnRwLc1Phauk,8871008
|
|
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.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=DGQqNGUKrJGr1PrENgiumO2xTXy5bjCsF7b9TI0kpzM,116
|
|
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
|