placo 0.9.8__0-cp39-cp39-manylinux_2_28_x86_64.whl → 0.9.10__0-cp39-cp39-manylinux_2_28_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.so +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.8.dist-info → placo-0.9.10.dist-info}/METADATA +1 -1
- placo-0.9.10.dist-info/RECORD +12 -0
- placo-0.9.8.dist-info/RECORD +0 -12
- {placo-0.9.8.dist-info → placo-0.9.10.dist-info}/WHEEL +0 -0
- {placo-0.9.8.dist-info → placo-0.9.10.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.8.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
|
|
@@ -2811,6 +2802,18 @@ class FootstepsPlanner:
|
|
|
2811
2802
|
"""
|
|
2812
2803
|
...
|
|
2813
2804
|
|
|
2805
|
+
def clipped_opposite_footstep(
|
|
2806
|
+
self,
|
|
2807
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2808
|
+
d_x: float = 0., # double
|
|
2809
|
+
d_y: float = 0., # double
|
|
2810
|
+
d_theta: float = 0., # double
|
|
2811
|
+
) -> Footstep:
|
|
2812
|
+
"""
|
|
2813
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2814
|
+
"""
|
|
2815
|
+
...
|
|
2816
|
+
|
|
2814
2817
|
@staticmethod
|
|
2815
2818
|
def make_supports(
|
|
2816
2819
|
self,
|
|
@@ -2856,6 +2859,18 @@ class FootstepsPlannerNaive:
|
|
|
2856
2859
|
) -> any:
|
|
2857
2860
|
...
|
|
2858
2861
|
|
|
2862
|
+
def clipped_opposite_footstep(
|
|
2863
|
+
self,
|
|
2864
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2865
|
+
d_x: float = 0., # double
|
|
2866
|
+
d_y: float = 0., # double
|
|
2867
|
+
d_theta: float = 0., # double
|
|
2868
|
+
) -> Footstep:
|
|
2869
|
+
"""
|
|
2870
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2871
|
+
"""
|
|
2872
|
+
...
|
|
2873
|
+
|
|
2859
2874
|
def configure(
|
|
2860
2875
|
self,
|
|
2861
2876
|
T_world_left_target: numpy.ndarray, # Eigen::Affine3d
|
|
@@ -2929,6 +2944,18 @@ class FootstepsPlannerRepetitive:
|
|
|
2929
2944
|
) -> any:
|
|
2930
2945
|
...
|
|
2931
2946
|
|
|
2947
|
+
def clipped_opposite_footstep(
|
|
2948
|
+
self,
|
|
2949
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2950
|
+
d_x: float = 0., # double
|
|
2951
|
+
d_y: float = 0., # double
|
|
2952
|
+
d_theta: float = 0., # double
|
|
2953
|
+
) -> Footstep:
|
|
2954
|
+
"""
|
|
2955
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2956
|
+
"""
|
|
2957
|
+
...
|
|
2958
|
+
|
|
2932
2959
|
def configure(
|
|
2933
2960
|
self,
|
|
2934
2961
|
x: float, # double
|
|
@@ -3392,7 +3419,7 @@ class HumanoidRobot:
|
|
|
3392
3419
|
"""
|
|
3393
3420
|
Computes all minimum distances between current collision pairs.
|
|
3394
3421
|
|
|
3395
|
-
:return: <Element 'para' at
|
|
3422
|
+
:return: <Element 'para' at 0x7fdb667cf180>
|
|
3396
3423
|
"""
|
|
3397
3424
|
...
|
|
3398
3425
|
|
|
@@ -3424,7 +3451,7 @@ class HumanoidRobot:
|
|
|
3424
3451
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
3425
3452
|
|
|
3426
3453
|
:param any frame: the frame for which we want the jacobian
|
|
3427
|
-
:return: <Element 'para' at
|
|
3454
|
+
:return: <Element 'para' at 0x7fdb667cfd60>
|
|
3428
3455
|
"""
|
|
3429
3456
|
...
|
|
3430
3457
|
|
|
@@ -3437,7 +3464,7 @@ class HumanoidRobot:
|
|
|
3437
3464
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
3438
3465
|
|
|
3439
3466
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3440
|
-
:return: <Element 'para' at
|
|
3467
|
+
:return: <Element 'para' at 0x7fdb667fb5e0>
|
|
3441
3468
|
"""
|
|
3442
3469
|
...
|
|
3443
3470
|
|
|
@@ -3739,7 +3766,7 @@ class HumanoidRobot:
|
|
|
3739
3766
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
3740
3767
|
|
|
3741
3768
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3742
|
-
:return: <Element 'para' at
|
|
3769
|
+
:return: <Element 'para' at 0x7fdb667cc9a0>
|
|
3743
3770
|
"""
|
|
3744
3771
|
...
|
|
3745
3772
|
|
|
@@ -6127,7 +6154,7 @@ class RobotWrapper:
|
|
|
6127
6154
|
"""
|
|
6128
6155
|
Computes all minimum distances between current collision pairs.
|
|
6129
6156
|
|
|
6130
|
-
:return: <Element 'para' at
|
|
6157
|
+
:return: <Element 'para' at 0x7fdb6682d270>
|
|
6131
6158
|
"""
|
|
6132
6159
|
...
|
|
6133
6160
|
|
|
@@ -6140,7 +6167,7 @@ class RobotWrapper:
|
|
|
6140
6167
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
6141
6168
|
|
|
6142
6169
|
:param any frame: the frame for which we want the jacobian
|
|
6143
|
-
:return: <Element 'para' at
|
|
6170
|
+
:return: <Element 'para' at 0x7fdb66833130>
|
|
6144
6171
|
"""
|
|
6145
6172
|
...
|
|
6146
6173
|
|
|
@@ -6153,7 +6180,7 @@ class RobotWrapper:
|
|
|
6153
6180
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
6154
6181
|
|
|
6155
6182
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6156
|
-
:return: <Element 'para' at
|
|
6183
|
+
:return: <Element 'para' at 0x7fdb66868c20>
|
|
6157
6184
|
"""
|
|
6158
6185
|
...
|
|
6159
6186
|
|
|
@@ -6387,7 +6414,7 @@ class RobotWrapper:
|
|
|
6387
6414
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
6388
6415
|
|
|
6389
6416
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6390
|
-
:return: <Element 'para' at
|
|
6417
|
+
:return: <Element 'para' at 0x7fdb668150e0>
|
|
6391
6418
|
"""
|
|
6392
6419
|
...
|
|
6393
6420
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=yZOT_uK2YPrqNqcO4Hq_tTuyrUcf_zGHLuI_dFVTKl0,2119512
|
|
2
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=5He0THQlEFuqzjjdK9fwLtL6bC-nNRx-i0flltUbtTk,159839
|
|
3
|
+
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=JyhOv1aurM95jvaei-UKDaqRTFyUYmEnNLqYp38dBTA,8636144
|
|
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.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=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
|
|
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.8.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=UjK5SJqZx2Es5LgUOreWgltTjf8sF317uKWWeHn2ecg,2119416
|
|
2
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=x_tY4uph7EzhvubkikQZDCpkPEQejoGGOc1M3XnOrz8,158876
|
|
3
|
-
cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=GYKFW3_mWixMTK-sehkx4-vlpK26pLqhUfPS43phfg4,8576392
|
|
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.8.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.9.8.dist-info/METADATA,sha256=xgxI4GSmC56F_s89L_ImmADbfYBH8zYtyQgzOnFf4rA,2627
|
|
10
|
-
placo-0.9.8.dist-info/WHEEL,sha256=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
|
|
11
|
-
placo-0.9.8.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.9.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|