placo 0.9.0__0-cp312-cp312-macosx_10_9_x86_64.whl → 0.9.2__0-cp312-cp312-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.
- cmeel.prefix/lib/liblibplaco.dylib +0 -0
- cmeel.prefix/lib/python3.12/site-packages/placo.pyi +69 -47
- cmeel.prefix/lib/python3.12/site-packages/placo.so +0 -0
- {placo-0.9.0.dist-info → placo-0.9.2.dist-info}/METADATA +1 -1
- placo-0.9.2.dist-info/RECORD +12 -0
- placo-0.9.0.dist-info/RECORD +0 -12
- {placo-0.9.0.dist-info → placo-0.9.2.dist-info}/WHEEL +0 -0
- {placo-0.9.0.dist-info → placo-0.9.2.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.0.dist-info → placo-0.9.2.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -4242,26 +4242,14 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4242
4242
|
def dcm(
|
|
4243
4243
|
self,
|
|
4244
4244
|
omega: float, # double
|
|
4245
|
+
com_velocity: numpy.ndarray, # Eigen::Vector2d
|
|
4245
4246
|
) -> numpy.ndarray:
|
|
4246
4247
|
"""
|
|
4247
4248
|
Compute the Divergent Component of Motion (DCM)
|
|
4248
4249
|
|
|
4249
|
-
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
def dcm_from_com_vel(
|
|
4254
|
-
arg1: HumanoidRobot,
|
|
4255
|
-
arg2: float,
|
|
4256
|
-
arg3: numpy.ndarray,
|
|
4257
|
-
) -> numpy.ndarray:
|
|
4258
|
-
...
|
|
4259
|
-
|
|
4260
|
-
def dcom_world(
|
|
4261
|
-
self,
|
|
4262
|
-
) -> numpy.ndarray:
|
|
4263
|
-
"""
|
|
4264
|
-
Gets the CoM velocity in the world.
|
|
4250
|
+
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4251
|
+
|
|
4252
|
+
:param numpy.ndarray com_velocity: CoM velocity
|
|
4265
4253
|
"""
|
|
4266
4254
|
...
|
|
4267
4255
|
|
|
@@ -4271,7 +4259,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4271
4259
|
"""
|
|
4272
4260
|
Computes all minimum distances between current collision pairs.
|
|
4273
4261
|
|
|
4274
|
-
:return: <Element 'para' at
|
|
4262
|
+
:return: <Element 'para' at 0x10536e890>
|
|
4275
4263
|
"""
|
|
4276
4264
|
...
|
|
4277
4265
|
|
|
@@ -4304,7 +4292,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4304
4292
|
|
|
4305
4293
|
:param any frame: the frame for which we want the jacobian
|
|
4306
4294
|
|
|
4307
|
-
:return: <Element 'para' at
|
|
4295
|
+
:return: <Element 'para' at 0x10536e4d0>
|
|
4308
4296
|
"""
|
|
4309
4297
|
...
|
|
4310
4298
|
|
|
@@ -4318,7 +4306,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4318
4306
|
|
|
4319
4307
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4320
4308
|
|
|
4321
|
-
:return: <Element 'para' at
|
|
4309
|
+
:return: <Element 'para' at 0x105524950>
|
|
4322
4310
|
"""
|
|
4323
4311
|
...
|
|
4324
4312
|
|
|
@@ -4630,7 +4618,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4630
4618
|
|
|
4631
4619
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4632
4620
|
|
|
4633
|
-
:return: <Element 'para' at
|
|
4621
|
+
:return: <Element 'para' at 0x10536cc20>
|
|
4634
4622
|
"""
|
|
4635
4623
|
...
|
|
4636
4624
|
|
|
@@ -4864,6 +4852,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4864
4852
|
"""
|
|
4865
4853
|
...
|
|
4866
4854
|
|
|
4855
|
+
def update_from_imu(
|
|
4856
|
+
self,
|
|
4857
|
+
R_world_trunk: numpy.ndarray, # Eigen::Matrix3d
|
|
4858
|
+
) -> None:
|
|
4859
|
+
"""
|
|
4860
|
+
Rotate the robot around its support.
|
|
4861
|
+
|
|
4862
|
+
:param numpy.ndarray R_world_trunk: Orientation of the trunk from the IMU
|
|
4863
|
+
"""
|
|
4864
|
+
...
|
|
4865
|
+
|
|
4867
4866
|
def update_kinematics(
|
|
4868
4867
|
self,
|
|
4869
4868
|
) -> None:
|
|
@@ -5524,12 +5523,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5524
5523
|
|
|
5525
5524
|
def add_joints_task(
|
|
5526
5525
|
self,
|
|
5527
|
-
joints: dict[str, float], # std::map< std::string, double > &
|
|
5528
5526
|
) -> JointsTask:
|
|
5529
5527
|
"""
|
|
5530
5528
|
Adds joints task.
|
|
5531
|
-
|
|
5532
|
-
:param dict[str, float] joints: value for the joints
|
|
5533
5529
|
"""
|
|
5534
5530
|
...
|
|
5535
5531
|
|
|
@@ -7558,21 +7554,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7558
7554
|
"""
|
|
7559
7555
|
...
|
|
7560
7556
|
|
|
7561
|
-
def dcom_world(
|
|
7562
|
-
self,
|
|
7563
|
-
) -> numpy.ndarray:
|
|
7564
|
-
"""
|
|
7565
|
-
Gets the CoM velocity in the world.
|
|
7566
|
-
"""
|
|
7567
|
-
...
|
|
7568
|
-
|
|
7569
7557
|
def distances(
|
|
7570
7558
|
self,
|
|
7571
7559
|
) -> list[Distance]:
|
|
7572
7560
|
"""
|
|
7573
7561
|
Computes all minimum distances between current collision pairs.
|
|
7574
7562
|
|
|
7575
|
-
:return: <Element 'para' at
|
|
7563
|
+
:return: <Element 'para' at 0x10536c900>
|
|
7576
7564
|
"""
|
|
7577
7565
|
...
|
|
7578
7566
|
|
|
@@ -7586,7 +7574,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7586
7574
|
|
|
7587
7575
|
:param any frame: the frame for which we want the jacobian
|
|
7588
7576
|
|
|
7589
|
-
:return: <Element 'para' at
|
|
7577
|
+
:return: <Element 'para' at 0x10536d3a0>
|
|
7590
7578
|
"""
|
|
7591
7579
|
...
|
|
7592
7580
|
|
|
@@ -7600,7 +7588,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7600
7588
|
|
|
7601
7589
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7602
7590
|
|
|
7603
|
-
:return: <Element 'para' at
|
|
7591
|
+
:return: <Element 'para' at 0x10536eb10>
|
|
7604
7592
|
"""
|
|
7605
7593
|
...
|
|
7606
7594
|
|
|
@@ -7841,7 +7829,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7841
7829
|
|
|
7842
7830
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7843
7831
|
|
|
7844
|
-
:return: <Element 'para' at
|
|
7832
|
+
:return: <Element 'para' at 0x10536c0e0>
|
|
7845
7833
|
"""
|
|
7846
7834
|
...
|
|
7847
7835
|
|
|
@@ -8844,6 +8832,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8844
8832
|
"""
|
|
8845
8833
|
...
|
|
8846
8834
|
|
|
8835
|
+
def get_p_support_CoM(
|
|
8836
|
+
self,
|
|
8837
|
+
t: float, # double
|
|
8838
|
+
) -> numpy.ndarray:
|
|
8839
|
+
...
|
|
8840
|
+
|
|
8841
|
+
def get_p_support_DCM(
|
|
8842
|
+
self,
|
|
8843
|
+
t: float, # double
|
|
8844
|
+
omega: float, # double
|
|
8845
|
+
) -> numpy.ndarray:
|
|
8846
|
+
...
|
|
8847
|
+
|
|
8847
8848
|
def get_p_world_CoM(
|
|
8848
8849
|
self,
|
|
8849
8850
|
t: float, # double
|
|
@@ -8916,6 +8917,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8916
8917
|
) -> list[Support]:
|
|
8917
8918
|
...
|
|
8918
8919
|
|
|
8920
|
+
def get_v_support_CoM(
|
|
8921
|
+
self,
|
|
8922
|
+
t: float, # double
|
|
8923
|
+
) -> numpy.ndarray:
|
|
8924
|
+
...
|
|
8925
|
+
|
|
8919
8926
|
def get_v_world_CoM(
|
|
8920
8927
|
self,
|
|
8921
8928
|
t: float, # double
|
|
@@ -8935,15 +8942,6 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8935
8942
|
) -> numpy.ndarray:
|
|
8936
8943
|
...
|
|
8937
8944
|
|
|
8938
|
-
kept_ts: any
|
|
8939
|
-
"""
|
|
8940
|
-
|
|
8941
|
-
None( (placo.WPGTrajectory)arg1) -> int :
|
|
8942
|
-
|
|
8943
|
-
C++ signature :
|
|
8944
|
-
int {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8945
|
-
"""
|
|
8946
|
-
|
|
8947
8945
|
parts: any
|
|
8948
8946
|
"""
|
|
8949
8947
|
|
|
@@ -8958,6 +8956,15 @@ None( (placo.WPGTrajectory)arg1) -> object :
|
|
|
8958
8956
|
) -> None:
|
|
8959
8957
|
...
|
|
8960
8958
|
|
|
8959
|
+
replan_success: any
|
|
8960
|
+
"""
|
|
8961
|
+
|
|
8962
|
+
None( (placo.WPGTrajectory)arg1) -> bool :
|
|
8963
|
+
|
|
8964
|
+
C++ signature :
|
|
8965
|
+
bool {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8966
|
+
"""
|
|
8967
|
+
|
|
8961
8968
|
def support_is_both(
|
|
8962
8969
|
self,
|
|
8963
8970
|
t: float, # double
|
|
@@ -9132,6 +9139,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9132
9139
|
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9133
9140
|
"""
|
|
9134
9141
|
|
|
9142
|
+
stop_end_support_weight: any
|
|
9143
|
+
"""
|
|
9144
|
+
|
|
9145
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
9146
|
+
|
|
9147
|
+
C++ signature :
|
|
9148
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9149
|
+
"""
|
|
9150
|
+
|
|
9135
9151
|
def support_default_duration(
|
|
9136
9152
|
self,
|
|
9137
9153
|
support: Support, # placo::humanoid::FootstepsPlanner::Support
|
|
@@ -9148,7 +9164,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9148
9164
|
self,
|
|
9149
9165
|
t: float, # double
|
|
9150
9166
|
supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
|
|
9151
|
-
world_target_zmp: numpy.ndarray, # Eigen::Vector2d
|
|
9152
9167
|
world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
|
|
9153
9168
|
) -> list[Support]:
|
|
9154
9169
|
"""
|
|
@@ -9158,12 +9173,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9158
9173
|
|
|
9159
9174
|
:param list[Support] supports: Planned supports
|
|
9160
9175
|
|
|
9161
|
-
:param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
|
|
9162
|
-
|
|
9163
9176
|
:param numpy.ndarray world_measured_dcm: Measured DCM in world frame
|
|
9164
9177
|
"""
|
|
9165
9178
|
...
|
|
9166
9179
|
|
|
9180
|
+
zmp_in_support_weight: any
|
|
9181
|
+
"""
|
|
9182
|
+
|
|
9183
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
9184
|
+
|
|
9185
|
+
C++ signature :
|
|
9186
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9187
|
+
"""
|
|
9188
|
+
|
|
9167
9189
|
|
|
9168
9190
|
class WalkTasks:
|
|
9169
9191
|
def __init__(
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=MSajiQDdkvpY_nscit7FoFamBgR5Fnc06OrxrAlHiwU,1689096
|
|
2
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=bPPhrwjSMC-0w-l7YXOzlRqrLW_8yH-39Q0wcL-JKjQ,198440
|
|
3
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=QP6jUvqDtHqwvdtv7CS_NXhQ6kCB9Gjw_864t_MLACU,7170440
|
|
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.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=Sqf3gwTthYgQbNGLomBkKenghFmujcvJculTyZplbWQ,112
|
|
11
|
+
placo-0.9.2.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.2.dist-info/RECORD,,
|
placo-0.9.0.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=VphQS7z78s5mzPOGuKSHVCrxZowHvV_p6eMkJI5zJrI,1688168
|
|
2
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=BiqKexNlHbDign06WpxMwC5fwu4VDzbQIPw2KzcRgXo,198021
|
|
3
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=zaEPOxgO6yWZNq6Vz30QNr3rEuNKr_CzCSi_Im7L1Hs,7185608
|
|
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.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=Sqf3gwTthYgQbNGLomBkKenghFmujcvJculTyZplbWQ,112
|
|
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
|
|
File without changes
|
|
File without changes
|