placo 0.8.10__0-cp310-cp310-macosx_10_9_x86_64.whl → 0.9.1__0-cp310-cp310-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.10/site-packages/placo.pyi +215 -39
- 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
|
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)
|
|
@@ -1183,6 +1185,65 @@ None( (placo.Distance)arg1) -> object :
|
|
|
1183
1185
|
"""
|
|
1184
1186
|
|
|
1185
1187
|
|
|
1188
|
+
class DistanceConstraint:
|
|
1189
|
+
def __init__(
|
|
1190
|
+
self,
|
|
1191
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
1192
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
1193
|
+
distance_max: float, # double
|
|
1194
|
+
) -> any:
|
|
1195
|
+
"""
|
|
1196
|
+
Constraints the distance betweek two points in the robot.
|
|
1197
|
+
|
|
1198
|
+
:param any frame_a:
|
|
1199
|
+
|
|
1200
|
+
:param any frame_b:
|
|
1201
|
+
|
|
1202
|
+
:param float distance_max:
|
|
1203
|
+
"""
|
|
1204
|
+
...
|
|
1205
|
+
|
|
1206
|
+
def configure(
|
|
1207
|
+
self,
|
|
1208
|
+
name: str, # std::string
|
|
1209
|
+
priority: str = "soft", # std::string
|
|
1210
|
+
weight: float = 1.0, # double
|
|
1211
|
+
) -> None:
|
|
1212
|
+
"""
|
|
1213
|
+
Configures the object.
|
|
1214
|
+
|
|
1215
|
+
:param str name: task name
|
|
1216
|
+
|
|
1217
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
1218
|
+
|
|
1219
|
+
:param float weight: task weight
|
|
1220
|
+
"""
|
|
1221
|
+
...
|
|
1222
|
+
|
|
1223
|
+
distance_max: any
|
|
1224
|
+
"""
|
|
1225
|
+
|
|
1226
|
+
None( (placo.DistanceConstraint)arg1) -> float :
|
|
1227
|
+
|
|
1228
|
+
C++ signature :
|
|
1229
|
+
double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
|
|
1230
|
+
"""
|
|
1231
|
+
|
|
1232
|
+
name: any
|
|
1233
|
+
"""
|
|
1234
|
+
|
|
1235
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
1236
|
+
|
|
1237
|
+
C++ signature :
|
|
1238
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1239
|
+
"""
|
|
1240
|
+
|
|
1241
|
+
priority: str
|
|
1242
|
+
"""
|
|
1243
|
+
Priority [str]
|
|
1244
|
+
"""
|
|
1245
|
+
|
|
1246
|
+
|
|
1186
1247
|
class DistanceTask:
|
|
1187
1248
|
A: any
|
|
1188
1249
|
"""
|
|
@@ -4177,26 +4238,14 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4177
4238
|
def dcm(
|
|
4178
4239
|
self,
|
|
4179
4240
|
omega: float, # double
|
|
4241
|
+
com_velocity: numpy.ndarray, # Eigen::Vector2d
|
|
4180
4242
|
) -> numpy.ndarray:
|
|
4181
4243
|
"""
|
|
4182
4244
|
Compute the Divergent Component of Motion (DCM)
|
|
4183
4245
|
|
|
4184
|
-
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
def dcm_from_com_vel(
|
|
4189
|
-
arg1: HumanoidRobot,
|
|
4190
|
-
arg2: float,
|
|
4191
|
-
arg3: numpy.ndarray,
|
|
4192
|
-
) -> numpy.ndarray:
|
|
4193
|
-
...
|
|
4194
|
-
|
|
4195
|
-
def dcom_world(
|
|
4196
|
-
self,
|
|
4197
|
-
) -> numpy.ndarray:
|
|
4198
|
-
"""
|
|
4199
|
-
Gets the CoM velocity in the world.
|
|
4246
|
+
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4247
|
+
|
|
4248
|
+
:param numpy.ndarray com_velocity: CoM velocity
|
|
4200
4249
|
"""
|
|
4201
4250
|
...
|
|
4202
4251
|
|
|
@@ -4206,7 +4255,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4206
4255
|
"""
|
|
4207
4256
|
Computes all minimum distances between current collision pairs.
|
|
4208
4257
|
|
|
4209
|
-
:return: <Element 'para' at
|
|
4258
|
+
:return: <Element 'para' at 0x112f3e660>
|
|
4210
4259
|
"""
|
|
4211
4260
|
...
|
|
4212
4261
|
|
|
@@ -4239,7 +4288,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4239
4288
|
|
|
4240
4289
|
:param any frame: the frame for which we want the jacobian
|
|
4241
4290
|
|
|
4242
|
-
:return: <Element 'para' at
|
|
4291
|
+
:return: <Element 'para' at 0x112f3f150>
|
|
4243
4292
|
"""
|
|
4244
4293
|
...
|
|
4245
4294
|
|
|
@@ -4253,7 +4302,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4253
4302
|
|
|
4254
4303
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4255
4304
|
|
|
4256
|
-
:return: <Element 'para' at
|
|
4305
|
+
:return: <Element 'para' at 0x112f33060>
|
|
4257
4306
|
"""
|
|
4258
4307
|
...
|
|
4259
4308
|
|
|
@@ -4565,7 +4614,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4565
4614
|
|
|
4566
4615
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4567
4616
|
|
|
4568
|
-
:return: <Element 'para' at
|
|
4617
|
+
:return: <Element 'para' at 0x112f3df30>
|
|
4569
4618
|
"""
|
|
4570
4619
|
...
|
|
4571
4620
|
|
|
@@ -4799,6 +4848,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4799
4848
|
"""
|
|
4800
4849
|
...
|
|
4801
4850
|
|
|
4851
|
+
def update_from_imu(
|
|
4852
|
+
self,
|
|
4853
|
+
R_world_trunk: numpy.ndarray, # Eigen::Matrix3d
|
|
4854
|
+
) -> None:
|
|
4855
|
+
"""
|
|
4856
|
+
Rotate the robot around its support.
|
|
4857
|
+
|
|
4858
|
+
:param numpy.ndarray R_world_trunk: Orientation of the trunk from the IMU
|
|
4859
|
+
"""
|
|
4860
|
+
...
|
|
4861
|
+
|
|
4802
4862
|
def update_kinematics(
|
|
4803
4863
|
self,
|
|
4804
4864
|
) -> None:
|
|
@@ -5383,6 +5443,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5383
5443
|
"""
|
|
5384
5444
|
...
|
|
5385
5445
|
|
|
5446
|
+
def add_distance_constraint(
|
|
5447
|
+
self,
|
|
5448
|
+
frame_a: str, # std::string
|
|
5449
|
+
frame_b: str, # std::string
|
|
5450
|
+
distance_max: float, # double
|
|
5451
|
+
) -> DistanceConstraint:
|
|
5452
|
+
"""
|
|
5453
|
+
Adds a distance constraint.
|
|
5454
|
+
|
|
5455
|
+
:param str frame_a: frame A
|
|
5456
|
+
|
|
5457
|
+
:param str frame_b: frame B
|
|
5458
|
+
|
|
5459
|
+
:param float distance_max: maximum distance between the two frames
|
|
5460
|
+
"""
|
|
5461
|
+
...
|
|
5462
|
+
|
|
5386
5463
|
def add_distance_task(
|
|
5387
5464
|
self,
|
|
5388
5465
|
frame_a: str, # std::string
|
|
@@ -5438,12 +5515,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5438
5515
|
|
|
5439
5516
|
def add_joints_task(
|
|
5440
5517
|
self,
|
|
5441
|
-
joints: dict[str, float], # std::map< std::string, double > &
|
|
5442
5518
|
) -> JointsTask:
|
|
5443
5519
|
"""
|
|
5444
5520
|
Adds joints task.
|
|
5445
|
-
|
|
5446
|
-
:param dict[str, float] joints: value for the joints
|
|
5447
5521
|
"""
|
|
5448
5522
|
...
|
|
5449
5523
|
|
|
@@ -5587,6 +5661,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5587
5661
|
"""
|
|
5588
5662
|
...
|
|
5589
5663
|
|
|
5664
|
+
def add_yaw_constraint(
|
|
5665
|
+
self,
|
|
5666
|
+
frame_a: str, # std::string
|
|
5667
|
+
frame_b: str, # std::string
|
|
5668
|
+
alpha_max: float, # double
|
|
5669
|
+
) -> YawConstraint:
|
|
5670
|
+
"""
|
|
5671
|
+
Adds a yaw constraint.
|
|
5672
|
+
|
|
5673
|
+
:param str frame_a: frame A
|
|
5674
|
+
|
|
5675
|
+
:param str frame_b: frame B
|
|
5676
|
+
|
|
5677
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5678
|
+
"""
|
|
5679
|
+
...
|
|
5680
|
+
|
|
5590
5681
|
def clear(
|
|
5591
5682
|
self,
|
|
5592
5683
|
) -> None:
|
|
@@ -7455,21 +7546,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7455
7546
|
"""
|
|
7456
7547
|
...
|
|
7457
7548
|
|
|
7458
|
-
def dcom_world(
|
|
7459
|
-
self,
|
|
7460
|
-
) -> numpy.ndarray:
|
|
7461
|
-
"""
|
|
7462
|
-
Gets the CoM velocity in the world.
|
|
7463
|
-
"""
|
|
7464
|
-
...
|
|
7465
|
-
|
|
7466
7549
|
def distances(
|
|
7467
7550
|
self,
|
|
7468
7551
|
) -> list[Distance]:
|
|
7469
7552
|
"""
|
|
7470
7553
|
Computes all minimum distances between current collision pairs.
|
|
7471
7554
|
|
|
7472
|
-
:return: <Element 'para' at
|
|
7555
|
+
:return: <Element 'para' at 0x111e6fe70>
|
|
7473
7556
|
"""
|
|
7474
7557
|
...
|
|
7475
7558
|
|
|
@@ -7483,7 +7566,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7483
7566
|
|
|
7484
7567
|
:param any frame: the frame for which we want the jacobian
|
|
7485
7568
|
|
|
7486
|
-
:return: <Element 'para' at
|
|
7569
|
+
:return: <Element 'para' at 0x111e789a0>
|
|
7487
7570
|
"""
|
|
7488
7571
|
...
|
|
7489
7572
|
|
|
@@ -7497,7 +7580,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7497
7580
|
|
|
7498
7581
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7499
7582
|
|
|
7500
|
-
:return: <Element 'para' at
|
|
7583
|
+
:return: <Element 'para' at 0x111e7a390>
|
|
7501
7584
|
"""
|
|
7502
7585
|
...
|
|
7503
7586
|
|
|
@@ -7738,7 +7821,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7738
7821
|
|
|
7739
7822
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7740
7823
|
|
|
7741
|
-
:return: <Element 'para' at
|
|
7824
|
+
:return: <Element 'para' at 0x111e6f740>
|
|
7742
7825
|
"""
|
|
7743
7826
|
...
|
|
7744
7827
|
|
|
@@ -8741,6 +8824,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8741
8824
|
"""
|
|
8742
8825
|
...
|
|
8743
8826
|
|
|
8827
|
+
def get_p_support_CoM(
|
|
8828
|
+
self,
|
|
8829
|
+
t: float, # double
|
|
8830
|
+
) -> numpy.ndarray:
|
|
8831
|
+
...
|
|
8832
|
+
|
|
8833
|
+
def get_p_support_DCM(
|
|
8834
|
+
self,
|
|
8835
|
+
t: float, # double
|
|
8836
|
+
omega: float, # double
|
|
8837
|
+
) -> numpy.ndarray:
|
|
8838
|
+
...
|
|
8839
|
+
|
|
8744
8840
|
def get_p_world_CoM(
|
|
8745
8841
|
self,
|
|
8746
8842
|
t: float, # double
|
|
@@ -8813,6 +8909,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8813
8909
|
) -> list[Support]:
|
|
8814
8910
|
...
|
|
8815
8911
|
|
|
8912
|
+
def get_v_support_CoM(
|
|
8913
|
+
self,
|
|
8914
|
+
t: float, # double
|
|
8915
|
+
) -> numpy.ndarray:
|
|
8916
|
+
...
|
|
8917
|
+
|
|
8816
8918
|
def get_v_world_CoM(
|
|
8817
8919
|
self,
|
|
8818
8920
|
t: float, # double
|
|
@@ -9029,6 +9131,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9029
9131
|
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9030
9132
|
"""
|
|
9031
9133
|
|
|
9134
|
+
stop_end_support_weight: any
|
|
9135
|
+
"""
|
|
9136
|
+
|
|
9137
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
9138
|
+
|
|
9139
|
+
C++ signature :
|
|
9140
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9141
|
+
"""
|
|
9142
|
+
|
|
9032
9143
|
def support_default_duration(
|
|
9033
9144
|
self,
|
|
9034
9145
|
support: Support, # placo::humanoid::FootstepsPlanner::Support
|
|
@@ -9045,7 +9156,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9045
9156
|
self,
|
|
9046
9157
|
t: float, # double
|
|
9047
9158
|
supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
|
|
9048
|
-
world_target_zmp: numpy.ndarray, # Eigen::Vector2d
|
|
9049
9159
|
world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
|
|
9050
9160
|
) -> list[Support]:
|
|
9051
9161
|
"""
|
|
@@ -9055,12 +9165,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9055
9165
|
|
|
9056
9166
|
:param list[Support] supports: Planned supports
|
|
9057
9167
|
|
|
9058
|
-
:param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
|
|
9059
|
-
|
|
9060
9168
|
:param numpy.ndarray world_measured_dcm: Measured DCM in world frame
|
|
9061
9169
|
"""
|
|
9062
9170
|
...
|
|
9063
9171
|
|
|
9172
|
+
zmp_in_support_weight: any
|
|
9173
|
+
"""
|
|
9174
|
+
|
|
9175
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
9176
|
+
|
|
9177
|
+
C++ signature :
|
|
9178
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9179
|
+
"""
|
|
9180
|
+
|
|
9064
9181
|
|
|
9065
9182
|
class WalkTasks:
|
|
9066
9183
|
def __init__(
|
|
@@ -9321,6 +9438,65 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9321
9438
|
...
|
|
9322
9439
|
|
|
9323
9440
|
|
|
9441
|
+
class YawConstraint:
|
|
9442
|
+
def __init__(
|
|
9443
|
+
self,
|
|
9444
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9445
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9446
|
+
angle_max: float, # double
|
|
9447
|
+
) -> any:
|
|
9448
|
+
"""
|
|
9449
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9450
|
+
|
|
9451
|
+
:param any frame_a:
|
|
9452
|
+
|
|
9453
|
+
:param any frame_b:
|
|
9454
|
+
|
|
9455
|
+
:param float angle_max:
|
|
9456
|
+
"""
|
|
9457
|
+
...
|
|
9458
|
+
|
|
9459
|
+
angle_max: any
|
|
9460
|
+
"""
|
|
9461
|
+
|
|
9462
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9463
|
+
|
|
9464
|
+
C++ signature :
|
|
9465
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9466
|
+
"""
|
|
9467
|
+
|
|
9468
|
+
def configure(
|
|
9469
|
+
self,
|
|
9470
|
+
name: str, # std::string
|
|
9471
|
+
priority: str = "soft", # std::string
|
|
9472
|
+
weight: float = 1.0, # double
|
|
9473
|
+
) -> None:
|
|
9474
|
+
"""
|
|
9475
|
+
Configures the object.
|
|
9476
|
+
|
|
9477
|
+
:param str name: task name
|
|
9478
|
+
|
|
9479
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9480
|
+
|
|
9481
|
+
:param float weight: task weight
|
|
9482
|
+
"""
|
|
9483
|
+
...
|
|
9484
|
+
|
|
9485
|
+
name: any
|
|
9486
|
+
"""
|
|
9487
|
+
|
|
9488
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9489
|
+
|
|
9490
|
+
C++ signature :
|
|
9491
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9492
|
+
"""
|
|
9493
|
+
|
|
9494
|
+
priority: str
|
|
9495
|
+
"""
|
|
9496
|
+
Priority [str]
|
|
9497
|
+
"""
|
|
9498
|
+
|
|
9499
|
+
|
|
9324
9500
|
class boost_type_index:
|
|
9325
9501
|
def __init__(
|
|
9326
9502
|
) -> any:
|
|
@@ -9553,4 +9729,4 @@ def wrap_angle(
|
|
|
9553
9729
|
...
|
|
9554
9730
|
|
|
9555
9731
|
|
|
9556
|
-
__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']}
|
|
9732
|
+
__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.dylib,sha256=Uj_avnLxnZULraeNJ4tfBCPAZ0HEFL0HZ72wN3bQmfI,1688656
|
|
2
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=7-sWZ8XuFI1GndcfNs_JZR9-zx63m0kKoLpQUfi2FSM,198353
|
|
3
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=udnwUBo0qA6T2gS3DSPaLX-QCwbGXMuoHFDD07G2ZIg,7066160
|
|
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=APmVEh1L_55UCtY5TQhEj2dpYCuDyHQ2_u87TOsUIRk,112
|
|
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.dylib,sha256=qQRl1MpNoriDONx1z4CIUXt2-iTdcaSeBHauuBYrPR4,1669120
|
|
2
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=l7ojJ4y7PDQgXebYQ8RdHx8jYel4lWAJCsQWfU75i2Y,194686
|
|
3
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=5knzFgHMeRqf9Y_qp8JgES2bDYOqcsIHKZhl4NWQsPA,6991808
|
|
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=APmVEh1L_55UCtY5TQhEj2dpYCuDyHQ2_u87TOsUIRk,112
|
|
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
|