placo 0.9.8__0-cp311-cp311-macosx_10_9_x86_64.whl → 0.9.10__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 +52 -25
- cmeel.prefix/lib/python3.11/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
|
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
|
|
@@ -2911,6 +2902,18 @@ class FootstepsPlanner:
|
|
|
2911
2902
|
"""
|
|
2912
2903
|
...
|
|
2913
2904
|
|
|
2905
|
+
def clipped_opposite_footstep(
|
|
2906
|
+
self,
|
|
2907
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2908
|
+
d_x: float = 0., # double
|
|
2909
|
+
d_y: float = 0., # double
|
|
2910
|
+
d_theta: float = 0., # double
|
|
2911
|
+
) -> Footstep:
|
|
2912
|
+
"""
|
|
2913
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2914
|
+
"""
|
|
2915
|
+
...
|
|
2916
|
+
|
|
2914
2917
|
@staticmethod
|
|
2915
2918
|
def make_supports(
|
|
2916
2919
|
self,
|
|
@@ -2958,6 +2961,18 @@ class FootstepsPlannerNaive:
|
|
|
2958
2961
|
) -> any:
|
|
2959
2962
|
...
|
|
2960
2963
|
|
|
2964
|
+
def clipped_opposite_footstep(
|
|
2965
|
+
self,
|
|
2966
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2967
|
+
d_x: float = 0., # double
|
|
2968
|
+
d_y: float = 0., # double
|
|
2969
|
+
d_theta: float = 0., # double
|
|
2970
|
+
) -> Footstep:
|
|
2971
|
+
"""
|
|
2972
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2973
|
+
"""
|
|
2974
|
+
...
|
|
2975
|
+
|
|
2961
2976
|
def configure(
|
|
2962
2977
|
self,
|
|
2963
2978
|
T_world_left_target: numpy.ndarray, # Eigen::Affine3d
|
|
@@ -3036,6 +3051,18 @@ class FootstepsPlannerRepetitive:
|
|
|
3036
3051
|
) -> any:
|
|
3037
3052
|
...
|
|
3038
3053
|
|
|
3054
|
+
def clipped_opposite_footstep(
|
|
3055
|
+
self,
|
|
3056
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
3057
|
+
d_x: float = 0., # double
|
|
3058
|
+
d_y: float = 0., # double
|
|
3059
|
+
d_theta: float = 0., # double
|
|
3060
|
+
) -> Footstep:
|
|
3061
|
+
"""
|
|
3062
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
3063
|
+
"""
|
|
3064
|
+
...
|
|
3065
|
+
|
|
3039
3066
|
def configure(
|
|
3040
3067
|
self,
|
|
3041
3068
|
x: float, # double
|
|
@@ -3516,7 +3543,7 @@ class HumanoidRobot:
|
|
|
3516
3543
|
"""
|
|
3517
3544
|
Computes all minimum distances between current collision pairs.
|
|
3518
3545
|
|
|
3519
|
-
:return: <Element 'para' at
|
|
3546
|
+
:return: <Element 'para' at 0x10911a4d0>
|
|
3520
3547
|
"""
|
|
3521
3548
|
...
|
|
3522
3549
|
|
|
@@ -3549,7 +3576,7 @@ class HumanoidRobot:
|
|
|
3549
3576
|
|
|
3550
3577
|
:param any frame: the frame for which we want the jacobian
|
|
3551
3578
|
|
|
3552
|
-
:return: <Element 'para' at
|
|
3579
|
+
:return: <Element 'para' at 0x109119a80>
|
|
3553
3580
|
"""
|
|
3554
3581
|
...
|
|
3555
3582
|
|
|
@@ -3563,7 +3590,7 @@ class HumanoidRobot:
|
|
|
3563
3590
|
|
|
3564
3591
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3565
3592
|
|
|
3566
|
-
:return: <Element 'para' at
|
|
3593
|
+
:return: <Element 'para' at 0x109118860>
|
|
3567
3594
|
"""
|
|
3568
3595
|
...
|
|
3569
3596
|
|
|
@@ -3871,7 +3898,7 @@ class HumanoidRobot:
|
|
|
3871
3898
|
|
|
3872
3899
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3873
3900
|
|
|
3874
|
-
:return: <Element 'para' at
|
|
3901
|
+
:return: <Element 'para' at 0x10910db20>
|
|
3875
3902
|
"""
|
|
3876
3903
|
...
|
|
3877
3904
|
|
|
@@ -6343,7 +6370,7 @@ class RobotWrapper:
|
|
|
6343
6370
|
"""
|
|
6344
6371
|
Computes all minimum distances between current collision pairs.
|
|
6345
6372
|
|
|
6346
|
-
:return: <Element 'para' at
|
|
6373
|
+
:return: <Element 'para' at 0x10911b060>
|
|
6347
6374
|
"""
|
|
6348
6375
|
...
|
|
6349
6376
|
|
|
@@ -6357,7 +6384,7 @@ class RobotWrapper:
|
|
|
6357
6384
|
|
|
6358
6385
|
:param any frame: the frame for which we want the jacobian
|
|
6359
6386
|
|
|
6360
|
-
:return: <Element 'para' at
|
|
6387
|
+
:return: <Element 'para' at 0x10911bb50>
|
|
6361
6388
|
"""
|
|
6362
6389
|
...
|
|
6363
6390
|
|
|
@@ -6371,7 +6398,7 @@ class RobotWrapper:
|
|
|
6371
6398
|
|
|
6372
6399
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6373
6400
|
|
|
6374
|
-
:return: <Element 'para' at
|
|
6401
|
+
:return: <Element 'para' at 0x109129580>
|
|
6375
6402
|
"""
|
|
6376
6403
|
...
|
|
6377
6404
|
|
|
@@ -6608,7 +6635,7 @@ class RobotWrapper:
|
|
|
6608
6635
|
|
|
6609
6636
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6610
6637
|
|
|
6611
|
-
:return: <Element 'para' at
|
|
6638
|
+
:return: <Element 'para' at 0x10911a930>
|
|
6612
6639
|
"""
|
|
6613
6640
|
...
|
|
6614
6641
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=9BOYoIT3hglFsgxZUPfBw6NQ2vAwOaGuzHaah2UKpvo,1860280
|
|
2
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=xrJBIMOZKDs03BN22pWdjQ-jTWqQlPYYNSti-wpr02A,161738
|
|
3
|
+
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=yXFfLrEAZZFC8llxUD6ZA61NYddk-54tNsNkkJz3S-0,7239456
|
|
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=w9iRXwrZ34xH7YkTKFQXDZnfo6T60yVj60vK0XG2fFo,112
|
|
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.dylib,sha256=D8AzOoxW5U6-4GxRxRwiw0rJ35wvLemIaQn1LxlCX2E,1860184
|
|
2
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.pyi,sha256=K4KfvJ-HDU31CqvQ2LLQy8Tj3EvrSUKSKwNWqAxasK8,160775
|
|
3
|
-
cmeel.prefix/lib/python3.11/site-packages/placo.so,sha256=xdPeHaE3yfoOcqUYOlnUbMDionCOApoL7VTOgFOXPLk,7194320
|
|
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.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=w9iRXwrZ34xH7YkTKFQXDZnfo6T60yVj60vK0XG2fFo,112
|
|
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
|