placo 0.9.0__0-cp39-cp39-manylinux_2_28_x86_64.whl → 0.9.2__0-cp39-cp39-manylinux_2_28_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
@@ -4119,26 +4119,13 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4119
4119
  def dcm(
4120
4120
  self,
4121
4121
  omega: float, # double
4122
+ com_velocity: numpy.ndarray, # Eigen::Vector2d
4122
4123
  ) -> numpy.ndarray:
4123
4124
  """
4124
4125
  Compute the Divergent Component of Motion (DCM)
4125
4126
 
4126
- :param float omega: Natural frequency of the LIP (= sqrt(g/h))
4127
- """
4128
- ...
4129
-
4130
- def dcm_from_com_vel(
4131
- arg1: HumanoidRobot,
4132
- arg2: float,
4133
- arg3: numpy.ndarray,
4134
- ) -> numpy.ndarray:
4135
- ...
4136
-
4137
- def dcom_world(
4138
- self,
4139
- ) -> numpy.ndarray:
4140
- """
4141
- Gets the CoM velocity in the world.
4127
+ :param float omega: Natural frequency of the LIP (= sqrt(g/h))
4128
+ :param numpy.ndarray com_velocity: CoM velocity
4142
4129
  """
4143
4130
  ...
4144
4131
 
@@ -4148,7 +4135,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4148
4135
  """
4149
4136
  Computes all minimum distances between current collision pairs.
4150
4137
 
4151
- :return: <Element 'para' at 0x7f3b7a6bcf90>
4138
+ :return: <Element 'para' at 0x7fef608b5c20>
4152
4139
  """
4153
4140
  ...
4154
4141
 
@@ -4180,7 +4167,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4180
4167
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4181
4168
 
4182
4169
  :param any frame: the frame for which we want the jacobian
4183
- :return: <Element 'para' at 0x7f3b7a6c6a90>
4170
+ :return: <Element 'para' at 0x7fef608f3720>
4184
4171
  """
4185
4172
  ...
4186
4173
 
@@ -4193,7 +4180,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4193
4180
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4194
4181
 
4195
4182
  :param any frame: the frame for which we want the jacobian time variation
4196
- :return: <Element 'para' at 0x7f3b7a6774a0>
4183
+ :return: <Element 'para' at 0x7fef608b4130>
4197
4184
  """
4198
4185
  ...
4199
4186
 
@@ -4499,7 +4486,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4499
4486
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4500
4487
 
4501
4488
  :param bool stop_at_first: whether to stop at the first collision found
4502
- :return: <Element 'para' at 0x7f3b7a6bc8b0>
4489
+ :return: <Element 'para' at 0x7fef608b5540>
4503
4490
  """
4504
4491
  ...
4505
4492
 
@@ -4725,6 +4712,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4725
4712
  """
4726
4713
  ...
4727
4714
 
4715
+ def update_from_imu(
4716
+ self,
4717
+ R_world_trunk: numpy.ndarray, # Eigen::Matrix3d
4718
+ ) -> None:
4719
+ """
4720
+ Rotate the robot around its support.
4721
+
4722
+ :param numpy.ndarray R_world_trunk: Orientation of the trunk from the IMU
4723
+ """
4724
+ ...
4725
+
4728
4726
  def update_kinematics(
4729
4727
  self,
4730
4728
  ) -> None:
@@ -5349,12 +5347,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
5349
5347
 
5350
5348
  def add_joints_task(
5351
5349
  self,
5352
- joints: dict[str, float], # std::map< std::string, double > &
5353
5350
  ) -> JointsTask:
5354
5351
  """
5355
5352
  Adds joints task.
5356
-
5357
- :param dict[str, float] joints: value for the joints
5358
5353
  """
5359
5354
  ...
5360
5355
 
@@ -7339,21 +7334,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7339
7334
  """
7340
7335
  ...
7341
7336
 
7342
- def dcom_world(
7343
- self,
7344
- ) -> numpy.ndarray:
7345
- """
7346
- Gets the CoM velocity in the world.
7347
- """
7348
- ...
7349
-
7350
7337
  def distances(
7351
7338
  self,
7352
7339
  ) -> list[Distance]:
7353
7340
  """
7354
7341
  Computes all minimum distances between current collision pairs.
7355
7342
 
7356
- :return: <Element 'para' at 0x7f3b7a67d450>
7343
+ :return: <Element 'para' at 0x7fef608a1180>
7357
7344
  """
7358
7345
  ...
7359
7346
 
@@ -7366,7 +7353,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7366
7353
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7367
7354
 
7368
7355
  :param any frame: the frame for which we want the jacobian
7369
- :return: <Element 'para' at 0x7f3b7a67d310>
7356
+ :return: <Element 'para' at 0x7fef608a5400>
7370
7357
  """
7371
7358
  ...
7372
7359
 
@@ -7379,7 +7366,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7379
7366
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7380
7367
 
7381
7368
  :param any frame: the frame for which we want the jacobian time variation
7382
- :return: <Element 'para' at 0x7f3b7a6ba270>
7369
+ :return: <Element 'para' at 0x7fef608cb090>
7383
7370
  """
7384
7371
  ...
7385
7372
 
@@ -7617,7 +7604,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7617
7604
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7618
7605
 
7619
7606
  :param bool stop_at_first: whether to stop at the first collision found
7620
- :return: <Element 'para' at 0x7f3b7a679810>
7607
+ :return: <Element 'para' at 0x7fef608a1ae0>
7621
7608
  """
7622
7609
  ...
7623
7610
 
@@ -8604,6 +8591,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
8604
8591
  """
8605
8592
  ...
8606
8593
 
8594
+ def get_p_support_CoM(
8595
+ self,
8596
+ t: float, # double
8597
+ ) -> numpy.ndarray:
8598
+ ...
8599
+
8600
+ def get_p_support_DCM(
8601
+ self,
8602
+ t: float, # double
8603
+ omega: float, # double
8604
+ ) -> numpy.ndarray:
8605
+ ...
8606
+
8607
8607
  def get_p_world_CoM(
8608
8608
  self,
8609
8609
  t: float, # double
@@ -8676,6 +8676,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
8676
8676
  ) -> list[Support]:
8677
8677
  ...
8678
8678
 
8679
+ def get_v_support_CoM(
8680
+ self,
8681
+ t: float, # double
8682
+ ) -> numpy.ndarray:
8683
+ ...
8684
+
8679
8685
  def get_v_world_CoM(
8680
8686
  self,
8681
8687
  t: float, # double
@@ -8695,15 +8701,6 @@ None( (placo.WPGTrajectory)arg1) -> float :
8695
8701
  ) -> numpy.ndarray:
8696
8702
  ...
8697
8703
 
8698
- kept_ts: any
8699
- """
8700
-
8701
- None( (placo.WPGTrajectory)arg1) -> int :
8702
-
8703
- C++ signature :
8704
- int {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8705
- """
8706
-
8707
8704
  parts: any
8708
8705
  """
8709
8706
 
@@ -8718,6 +8715,15 @@ None( (placo.WPGTrajectory)arg1) -> object :
8718
8715
  ) -> None:
8719
8716
  ...
8720
8717
 
8718
+ replan_success: any
8719
+ """
8720
+
8721
+ None( (placo.WPGTrajectory)arg1) -> bool :
8722
+
8723
+ C++ signature :
8724
+ bool {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8725
+ """
8726
+
8721
8727
  def support_is_both(
8722
8728
  self,
8723
8729
  t: float, # double
@@ -8887,6 +8893,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
8887
8893
  bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
8888
8894
  """
8889
8895
 
8896
+ stop_end_support_weight: any
8897
+ """
8898
+
8899
+ None( (placo.WalkPatternGenerator)arg1) -> float :
8900
+
8901
+ C++ signature :
8902
+ double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
8903
+ """
8904
+
8890
8905
  def support_default_duration(
8891
8906
  self,
8892
8907
  support: Support, # placo::humanoid::FootstepsPlanner::Support
@@ -8903,7 +8918,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
8903
8918
  self,
8904
8919
  t: float, # double
8905
8920
  supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
8906
- world_target_zmp: numpy.ndarray, # Eigen::Vector2d
8907
8921
  world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
8908
8922
  ) -> list[Support]:
8909
8923
  """
@@ -8911,11 +8925,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
8911
8925
 
8912
8926
  :param float t: Current time
8913
8927
  :param list[Support] supports: Planned supports
8914
- :param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
8915
8928
  :param numpy.ndarray world_measured_dcm: Measured DCM in world frame
8916
8929
  """
8917
8930
  ...
8918
8931
 
8932
+ zmp_in_support_weight: any
8933
+ """
8934
+
8935
+ None( (placo.WalkPatternGenerator)arg1) -> float :
8936
+
8937
+ C++ signature :
8938
+ double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
8939
+ """
8940
+
8919
8941
 
8920
8942
  class WalkTasks:
8921
8943
  def __init__(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: placo
3
- Version: 0.9.0
3
+ Version: 0.9.2
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=uqSFJX4Q6KCLym770vJas4Hdw5RdIAJZC4hbcLvVtmM,1986248
2
+ cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=VabB7PUDNAWU6VbVtOrr5DrWf2LddQVFFEP7NJ86Fk8,196293
3
+ cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=uYXvzqMeOHv_-bGABNPsJOtg-qTMZBcrpx46Iv39fHw,8437528
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.2.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
+ placo-0.9.2.dist-info/METADATA,sha256=J3JpPZ0GlSCqi8liiO02WiGJXzJ-q4p5fGUYxPdF8LE,2620
10
+ placo-0.9.2.dist-info/WHEEL,sha256=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
11
+ placo-0.9.2.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ placo-0.9.2.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- cmeel.prefix/lib/liblibplaco.so,sha256=5-fpcQCFITiKU8idoJws8L0VR5unRIVvvdykI5hI-_I,1976776
2
- cmeel.prefix/lib/python3.9/site-packages/placo.pyi,sha256=vnKjsGXIg1re3wxj-bEbvoMrb6Vdwzr6dmbn5f3_ayY,195874
3
- cmeel.prefix/lib/python3.9/site-packages/placo.so,sha256=YyNaVN4fYY8Mv4IHD1YQv638knKIwLSwGhD_A2CG6-0,8437328
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.0.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
9
- placo-0.9.0.dist-info/METADATA,sha256=TPffHbvHnORg7JqUME69Tzf179PvC5sokN6xY2AhY5g,2620
10
- placo-0.9.0.dist-info/WHEEL,sha256=BAQlXoBFWyH33ZUB6937RuzBfXaRO6s_TbSA5OwR86Q,113
11
- placo-0.9.0.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- placo-0.9.0.dist-info/RECORD,,
File without changes