placo 0.9.8__0-cp39-cp39-macosx_10_9_x86_64.whl → 0.9.10__0-cp39-cp39-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.

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
@@ -2907,6 +2898,18 @@ class FootstepsPlanner:
2907
2898
  """
2908
2899
  ...
2909
2900
 
2901
+ def clipped_opposite_footstep(
2902
+ self,
2903
+ footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
2904
+ d_x: float = 0., # double
2905
+ d_y: float = 0., # double
2906
+ d_theta: float = 0., # double
2907
+ ) -> Footstep:
2908
+ """
2909
+ Same as opposite_footstep(), but the clipping is applied.
2910
+ """
2911
+ ...
2912
+
2910
2913
  @staticmethod
2911
2914
  def make_supports(
2912
2915
  self,
@@ -2954,6 +2957,18 @@ class FootstepsPlannerNaive:
2954
2957
  ) -> any:
2955
2958
  ...
2956
2959
 
2960
+ def clipped_opposite_footstep(
2961
+ self,
2962
+ footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
2963
+ d_x: float = 0., # double
2964
+ d_y: float = 0., # double
2965
+ d_theta: float = 0., # double
2966
+ ) -> Footstep:
2967
+ """
2968
+ Same as opposite_footstep(), but the clipping is applied.
2969
+ """
2970
+ ...
2971
+
2957
2972
  def configure(
2958
2973
  self,
2959
2974
  T_world_left_target: numpy.ndarray, # Eigen::Affine3d
@@ -3032,6 +3047,18 @@ class FootstepsPlannerRepetitive:
3032
3047
  ) -> any:
3033
3048
  ...
3034
3049
 
3050
+ def clipped_opposite_footstep(
3051
+ self,
3052
+ footstep: Footstep, # placo::humanoid::FootstepsPlanner::Footstep
3053
+ d_x: float = 0., # double
3054
+ d_y: float = 0., # double
3055
+ d_theta: float = 0., # double
3056
+ ) -> Footstep:
3057
+ """
3058
+ Same as opposite_footstep(), but the clipping is applied.
3059
+ """
3060
+ ...
3061
+
3035
3062
  def configure(
3036
3063
  self,
3037
3064
  x: float, # double
@@ -3512,7 +3539,7 @@ class HumanoidRobot:
3512
3539
  """
3513
3540
  Computes all minimum distances between current collision pairs.
3514
3541
 
3515
- :return: <Element 'para' at 0x10d0cd040>
3542
+ :return: <Element 'para' at 0x10874f2c0>
3516
3543
  """
3517
3544
  ...
3518
3545
 
@@ -3545,7 +3572,7 @@ class HumanoidRobot:
3545
3572
 
3546
3573
  :param any frame: the frame for which we want the jacobian
3547
3574
 
3548
- :return: <Element 'para' at 0x10d0d4a90>
3575
+ :return: <Element 'para' at 0x1087598b0>
3549
3576
  """
3550
3577
  ...
3551
3578
 
@@ -3559,7 +3586,7 @@ class HumanoidRobot:
3559
3586
 
3560
3587
  :param any frame: the frame for which we want the jacobian time variation
3561
3588
 
3562
- :return: <Element 'para' at 0x10d0de590>
3589
+ :return: <Element 'para' at 0x10875c4f0>
3563
3590
  """
3564
3591
  ...
3565
3592
 
@@ -3867,7 +3894,7 @@ class HumanoidRobot:
3867
3894
 
3868
3895
  :param bool stop_at_first: whether to stop at the first collision found
3869
3896
 
3870
- :return: <Element 'para' at 0x10d0cd810>
3897
+ :return: <Element 'para' at 0x10874fa40>
3871
3898
  """
3872
3899
  ...
3873
3900
 
@@ -6335,7 +6362,7 @@ class RobotWrapper:
6335
6362
  """
6336
6363
  Computes all minimum distances between current collision pairs.
6337
6364
 
6338
- :return: <Element 'para' at 0x10c19ac20>
6365
+ :return: <Element 'para' at 0x107822a40>
6339
6366
  """
6340
6367
  ...
6341
6368
 
@@ -6349,7 +6376,7 @@ class RobotWrapper:
6349
6376
 
6350
6377
  :param any frame: the frame for which we want the jacobian
6351
6378
 
6352
- :return: <Element 'para' at 0x10c19e770>
6379
+ :return: <Element 'para' at 0x107826590>
6353
6380
  """
6354
6381
  ...
6355
6382
 
@@ -6363,7 +6390,7 @@ class RobotWrapper:
6363
6390
 
6364
6391
  :param any frame: the frame for which we want the jacobian time variation
6365
6392
 
6366
- :return: <Element 'para' at 0x10c1a5220>
6393
+ :return: <Element 'para' at 0x10782d040>
6367
6394
  """
6368
6395
  ...
6369
6396
 
@@ -6600,7 +6627,7 @@ class RobotWrapper:
6600
6627
 
6601
6628
  :param bool stop_at_first: whether to stop at the first collision found
6602
6629
 
6603
- :return: <Element 'para' at 0x10c19a4f0>
6630
+ :return: <Element 'para' at 0x107822310>
6604
6631
  """
6605
6632
  ...
6606
6633
 
@@ -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=SxOyF-EHY1NfAsSotx1Sq0j0Ox2rQ2zM7ktYt2Yd9qE,1860280
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=N0wiJlIAhLDWHxYkxWSEvfpzcbczoKYNVxfyIDs4wco,161662
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=SPmlzYxikEbfuJDqFUsMfUc2KEGGEjAFyAASlZpmWWc,7239456
4
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
+ cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
+ cmeel.prefix/lib/python3.9/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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
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=8O_sy3UmB1mCa9AwTkq4BhA0Enl7vol8MuQ-U7A6CSw,1860184
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=2BC4TBHTmX6CxMcuXa1Ofg0i7nG9THpks7gYK--X-7E,160699
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=vw0EsBBKuDuFBuwtRp088o8RVzyCexz9QFJkI1VaYkE,7194320
4
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
5
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
6
- cmeel.prefix/lib/python3.9/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
7
- cmeel.prefix/lib/python3.9/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=SPuKCq7g91a_0Yde2aZNKktl1nqSUqyoo9dFJq3wVNQ,110
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