placo 0.9.8__0-cp310-cp310-macosx_11_0_arm64.whl → 0.9.10__0-cp310-cp310-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
@@ -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 0x1074ff880>
3546
+ :return: <Element 'para' at 0x105820f40>
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 0x1074ffa60>
3579
+ :return: <Element 'para' at 0x105821a30>
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 0x1074e0bd0>
3593
+ :return: <Element 'para' at 0x105823420>
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 0x1074a48b0>
3901
+ :return: <Element 'para' at 0x105820810>
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 0x1074edee0>
6373
+ :return: <Element 'para' at 0x105739e40>
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 0x1074ee9d0>
6387
+ :return: <Element 'para' at 0x10573a930>
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 0x1074fc400>
6401
+ :return: <Element 'para' at 0x105748360>
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 0x1074ed7b0>
6638
+ :return: <Element 'para' at 0x105739710>
6612
6639
  """
6613
6640
  ...
6614
6641
 
@@ -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.dylib,sha256=6n7DmUfjTbwa_O4nVJT-MNAXVtb-PWuSMe3ZUI1qSBM,1505744
2
+ cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=KUb2MAieQO6ZqpWWHAz9YAHrKybPgu2XVy_YgQcE8KQ,161738
3
+ cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=E2WBCBpihWk0sTszTU2S72-f8sOju_PYLOk1ITrBIjY,6791864
4
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.10/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=wZPM3usBfU0VeMSc3DCLlfcN5EuhQgo5t1AEM8-WQe0,111
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.dylib,sha256=7nhraPQbU7PH5E4rh7FwZaw65e-rO0-WJI-fppLYJv8,1505632
2
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=xFXasgQK6UyKuR5uJGi_24kXCSU9XC5P2EiJLnXc5PQ,160775
3
- cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=uL9EsKDvx572tl1UxacfGNAs4E2bcjdIc-iZHLVYE8Q,6750376
4
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.10/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=wZPM3usBfU0VeMSc3DCLlfcN5EuhQgo5t1AEM8-WQe0,111
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