placo 0.8.10__0-cp310-cp310-manylinux_2_28_aarch64.whl → 0.9.1__0-cp310-cp310-manylinux_2_28_aarch64.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.so +0 -0
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi +194 -38
- cmeel.prefix/lib/python3.10/site-packages/placo.so +0 -0
- {placo-0.8.10.dist-info → placo-0.9.1.dist-info}/METADATA +1 -1
- placo-0.9.1.dist-info/RECORD +12 -0
- placo-0.8.10.dist-info/RECORD +0 -12
- {placo-0.8.10.dist-info → placo-0.9.1.dist-info}/WHEEL +0 -0
- {placo-0.8.10.dist-info → placo-0.9.1.dist-info}/licenses/LICENSE +0 -0
- {placo-0.8.10.dist-info → placo-0.9.1.dist-info}/top_level.txt +0 -0
cmeel.prefix/lib/liblibplaco.so
CHANGED
|
Binary file
|
|
@@ -15,6 +15,7 @@ Contact6D = typing.NewType("Contact6D", None)
|
|
|
15
15
|
CubicSpline = typing.NewType("CubicSpline", None)
|
|
16
16
|
CubicSpline3D = typing.NewType("CubicSpline3D", None)
|
|
17
17
|
Distance = typing.NewType("Distance", None)
|
|
18
|
+
DistanceConstraint = typing.NewType("DistanceConstraint", None)
|
|
18
19
|
DistanceTask = typing.NewType("DistanceTask", None)
|
|
19
20
|
DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
|
|
20
21
|
DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
|
|
@@ -90,6 +91,7 @@ WPGTrajectoryPart = typing.NewType("WPGTrajectoryPart", None)
|
|
|
90
91
|
WalkPatternGenerator = typing.NewType("WalkPatternGenerator", None)
|
|
91
92
|
WalkTasks = typing.NewType("WalkTasks", None)
|
|
92
93
|
WheelTask = typing.NewType("WheelTask", None)
|
|
94
|
+
YawConstraint = typing.NewType("YawConstraint", None)
|
|
93
95
|
boost_type_index = typing.NewType("boost_type_index", None)
|
|
94
96
|
map_indexing_suite_map_string_double_entry = typing.NewType("map_indexing_suite_map_string_double_entry", None)
|
|
95
97
|
map_string_double = typing.NewType("map_string_double", None)
|
|
@@ -1158,6 +1160,57 @@ None( (placo.Distance)arg1) -> object :
|
|
|
1158
1160
|
"""
|
|
1159
1161
|
|
|
1160
1162
|
|
|
1163
|
+
class DistanceConstraint:
|
|
1164
|
+
def __init__(
|
|
1165
|
+
self,
|
|
1166
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
1167
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
1168
|
+
distance_max: float, # double
|
|
1169
|
+
) -> any:
|
|
1170
|
+
"""
|
|
1171
|
+
Constraints the distance betweek two points in the robot.
|
|
1172
|
+
"""
|
|
1173
|
+
...
|
|
1174
|
+
|
|
1175
|
+
def configure(
|
|
1176
|
+
self,
|
|
1177
|
+
name: str, # std::string
|
|
1178
|
+
priority: str = "soft", # std::string
|
|
1179
|
+
weight: float = 1.0, # double
|
|
1180
|
+
) -> None:
|
|
1181
|
+
"""
|
|
1182
|
+
Configures the object.
|
|
1183
|
+
|
|
1184
|
+
:param str name: task name
|
|
1185
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
1186
|
+
:param float weight: task weight
|
|
1187
|
+
"""
|
|
1188
|
+
...
|
|
1189
|
+
|
|
1190
|
+
distance_max: any
|
|
1191
|
+
"""
|
|
1192
|
+
|
|
1193
|
+
None( (placo.DistanceConstraint)arg1) -> float :
|
|
1194
|
+
|
|
1195
|
+
C++ signature :
|
|
1196
|
+
double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
|
|
1197
|
+
"""
|
|
1198
|
+
|
|
1199
|
+
name: any
|
|
1200
|
+
"""
|
|
1201
|
+
|
|
1202
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
1203
|
+
|
|
1204
|
+
C++ signature :
|
|
1205
|
+
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1206
|
+
"""
|
|
1207
|
+
|
|
1208
|
+
priority: str
|
|
1209
|
+
"""
|
|
1210
|
+
Priority [str]
|
|
1211
|
+
"""
|
|
1212
|
+
|
|
1213
|
+
|
|
1161
1214
|
class DistanceTask:
|
|
1162
1215
|
A: any
|
|
1163
1216
|
"""
|
|
@@ -4070,26 +4123,13 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4070
4123
|
def dcm(
|
|
4071
4124
|
self,
|
|
4072
4125
|
omega: float, # double
|
|
4126
|
+
com_velocity: numpy.ndarray, # Eigen::Vector2d
|
|
4073
4127
|
) -> numpy.ndarray:
|
|
4074
4128
|
"""
|
|
4075
4129
|
Compute the Divergent Component of Motion (DCM)
|
|
4076
4130
|
|
|
4077
|
-
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4078
|
-
|
|
4079
|
-
...
|
|
4080
|
-
|
|
4081
|
-
def dcm_from_com_vel(
|
|
4082
|
-
arg1: HumanoidRobot,
|
|
4083
|
-
arg2: float,
|
|
4084
|
-
arg3: numpy.ndarray,
|
|
4085
|
-
) -> numpy.ndarray:
|
|
4086
|
-
...
|
|
4087
|
-
|
|
4088
|
-
def dcom_world(
|
|
4089
|
-
self,
|
|
4090
|
-
) -> numpy.ndarray:
|
|
4091
|
-
"""
|
|
4092
|
-
Gets the CoM velocity in the world.
|
|
4131
|
+
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4132
|
+
:param numpy.ndarray com_velocity: CoM velocity
|
|
4093
4133
|
"""
|
|
4094
4134
|
...
|
|
4095
4135
|
|
|
@@ -4099,7 +4139,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4099
4139
|
"""
|
|
4100
4140
|
Computes all minimum distances between current collision pairs.
|
|
4101
4141
|
|
|
4102
|
-
:return: <Element 'para' at
|
|
4142
|
+
:return: <Element 'para' at 0xffc25f396610>
|
|
4103
4143
|
"""
|
|
4104
4144
|
...
|
|
4105
4145
|
|
|
@@ -4131,7 +4171,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4131
4171
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
4132
4172
|
|
|
4133
4173
|
:param any frame: the frame for which we want the jacobian
|
|
4134
|
-
:return: <Element 'para' at
|
|
4174
|
+
:return: <Element 'para' at 0xffc25f3970b0>
|
|
4135
4175
|
"""
|
|
4136
4176
|
...
|
|
4137
4177
|
|
|
@@ -4144,7 +4184,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4144
4184
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
4145
4185
|
|
|
4146
4186
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4147
|
-
:return: <Element 'para' at
|
|
4187
|
+
:return: <Element 'para' at 0xffc25f3a8a40>
|
|
4148
4188
|
"""
|
|
4149
4189
|
...
|
|
4150
4190
|
|
|
@@ -4450,7 +4490,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4450
4490
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
4451
4491
|
|
|
4452
4492
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4453
|
-
:return: <Element 'para' at
|
|
4493
|
+
:return: <Element 'para' at 0xffc25f395f30>
|
|
4454
4494
|
"""
|
|
4455
4495
|
...
|
|
4456
4496
|
|
|
@@ -4676,6 +4716,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4676
4716
|
"""
|
|
4677
4717
|
...
|
|
4678
4718
|
|
|
4719
|
+
def update_from_imu(
|
|
4720
|
+
self,
|
|
4721
|
+
R_world_trunk: numpy.ndarray, # Eigen::Matrix3d
|
|
4722
|
+
) -> None:
|
|
4723
|
+
"""
|
|
4724
|
+
Rotate the robot around its support.
|
|
4725
|
+
|
|
4726
|
+
:param numpy.ndarray R_world_trunk: Orientation of the trunk from the IMU
|
|
4727
|
+
"""
|
|
4728
|
+
...
|
|
4729
|
+
|
|
4679
4730
|
def update_kinematics(
|
|
4680
4731
|
self,
|
|
4681
4732
|
) -> None:
|
|
@@ -5238,6 +5289,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5238
5289
|
"""
|
|
5239
5290
|
...
|
|
5240
5291
|
|
|
5292
|
+
def add_distance_constraint(
|
|
5293
|
+
self,
|
|
5294
|
+
frame_a: str, # std::string
|
|
5295
|
+
frame_b: str, # std::string
|
|
5296
|
+
distance_max: float, # double
|
|
5297
|
+
) -> DistanceConstraint:
|
|
5298
|
+
"""
|
|
5299
|
+
Adds a distance constraint.
|
|
5300
|
+
|
|
5301
|
+
:param str frame_a: frame A
|
|
5302
|
+
:param str frame_b: frame B
|
|
5303
|
+
:param float distance_max: maximum distance between the two frames
|
|
5304
|
+
"""
|
|
5305
|
+
...
|
|
5306
|
+
|
|
5241
5307
|
def add_distance_task(
|
|
5242
5308
|
self,
|
|
5243
5309
|
frame_a: str, # std::string
|
|
@@ -5289,12 +5355,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5289
5355
|
|
|
5290
5356
|
def add_joints_task(
|
|
5291
5357
|
self,
|
|
5292
|
-
joints: dict[str, float], # std::map< std::string, double > &
|
|
5293
5358
|
) -> JointsTask:
|
|
5294
5359
|
"""
|
|
5295
5360
|
Adds joints task.
|
|
5296
|
-
|
|
5297
|
-
:param dict[str, float] joints: value for the joints
|
|
5298
5361
|
"""
|
|
5299
5362
|
...
|
|
5300
5363
|
|
|
@@ -5426,6 +5489,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5426
5489
|
"""
|
|
5427
5490
|
...
|
|
5428
5491
|
|
|
5492
|
+
def add_yaw_constraint(
|
|
5493
|
+
self,
|
|
5494
|
+
frame_a: str, # std::string
|
|
5495
|
+
frame_b: str, # std::string
|
|
5496
|
+
alpha_max: float, # double
|
|
5497
|
+
) -> YawConstraint:
|
|
5498
|
+
"""
|
|
5499
|
+
Adds a yaw constraint.
|
|
5500
|
+
|
|
5501
|
+
:param str frame_a: frame A
|
|
5502
|
+
:param str frame_b: frame B
|
|
5503
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5504
|
+
"""
|
|
5505
|
+
...
|
|
5506
|
+
|
|
5429
5507
|
def clear(
|
|
5430
5508
|
self,
|
|
5431
5509
|
) -> None:
|
|
@@ -7264,21 +7342,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7264
7342
|
"""
|
|
7265
7343
|
...
|
|
7266
7344
|
|
|
7267
|
-
def dcom_world(
|
|
7268
|
-
self,
|
|
7269
|
-
) -> numpy.ndarray:
|
|
7270
|
-
"""
|
|
7271
|
-
Gets the CoM velocity in the world.
|
|
7272
|
-
"""
|
|
7273
|
-
...
|
|
7274
|
-
|
|
7275
7345
|
def distances(
|
|
7276
7346
|
self,
|
|
7277
7347
|
) -> list[Distance]:
|
|
7278
7348
|
"""
|
|
7279
7349
|
Computes all minimum distances between current collision pairs.
|
|
7280
7350
|
|
|
7281
|
-
:return: <Element 'para' at
|
|
7351
|
+
:return: <Element 'para' at 0xffc25f3a9a80>
|
|
7282
7352
|
"""
|
|
7283
7353
|
...
|
|
7284
7354
|
|
|
@@ -7291,7 +7361,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7291
7361
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
7292
7362
|
|
|
7293
7363
|
:param any frame: the frame for which we want the jacobian
|
|
7294
|
-
:return: <Element 'para' at
|
|
7364
|
+
:return: <Element 'para' at 0xffc25f3a8ea0>
|
|
7295
7365
|
"""
|
|
7296
7366
|
...
|
|
7297
7367
|
|
|
@@ -7304,7 +7374,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7304
7374
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
7305
7375
|
|
|
7306
7376
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7307
|
-
:return: <Element 'para' at
|
|
7377
|
+
:return: <Element 'para' at 0xffc25f4d1b20>
|
|
7308
7378
|
"""
|
|
7309
7379
|
...
|
|
7310
7380
|
|
|
@@ -7542,7 +7612,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7542
7612
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
7543
7613
|
|
|
7544
7614
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7545
|
-
:return: <Element 'para' at
|
|
7615
|
+
:return: <Element 'para' at 0xffc25f3aa480>
|
|
7546
7616
|
"""
|
|
7547
7617
|
...
|
|
7548
7618
|
|
|
@@ -8529,6 +8599,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8529
8599
|
"""
|
|
8530
8600
|
...
|
|
8531
8601
|
|
|
8602
|
+
def get_p_support_CoM(
|
|
8603
|
+
self,
|
|
8604
|
+
t: float, # double
|
|
8605
|
+
) -> numpy.ndarray:
|
|
8606
|
+
...
|
|
8607
|
+
|
|
8608
|
+
def get_p_support_DCM(
|
|
8609
|
+
self,
|
|
8610
|
+
t: float, # double
|
|
8611
|
+
omega: float, # double
|
|
8612
|
+
) -> numpy.ndarray:
|
|
8613
|
+
...
|
|
8614
|
+
|
|
8532
8615
|
def get_p_world_CoM(
|
|
8533
8616
|
self,
|
|
8534
8617
|
t: float, # double
|
|
@@ -8601,6 +8684,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8601
8684
|
) -> list[Support]:
|
|
8602
8685
|
...
|
|
8603
8686
|
|
|
8687
|
+
def get_v_support_CoM(
|
|
8688
|
+
self,
|
|
8689
|
+
t: float, # double
|
|
8690
|
+
) -> numpy.ndarray:
|
|
8691
|
+
...
|
|
8692
|
+
|
|
8604
8693
|
def get_v_world_CoM(
|
|
8605
8694
|
self,
|
|
8606
8695
|
t: float, # double
|
|
@@ -8812,6 +8901,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
8812
8901
|
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
8813
8902
|
"""
|
|
8814
8903
|
|
|
8904
|
+
stop_end_support_weight: any
|
|
8905
|
+
"""
|
|
8906
|
+
|
|
8907
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
8908
|
+
|
|
8909
|
+
C++ signature :
|
|
8910
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
8911
|
+
"""
|
|
8912
|
+
|
|
8815
8913
|
def support_default_duration(
|
|
8816
8914
|
self,
|
|
8817
8915
|
support: Support, # placo::humanoid::FootstepsPlanner::Support
|
|
@@ -8828,7 +8926,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
8828
8926
|
self,
|
|
8829
8927
|
t: float, # double
|
|
8830
8928
|
supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
|
|
8831
|
-
world_target_zmp: numpy.ndarray, # Eigen::Vector2d
|
|
8832
8929
|
world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
|
|
8833
8930
|
) -> list[Support]:
|
|
8834
8931
|
"""
|
|
@@ -8836,11 +8933,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
8836
8933
|
|
|
8837
8934
|
:param float t: Current time
|
|
8838
8935
|
:param list[Support] supports: Planned supports
|
|
8839
|
-
:param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
|
|
8840
8936
|
:param numpy.ndarray world_measured_dcm: Measured DCM in world frame
|
|
8841
8937
|
"""
|
|
8842
8938
|
...
|
|
8843
8939
|
|
|
8940
|
+
zmp_in_support_weight: any
|
|
8941
|
+
"""
|
|
8942
|
+
|
|
8943
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
8944
|
+
|
|
8945
|
+
C++ signature :
|
|
8946
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
8947
|
+
"""
|
|
8948
|
+
|
|
8844
8949
|
|
|
8845
8950
|
class WalkTasks:
|
|
8846
8951
|
def __init__(
|
|
@@ -9099,6 +9204,57 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9099
9204
|
...
|
|
9100
9205
|
|
|
9101
9206
|
|
|
9207
|
+
class YawConstraint:
|
|
9208
|
+
def __init__(
|
|
9209
|
+
self,
|
|
9210
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9211
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9212
|
+
angle_max: float, # double
|
|
9213
|
+
) -> any:
|
|
9214
|
+
"""
|
|
9215
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9216
|
+
"""
|
|
9217
|
+
...
|
|
9218
|
+
|
|
9219
|
+
angle_max: any
|
|
9220
|
+
"""
|
|
9221
|
+
|
|
9222
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9223
|
+
|
|
9224
|
+
C++ signature :
|
|
9225
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9226
|
+
"""
|
|
9227
|
+
|
|
9228
|
+
def configure(
|
|
9229
|
+
self,
|
|
9230
|
+
name: str, # std::string
|
|
9231
|
+
priority: str = "soft", # std::string
|
|
9232
|
+
weight: float = 1.0, # double
|
|
9233
|
+
) -> None:
|
|
9234
|
+
"""
|
|
9235
|
+
Configures the object.
|
|
9236
|
+
|
|
9237
|
+
:param str name: task name
|
|
9238
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9239
|
+
:param float weight: task weight
|
|
9240
|
+
"""
|
|
9241
|
+
...
|
|
9242
|
+
|
|
9243
|
+
name: any
|
|
9244
|
+
"""
|
|
9245
|
+
|
|
9246
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9247
|
+
|
|
9248
|
+
C++ signature :
|
|
9249
|
+
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9250
|
+
"""
|
|
9251
|
+
|
|
9252
|
+
priority: str
|
|
9253
|
+
"""
|
|
9254
|
+
Priority [str]
|
|
9255
|
+
"""
|
|
9256
|
+
|
|
9257
|
+
|
|
9102
9258
|
class boost_type_index:
|
|
9103
9259
|
def __init__(
|
|
9104
9260
|
) -> any:
|
|
@@ -9327,4 +9483,4 @@ def wrap_angle(
|
|
|
9327
9483
|
...
|
|
9328
9484
|
|
|
9329
9485
|
|
|
9330
|
-
__groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
|
|
9486
|
+
__groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask', 'YawConstraint'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.so,sha256=oR1I7AcKKp9B25HrwLomxfhUlJRJnms00VlV5dMTke8,1709568
|
|
2
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=R3b0_QsvyzTfdKiYH5IAN1u4MTHrZiZUlsBXLJo6w4k,196360
|
|
3
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=tgPXoA0zAYC_LqdGE2qhJp76K06JaP02xm1yDFMmLms,8821320
|
|
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.1.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.1.dist-info/METADATA,sha256=Kd24ONb11iqnbdUPph0Tw0DAdzgjpPGLeBh3Pw8sW5M,2620
|
|
10
|
+
placo-0.9.1.dist-info/WHEEL,sha256=vUz_L4RoT4ywPXSZmvCo12N3bCrHpcjUe1J1qrvdTu8,116
|
|
11
|
+
placo-0.9.1.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.1.dist-info/RECORD,,
|
placo-0.8.10.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.so,sha256=bu-ItpIwVKtUhfUoVZZ0-M83f_G7IBJF-B_In8M4Yb4,1706616
|
|
2
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=9QcUIOxPUUcpaSzcrYDB_DNwwn5K4OFpF55U4EwEeqo,192932
|
|
3
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=ux5a5D8CVwP43-Hrexptn6XsVfteEmS0RURqiWaNtAc,8720856
|
|
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.8.10.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.8.10.dist-info/METADATA,sha256=1LTdooqrP_YI0_MPBR5qsfSucytLvTeG84QY0MxVZ_A,2621
|
|
10
|
-
placo-0.8.10.dist-info/WHEEL,sha256=vUz_L4RoT4ywPXSZmvCo12N3bCrHpcjUe1J1qrvdTu8,116
|
|
11
|
-
placo-0.8.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.8.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|