placo 0.9.9__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.11__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.

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
- feet_spacing: float # double
1123
- """
1124
- Feet spacing [m].
1125
- """
1126
-
1127
- lift_height: float # double
1123
+ lift_spline: CubicSpline # placo::tools::CubicSpline
1128
1124
  """
1129
- Lift height [m].
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 0x105a46f70>
3550
+ :return: <Element 'para' at 0x1077117b0>
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 0x105a40c20>
3583
+ :return: <Element 'para' at 0x1077107c0>
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 0x105b706d0>
3597
+ :return: <Element 'para' at 0x1076c6d40>
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 0x105a47330>
3905
+ :return: <Element 'para' at 0x107711b20>
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 0x105a94f90>
6381
+ :return: <Element 'para' at 0x107710450>
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 0x105a95a30>
6395
+ :return: <Element 'para' at 0x107710ef0>
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 0x105a971a0>
6409
+ :return: <Element 'para' at 0x107712660>
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 0x105a94770>
6646
+ :return: <Element 'para' at 0x10770bbf0>
6620
6647
  """
6621
6648
  ...
6622
6649
 
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.9
3
+ Version: 0.9.11
4
4
  Summary: PlaCo: Rhoban Planning and Control
5
- Requires-Python: >= 3.9
5
+ Requires-Python: >= 3.8
6
6
  License-Expression: MIT
7
7
  License-File: LICENSE
8
8
  Author-email: Rhoban team <team@rhoban.com>
@@ -11,12 +11,12 @@ Home-page: https://placo.readthedocs.io/en/latest/
11
11
  Project-URL: Repository, https://github.com/rhoban/placo.git
12
12
  Requires-Dist: cmeel
13
13
  Requires-Dist: eiquadprog >= 1.2.6, < 2
14
- Requires-Dist: pin == 3.7.0
14
+ Requires-Dist: pin==3.4.0
15
15
  Requires-Dist: rhoban-cmeel-jsoncpp
16
16
  Requires-Dist: meshcat
17
17
  Requires-Dist: ischedule
18
18
  Provides-Extra: build
19
- Requires-Dist: pin[build] == 3.7.0 ; extra == "build"
19
+ Requires-Dist: pin[build]==3.4.0 ; extra == "build"
20
20
  Requires-Dist: doxystub >= 0.1.7 ; extra == "build"
21
21
  Requires-Dist: cmake<4 ; extra == "build"
22
22
  Description-Content-Type: text/markdown
@@ -0,0 +1,12 @@
1
+ cmeel.prefix/lib/liblibplaco.dylib,sha256=4_EtDaZ4Rj8AHgNS0pXHOGLPlUFMvzEfdrNzXFagDhs,1400528
2
+ cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=wbj_OP2bw7OsA7xwA6RfMEDX1j6uzUH0mZ6B5k_hsYc,161816
3
+ cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=Op92dqMP66w92hjkdzjBvX-8sTpiXx7eqRYZIv90oMk,6841768
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.11.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
+ placo-0.9.11.dist-info/METADATA,sha256=0K25RC_P7oh7mthpw4jmB7k8tANO-4CxmcPcaMiqyNg,2623
10
+ placo-0.9.11.dist-info/WHEEL,sha256=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
11
+ placo-0.9.11.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.11.dist-info/RECORD,,
@@ -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