placo 0.9.9__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.10__0-cp313-cp313-macosx_11_0_arm64.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.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.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
|
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
|
|
@@ -2915,6 +2906,18 @@ class FootstepsPlanner:
|
|
|
2915
2906
|
"""
|
|
2916
2907
|
...
|
|
2917
2908
|
|
|
2909
|
+
def clipped_opposite_footstep(
|
|
2910
|
+
self,
|
|
2911
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2912
|
+
d_x: float = 0., # double
|
|
2913
|
+
d_y: float = 0., # double
|
|
2914
|
+
d_theta: float = 0., # double
|
|
2915
|
+
) -> Footstep:
|
|
2916
|
+
"""
|
|
2917
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2918
|
+
"""
|
|
2919
|
+
...
|
|
2920
|
+
|
|
2918
2921
|
@staticmethod
|
|
2919
2922
|
def make_supports(
|
|
2920
2923
|
self,
|
|
@@ -2962,6 +2965,18 @@ class FootstepsPlannerNaive:
|
|
|
2962
2965
|
) -> any:
|
|
2963
2966
|
...
|
|
2964
2967
|
|
|
2968
|
+
def clipped_opposite_footstep(
|
|
2969
|
+
self,
|
|
2970
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
2971
|
+
d_x: float = 0., # double
|
|
2972
|
+
d_y: float = 0., # double
|
|
2973
|
+
d_theta: float = 0., # double
|
|
2974
|
+
) -> Footstep:
|
|
2975
|
+
"""
|
|
2976
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
2977
|
+
"""
|
|
2978
|
+
...
|
|
2979
|
+
|
|
2965
2980
|
def configure(
|
|
2966
2981
|
self,
|
|
2967
2982
|
T_world_left_target: numpy.ndarray, # Eigen::Affine3d
|
|
@@ -3040,6 +3055,18 @@ class FootstepsPlannerRepetitive:
|
|
|
3040
3055
|
) -> any:
|
|
3041
3056
|
...
|
|
3042
3057
|
|
|
3058
|
+
def clipped_opposite_footstep(
|
|
3059
|
+
self,
|
|
3060
|
+
footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
|
|
3061
|
+
d_x: float = 0., # double
|
|
3062
|
+
d_y: float = 0., # double
|
|
3063
|
+
d_theta: float = 0., # double
|
|
3064
|
+
) -> Footstep:
|
|
3065
|
+
"""
|
|
3066
|
+
Same as opposite_footstep(), but the clipping is applied.
|
|
3067
|
+
"""
|
|
3068
|
+
...
|
|
3069
|
+
|
|
3043
3070
|
def configure(
|
|
3044
3071
|
self,
|
|
3045
3072
|
x: float, # double
|
|
@@ -3520,7 +3547,7 @@ class HumanoidRobot:
|
|
|
3520
3547
|
"""
|
|
3521
3548
|
Computes all minimum distances between current collision pairs.
|
|
3522
3549
|
|
|
3523
|
-
:return: <Element 'para' at
|
|
3550
|
+
:return: <Element 'para' at 0x104180900>
|
|
3524
3551
|
"""
|
|
3525
3552
|
...
|
|
3526
3553
|
|
|
@@ -3553,7 +3580,7 @@ class HumanoidRobot:
|
|
|
3553
3580
|
|
|
3554
3581
|
:param any frame: the frame for which we want the jacobian
|
|
3555
3582
|
|
|
3556
|
-
:return: <Element 'para' at
|
|
3583
|
+
:return: <Element 'para' at 0x10417f560>
|
|
3557
3584
|
"""
|
|
3558
3585
|
...
|
|
3559
3586
|
|
|
@@ -3567,7 +3594,7 @@ class HumanoidRobot:
|
|
|
3567
3594
|
|
|
3568
3595
|
:param any frame: the frame for which we want the jacobian time variation
|
|
3569
3596
|
|
|
3570
|
-
:return: <Element 'para' at
|
|
3597
|
+
:return: <Element 'para' at 0x1042f85e0>
|
|
3571
3598
|
"""
|
|
3572
3599
|
...
|
|
3573
3600
|
|
|
@@ -3875,7 +3902,7 @@ class HumanoidRobot:
|
|
|
3875
3902
|
|
|
3876
3903
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
3877
3904
|
|
|
3878
|
-
:return: <Element 'para' at
|
|
3905
|
+
:return: <Element 'para' at 0x1041817b0>
|
|
3879
3906
|
"""
|
|
3880
3907
|
...
|
|
3881
3908
|
|
|
@@ -6351,7 +6378,7 @@ class RobotWrapper:
|
|
|
6351
6378
|
"""
|
|
6352
6379
|
Computes all minimum distances between current collision pairs.
|
|
6353
6380
|
|
|
6354
|
-
:return: <Element 'para' at
|
|
6381
|
+
:return: <Element 'para' at 0x1041d0f40>
|
|
6355
6382
|
"""
|
|
6356
6383
|
...
|
|
6357
6384
|
|
|
@@ -6365,7 +6392,7 @@ class RobotWrapper:
|
|
|
6365
6392
|
|
|
6366
6393
|
:param any frame: the frame for which we want the jacobian
|
|
6367
6394
|
|
|
6368
|
-
:return: <Element 'para' at
|
|
6395
|
+
:return: <Element 'para' at 0x1041d19e0>
|
|
6369
6396
|
"""
|
|
6370
6397
|
...
|
|
6371
6398
|
|
|
@@ -6379,7 +6406,7 @@ class RobotWrapper:
|
|
|
6379
6406
|
|
|
6380
6407
|
:param any frame: the frame for which we want the jacobian time variation
|
|
6381
6408
|
|
|
6382
|
-
:return: <Element 'para' at
|
|
6409
|
+
:return: <Element 'para' at 0x1041d3150>
|
|
6383
6410
|
"""
|
|
6384
6411
|
...
|
|
6385
6412
|
|
|
@@ -6616,7 +6643,7 @@ class RobotWrapper:
|
|
|
6616
6643
|
|
|
6617
6644
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
6618
6645
|
|
|
6619
|
-
:return: <Element 'para' at
|
|
6646
|
+
:return: <Element 'para' at 0x1041d0720>
|
|
6620
6647
|
"""
|
|
6621
6648
|
...
|
|
6622
6649
|
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=v6ieb2GveBPdQoAfFniyJadtuSiAtPVSadul0q-5MIQ,1505744
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=kOk4053vSa3PotwLWmSYWwFflWKqpgKmvuV56HAyB54,161816
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=s3TFv-umbFhSmmixY-L8b3CRdfBnx3GMO-c5sezgCbo,6864760
|
|
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.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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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.dylib,sha256=FR0uEyGHc0QAXFGg-uCAZRfvJ1mR6h5IGq8K4Q2d508,1505632
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=qwGykdweWVOrAwNUs8aCM82r8XLCTylwlvwlKLv360k,160853
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=dnUFucwHai_TUgYCh1DEIV6goZ2M1Yb2rpvpS5uIBbA,6822696
|
|
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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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
|