placo 0.9.8__0-cp312-cp312-manylinux_2_28_aarch64.whl → 0.9.10__0-cp312-cp312-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.

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
- feet_spacing: float # double
1088
- """
1089
- Feet spacing [m].
1090
- """
1091
-
1092
- lift_height: float # double
1088
+ lift_spline: CubicSpline # placo::tools::CubicSpline
1093
1089
  """
1094
- Lift height [m].
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 0xffe7bcc9f970>
3430
+ :return: <Element 'para' at 0xfff2b8cb3bf0>
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 0xffe7bcc9f010>
3462
+ :return: <Element 'para' at 0xfff2b8cb3240>
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 0xffe7bcc9d940>
3475
+ :return: <Element 'para' at 0xfff2b8cb1940>
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 0xffe7bccabe70>
3777
+ :return: <Element 'para' at 0xfff2b8cc3ce0>
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 0xffe7bccceb60>
6173
+ :return: <Element 'para' at 0xfff2b8cc0220>
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 0xffe7bcccdf30>
6186
+ :return: <Element 'para' at 0xfff2b8cc1d00>
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 0xffe7bcccc360>
6199
+ :return: <Element 'para' at 0xfff2b8cc33d0>
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 0xffe7bcccfa10>
6433
+ :return: <Element 'para' at 0xfff2b8cc0db0>
6407
6434
  """
6408
6435
  ...
6409
6436
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.8
3
+ Version: 0.9.10
4
4
  Summary: PlaCo: Rhoban Planning and Control
5
5
  Requires-Python: >= 3.9
6
6
  License-Expression: MIT
@@ -0,0 +1,12 @@
1
+ cmeel.prefix/lib/liblibplaco.so,sha256=Kwjm5-E3j4t0xw_M1R6KlCRq8xZIEGx47lUNrO9DJf0,1809272
2
+ cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=QGSgRkE6e8f3cFpZ7wYQIubtuUwg0VIA8YyuqO-U8sI,159993
3
+ cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=fL2WS00DazK6kweIA9KcLWnD4OYz8LMuSQlecMRDsqk,8890848
4
+ cmeel.prefix/lib/python3.12/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.12/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.12/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.12/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=ToaEwJN9ywpm4RbRLZDEOVlE45Im7C9qIw02cSBZGOA,116
11
+ placo-0.9.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.10.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.so,sha256=ncr9ZOfv4U3Ohmb-1XSQBh1-rxvLB811sl90VN2IcAk,1809200
2
- cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=PkJUa0D-OTDLRFaw6HWMXGxLXDWnWgUEvMhgHbajHic,159030
3
- cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=UAVq_ZCh6leWSbdsy5xqg7RflxC_-K8vpXhgLLEmxGQ,8871008
4
- cmeel.prefix/lib/python3.12/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.12/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.12/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.12/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=ToaEwJN9ywpm4RbRLZDEOVlE45Im7C9qIw02cSBZGOA,116
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