placo 0.9.9__0-cp311-cp311-manylinux_2_28_aarch64.whl → 0.9.10__0-cp311-cp311-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.11/site-packages/placo.pyi +52 -25
- cmeel.prefix/lib/python3.11/site-packages/placo.so +0 -0
- {placo-0.9.9.dist-info → placo-0.9.10.dist-info}/METADATA +1 -1
- placo-0.9.10.dist-info/RECORD +12 -0
- placo-0.9.9.dist-info/RECORD +0 -12
- {placo-0.9.9.dist-info → placo-0.9.10.dist-info}/WHEEL +0 -0
- {placo-0.9.9.dist-info → placo-0.9.10.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.9.dist-info → placo-0.9.10.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
|
|
@@ -2815,6 +2806,18 @@ class FootstepsPlanner:
|
|
|
2815
2806
|
"""
|
|
2816
2807
|
...
|
|
2817
2808
|
|
|
2809
|
+
def clipped_opposite_footstep(
|
|
2810
|
+
self,
|
|
2811
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2812
|
+
d_x: float = 0., # double
|
|
2813
|
+
d_y: float = 0., # double
|
|
2814
|
+
d_theta: float = 0., # double
|
|
2815
|
+
) -> Footstep:
|
|
2816
|
+
"""
|
|
2817
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2818
|
+
"""
|
|
2819
|
+
...
|
|
2820
|
+
|
|
2818
2821
|
@staticmethod
|
|
2819
2822
|
def make_supports(
|
|
2820
2823
|
self,
|
|
@@ -2860,6 +2863,18 @@ class FootstepsPlannerNaive:
|
|
|
2860
2863
|
) -> any:
|
|
2861
2864
|
...
|
|
2862
2865
|
|
|
2866
|
+
def clipped_opposite_footstep(
|
|
2867
|
+
self,
|
|
2868
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2869
|
+
d_x: float = 0., # double
|
|
2870
|
+
d_y: float = 0., # double
|
|
2871
|
+
d_theta: float = 0., # double
|
|
2872
|
+
) -> Footstep:
|
|
2873
|
+
"""
|
|
2874
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2875
|
+
"""
|
|
2876
|
+
...
|
|
2877
|
+
|
|
2863
2878
|
def configure(
|
|
2864
2879
|
self,
|
|
2865
2880
|
T_world_left_target: numpy.ndarray, # Eigen::Affine3d
|
|
@@ -2933,6 +2948,18 @@ class FootstepsPlannerRepetitive:
|
|
|
2933
2948
|
) -> any:
|
|
2934
2949
|
...
|
|
2935
2950
|
|
|
2951
|
+
def clipped_opposite_footstep(
|
|
2952
|
+
self,
|
|
2953
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2954
|
+
d_x: float = 0., # double
|
|
2955
|
+
d_y: float = 0., # double
|
|
2956
|
+
d_theta: float = 0., # double
|
|
2957
|
+
) -> Footstep:
|
|
2958
|
+
"""
|
|
2959
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2960
|
+
"""
|
|
2961
|
+
...
|
|
2962
|
+
|
|
2936
2963
|
def configure(
|
|
2937
2964
|
self,
|
|
2938
2965
|
x: float, # double
|
|
@@ -3396,7 +3423,7 @@ class HumanoidRobot:
|
|
|
3396
3423
|
"""
|
|
3397
3424
|
Computes all minimum distances between current collision pairs.
|
|
3398
3425
|
|
|
3399
|
-
:return: <Element 'para' at
|
|
3426
|
+
:return: <Element 'para' at 0xff11a4b338d0>
|
|
3400
3427
|
"""
|
|
3401
3428
|
...
|
|
3402
3429
|
|
|
@@ -3428,7 +3455,7 @@ class HumanoidRobot:
|
|
|
3428
3455
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3429
3456
|
|
|
3430
3457
|
:param any frame: the frame for which we want the jacobian
|
|
3431
|
-
:return: <Element 'para' at
|
|
3458
|
+
:return: <Element 'para' at 0xff11a4b32e30>
|
|
3432
3459
|
"""
|
|
3433
3460
|
...
|
|
3434
3461
|
|
|
@@ -3441,7 +3468,7 @@ class HumanoidRobot:
|
|
|
3441
3468
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3442
3469
|
|
|
3443
3470
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3444
|
-
:return: <Element 'para' at
|
|
3471
|
+
:return: <Element 'para' at 0xff11a4b30ef0>
|
|
3445
3472
|
"""
|
|
3446
3473
|
...
|
|
3447
3474
|
|
|
@@ -3743,7 +3770,7 @@ class HumanoidRobot:
|
|
|
3743
3770
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3744
3771
|
|
|
3745
3772
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3746
|
-
:return: <Element 'para' at
|
|
3773
|
+
:return: <Element 'para' at 0xff11a4b33f10>
|
|
3747
3774
|
"""
|
|
3748
3775
|
...
|
|
3749
3776
|
|
|
@@ -6135,7 +6162,7 @@ class RobotWrapper:
|
|
|
6135
6162
|
"""
|
|
6136
6163
|
Computes all minimum distances between current collision pairs.
|
|
6137
6164
|
|
|
6138
|
-
:return: <Element 'para' at
|
|
6165
|
+
:return: <Element 'para' at 0xff11a4b14680>
|
|
6139
6166
|
"""
|
|
6140
6167
|
...
|
|
6141
6168
|
|
|
@@ -6148,7 +6175,7 @@ class RobotWrapper:
|
|
|
6148
6175
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6149
6176
|
|
|
6150
6177
|
:param any frame: the frame for which we want the jacobian
|
|
6151
|
-
:return: <Element 'para' at
|
|
6178
|
+
:return: <Element 'para' at 0xff11a4b15710>
|
|
6152
6179
|
"""
|
|
6153
6180
|
...
|
|
6154
6181
|
|
|
@@ -6161,7 +6188,7 @@ class RobotWrapper:
|
|
|
6161
6188
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6162
6189
|
|
|
6163
6190
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6164
|
-
:return: <Element 'para' at
|
|
6191
|
+
:return: <Element 'para' at 0xff11a4b17600>
|
|
6165
6192
|
"""
|
|
6166
6193
|
...
|
|
6167
6194
|
|
|
@@ -6395,7 +6422,7 @@ class RobotWrapper:
|
|
|
6395
6422
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6396
6423
|
|
|
6397
6424
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6398
|
-
:return: <Element 'para' at
|
|
6425
|
+
:return: <Element 'para' at 0xff11a4b33ba0>
|
|
6399
6426
|
"""
|
|
6400
6427
|
...
|
|
6401
6428
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=lNEX-pamukO_OVf2WA8aDX4sN2IbFxdwpov2fReVkeI,1809272
|
|
2
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=ff4FKgy4B1imHwvDZixKXJ1ydHXUnZzRfwgpLQAYVb4,159915
|
|
3
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=jY0-FFkb3xmtgxhsIuqPCBETSUttUHKZlIjT8tNrqHQ,8963688
|
|
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.10.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.10.dist-info/METADATA,sha256=XkUQkLksX-iRiGBMR8bzr1JachjV0YrmpFjN0i5Pe5g,2628
|
|
10
|
+
placo-0.9.10.dist-info/WHEEL,sha256=IUoq4jkvzpr-RCdJGO4GKbL2IGbQLBAg7MfEZl-UKjg,116
|
|
11
|
+
placo-0.9.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.10.dist-info/RECORD,,
|
placo-0.9.9.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=5AwVyF_Mx__476ELY2qweszGals-t__tlV9MgiZxink,1809200
|
|
2
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=sWXpv4HWtSM_nRGskx1JYXGT5iApvNDVTPv3XBEAXw8,158952
|
|
3
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=mNg1Ma5ktlprKaRHARROVKhsfNw5Po4pDo0b1M2sZjQ,8943408
|
|
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.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=IUoq4jkvzpr-RCdJGO4GKbL2IGbQLBAg7MfEZl-UKjg,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
|