placo 0.8.10__0-cp312-cp312-manylinux_2_28_x86_64.whl → 0.9.1__0-cp312-cp312-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.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.12/site-packages/placo.pyi +194 -38
- cmeel.prefix/lib/python3.12/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
|
"""
|
|
@@ -4074,26 +4127,13 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4074
4127
|
def dcm(
|
|
4075
4128
|
self,
|
|
4076
4129
|
omega: float, # double
|
|
4130
|
+
com_velocity: numpy.ndarray, # Eigen::Vector2d
|
|
4077
4131
|
) -> numpy.ndarray:
|
|
4078
4132
|
"""
|
|
4079
4133
|
Compute the Divergent Component of Motion (DCM)
|
|
4080
4134
|
|
|
4081
|
-
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4082
|
-
|
|
4083
|
-
...
|
|
4084
|
-
|
|
4085
|
-
def dcm_from_com_vel(
|
|
4086
|
-
arg1: HumanoidRobot,
|
|
4087
|
-
arg2: float,
|
|
4088
|
-
arg3: numpy.ndarray,
|
|
4089
|
-
) -> numpy.ndarray:
|
|
4090
|
-
...
|
|
4091
|
-
|
|
4092
|
-
def dcom_world(
|
|
4093
|
-
self,
|
|
4094
|
-
) -> numpy.ndarray:
|
|
4095
|
-
"""
|
|
4096
|
-
Gets the CoM velocity in the world.
|
|
4135
|
+
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4136
|
+
:param numpy.ndarray com_velocity: CoM velocity
|
|
4097
4137
|
"""
|
|
4098
4138
|
...
|
|
4099
4139
|
|
|
@@ -4103,7 +4143,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4103
4143
|
"""
|
|
4104
4144
|
Computes all minimum distances between current collision pairs.
|
|
4105
4145
|
|
|
4106
|
-
:return: <Element 'para' at
|
|
4146
|
+
:return: <Element 'para' at 0x7fbe8672e890>
|
|
4107
4147
|
"""
|
|
4108
4148
|
...
|
|
4109
4149
|
|
|
@@ -4135,7 +4175,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4135
4175
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
4136
4176
|
|
|
4137
4177
|
:param any frame: the frame for which we want the jacobian
|
|
4138
|
-
:return: <Element 'para' at
|
|
4178
|
+
:return: <Element 'para' at 0x7fbe8672d4e0>
|
|
4139
4179
|
"""
|
|
4140
4180
|
...
|
|
4141
4181
|
|
|
@@ -4148,7 +4188,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4148
4188
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
4149
4189
|
|
|
4150
4190
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4151
|
-
:return: <Element 'para' at
|
|
4191
|
+
:return: <Element 'para' at 0x7fbe8662f9c0>
|
|
4152
4192
|
"""
|
|
4153
4193
|
...
|
|
4154
4194
|
|
|
@@ -4454,7 +4494,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4454
4494
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
4455
4495
|
|
|
4456
4496
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4457
|
-
:return: <Element 'para' at
|
|
4497
|
+
:return: <Element 'para' at 0x7fbe865e5ad0>
|
|
4458
4498
|
"""
|
|
4459
4499
|
...
|
|
4460
4500
|
|
|
@@ -4680,6 +4720,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4680
4720
|
"""
|
|
4681
4721
|
...
|
|
4682
4722
|
|
|
4723
|
+
def update_from_imu(
|
|
4724
|
+
self,
|
|
4725
|
+
R_world_trunk: numpy.ndarray, # Eigen::Matrix3d
|
|
4726
|
+
) -> None:
|
|
4727
|
+
"""
|
|
4728
|
+
Rotate the robot around its support.
|
|
4729
|
+
|
|
4730
|
+
:param numpy.ndarray R_world_trunk: Orientation of the trunk from the IMU
|
|
4731
|
+
"""
|
|
4732
|
+
...
|
|
4733
|
+
|
|
4683
4734
|
def update_kinematics(
|
|
4684
4735
|
self,
|
|
4685
4736
|
) -> None:
|
|
@@ -5246,6 +5297,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5246
5297
|
"""
|
|
5247
5298
|
...
|
|
5248
5299
|
|
|
5300
|
+
def add_distance_constraint(
|
|
5301
|
+
self,
|
|
5302
|
+
frame_a: str, # std::string
|
|
5303
|
+
frame_b: str, # std::string
|
|
5304
|
+
distance_max: float, # double
|
|
5305
|
+
) -> DistanceConstraint:
|
|
5306
|
+
"""
|
|
5307
|
+
Adds a distance constraint.
|
|
5308
|
+
|
|
5309
|
+
:param str frame_a: frame A
|
|
5310
|
+
:param str frame_b: frame B
|
|
5311
|
+
:param float distance_max: maximum distance between the two frames
|
|
5312
|
+
"""
|
|
5313
|
+
...
|
|
5314
|
+
|
|
5249
5315
|
def add_distance_task(
|
|
5250
5316
|
self,
|
|
5251
5317
|
frame_a: str, # std::string
|
|
@@ -5297,12 +5363,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5297
5363
|
|
|
5298
5364
|
def add_joints_task(
|
|
5299
5365
|
self,
|
|
5300
|
-
joints: dict[str, float], # std::map< std::string, double > &
|
|
5301
5366
|
) -> JointsTask:
|
|
5302
5367
|
"""
|
|
5303
5368
|
Adds joints task.
|
|
5304
|
-
|
|
5305
|
-
:param dict[str, float] joints: value for the joints
|
|
5306
5369
|
"""
|
|
5307
5370
|
...
|
|
5308
5371
|
|
|
@@ -5434,6 +5497,21 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5434
5497
|
"""
|
|
5435
5498
|
...
|
|
5436
5499
|
|
|
5500
|
+
def add_yaw_constraint(
|
|
5501
|
+
self,
|
|
5502
|
+
frame_a: str, # std::string
|
|
5503
|
+
frame_b: str, # std::string
|
|
5504
|
+
alpha_max: float, # double
|
|
5505
|
+
) -> YawConstraint:
|
|
5506
|
+
"""
|
|
5507
|
+
Adds a yaw constraint.
|
|
5508
|
+
|
|
5509
|
+
:param str frame_a: frame A
|
|
5510
|
+
:param str frame_b: frame B
|
|
5511
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5512
|
+
"""
|
|
5513
|
+
...
|
|
5514
|
+
|
|
5437
5515
|
def clear(
|
|
5438
5516
|
self,
|
|
5439
5517
|
) -> None:
|
|
@@ -7272,21 +7350,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7272
7350
|
"""
|
|
7273
7351
|
...
|
|
7274
7352
|
|
|
7275
|
-
def dcom_world(
|
|
7276
|
-
self,
|
|
7277
|
-
) -> numpy.ndarray:
|
|
7278
|
-
"""
|
|
7279
|
-
Gets the CoM velocity in the world.
|
|
7280
|
-
"""
|
|
7281
|
-
...
|
|
7282
|
-
|
|
7283
7353
|
def distances(
|
|
7284
7354
|
self,
|
|
7285
7355
|
) -> list[Distance]:
|
|
7286
7356
|
"""
|
|
7287
7357
|
Computes all minimum distances between current collision pairs.
|
|
7288
7358
|
|
|
7289
|
-
:return: <Element 'para' at
|
|
7359
|
+
:return: <Element 'para' at 0x7fbe8662c4a0>
|
|
7290
7360
|
"""
|
|
7291
7361
|
...
|
|
7292
7362
|
|
|
@@ -7299,7 +7369,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7299
7369
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
7300
7370
|
|
|
7301
7371
|
:param any frame: the frame for which we want the jacobian
|
|
7302
|
-
:return: <Element 'para' at
|
|
7372
|
+
:return: <Element 'para' at 0x7fbe8662ce50>
|
|
7303
7373
|
"""
|
|
7304
7374
|
...
|
|
7305
7375
|
|
|
@@ -7312,7 +7382,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7312
7382
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
7313
7383
|
|
|
7314
7384
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7315
|
-
:return: <Element 'para' at
|
|
7385
|
+
:return: <Element 'para' at 0x7fbe8660cc20>
|
|
7316
7386
|
"""
|
|
7317
7387
|
...
|
|
7318
7388
|
|
|
@@ -7550,7 +7620,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7550
7620
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
7551
7621
|
|
|
7552
7622
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7553
|
-
:return: <Element 'para' at
|
|
7623
|
+
:return: <Element 'para' at 0x7fbe8662f790>
|
|
7554
7624
|
"""
|
|
7555
7625
|
...
|
|
7556
7626
|
|
|
@@ -8537,6 +8607,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8537
8607
|
"""
|
|
8538
8608
|
...
|
|
8539
8609
|
|
|
8610
|
+
def get_p_support_CoM(
|
|
8611
|
+
self,
|
|
8612
|
+
t: float, # double
|
|
8613
|
+
) -> numpy.ndarray:
|
|
8614
|
+
...
|
|
8615
|
+
|
|
8616
|
+
def get_p_support_DCM(
|
|
8617
|
+
self,
|
|
8618
|
+
t: float, # double
|
|
8619
|
+
omega: float, # double
|
|
8620
|
+
) -> numpy.ndarray:
|
|
8621
|
+
...
|
|
8622
|
+
|
|
8540
8623
|
def get_p_world_CoM(
|
|
8541
8624
|
self,
|
|
8542
8625
|
t: float, # double
|
|
@@ -8609,6 +8692,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8609
8692
|
) -> list[Support]:
|
|
8610
8693
|
...
|
|
8611
8694
|
|
|
8695
|
+
def get_v_support_CoM(
|
|
8696
|
+
self,
|
|
8697
|
+
t: float, # double
|
|
8698
|
+
) -> numpy.ndarray:
|
|
8699
|
+
...
|
|
8700
|
+
|
|
8612
8701
|
def get_v_world_CoM(
|
|
8613
8702
|
self,
|
|
8614
8703
|
t: float, # double
|
|
@@ -8820,6 +8909,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
8820
8909
|
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
8821
8910
|
"""
|
|
8822
8911
|
|
|
8912
|
+
stop_end_support_weight: any
|
|
8913
|
+
"""
|
|
8914
|
+
|
|
8915
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
8916
|
+
|
|
8917
|
+
C++ signature :
|
|
8918
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
8919
|
+
"""
|
|
8920
|
+
|
|
8823
8921
|
def support_default_duration(
|
|
8824
8922
|
self,
|
|
8825
8923
|
support: Support, # placo::humanoid::FootstepsPlanner::Support
|
|
@@ -8836,7 +8934,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
8836
8934
|
self,
|
|
8837
8935
|
t: float, # double
|
|
8838
8936
|
supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
|
|
8839
|
-
world_target_zmp: numpy.ndarray, # Eigen::Vector2d
|
|
8840
8937
|
world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
|
|
8841
8938
|
) -> list[Support]:
|
|
8842
8939
|
"""
|
|
@@ -8844,11 +8941,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
8844
8941
|
|
|
8845
8942
|
:param float t: Current time
|
|
8846
8943
|
:param list[Support] supports: Planned supports
|
|
8847
|
-
:param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
|
|
8848
8944
|
:param numpy.ndarray world_measured_dcm: Measured DCM in world frame
|
|
8849
8945
|
"""
|
|
8850
8946
|
...
|
|
8851
8947
|
|
|
8948
|
+
zmp_in_support_weight: any
|
|
8949
|
+
"""
|
|
8950
|
+
|
|
8951
|
+
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
8952
|
+
|
|
8953
|
+
C++ signature :
|
|
8954
|
+
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
8955
|
+
"""
|
|
8956
|
+
|
|
8852
8957
|
|
|
8853
8958
|
class WalkTasks:
|
|
8854
8959
|
def __init__(
|
|
@@ -9107,6 +9212,57 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9107
9212
|
...
|
|
9108
9213
|
|
|
9109
9214
|
|
|
9215
|
+
class YawConstraint:
|
|
9216
|
+
def __init__(
|
|
9217
|
+
self,
|
|
9218
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9219
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9220
|
+
angle_max: float, # double
|
|
9221
|
+
) -> any:
|
|
9222
|
+
"""
|
|
9223
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9224
|
+
"""
|
|
9225
|
+
...
|
|
9226
|
+
|
|
9227
|
+
angle_max: any
|
|
9228
|
+
"""
|
|
9229
|
+
|
|
9230
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9231
|
+
|
|
9232
|
+
C++ signature :
|
|
9233
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9234
|
+
"""
|
|
9235
|
+
|
|
9236
|
+
def configure(
|
|
9237
|
+
self,
|
|
9238
|
+
name: str, # std::string
|
|
9239
|
+
priority: str = "soft", # std::string
|
|
9240
|
+
weight: float = 1.0, # double
|
|
9241
|
+
) -> None:
|
|
9242
|
+
"""
|
|
9243
|
+
Configures the object.
|
|
9244
|
+
|
|
9245
|
+
:param str name: task name
|
|
9246
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9247
|
+
:param float weight: task weight
|
|
9248
|
+
"""
|
|
9249
|
+
...
|
|
9250
|
+
|
|
9251
|
+
name: any
|
|
9252
|
+
"""
|
|
9253
|
+
|
|
9254
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9255
|
+
|
|
9256
|
+
C++ signature :
|
|
9257
|
+
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9258
|
+
"""
|
|
9259
|
+
|
|
9260
|
+
priority: str
|
|
9261
|
+
"""
|
|
9262
|
+
Priority [str]
|
|
9263
|
+
"""
|
|
9264
|
+
|
|
9265
|
+
|
|
9110
9266
|
class boost_type_index:
|
|
9111
9267
|
def __init__(
|
|
9112
9268
|
) -> any:
|
|
@@ -9335,4 +9491,4 @@ def wrap_angle(
|
|
|
9335
9491
|
...
|
|
9336
9492
|
|
|
9337
9493
|
|
|
9338
|
-
__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']}
|
|
9494
|
+
__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=AcHZWYSrNuUpJsOfM38Rzh0ziZS-4_tjjz_LLa0THw0,1985608
|
|
2
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=MwsVE5xJ6HLsL9kAHVgNf5qLXq2ML5dNaA1DG2qKQbo,196438
|
|
3
|
+
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=rVzQTxeVSkPc9vYaXhlhtNvdUHMBgMj6Tnr-29aDgA8,8408832
|
|
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.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=eXheUxpbFnMVV8zNFDEABgfUQTPiFjxEEzg6PDTNDzE,115
|
|
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=Is9nMaxPm8uaELgjU2S9baBj34gX2703ubY7u0yxhqE,1961960
|
|
2
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.pyi,sha256=yOpil5WXc6s4oCLEFGYGNfx-16bm3jpOie5LSELE0tY,193010
|
|
3
|
-
cmeel.prefix/lib/python3.12/site-packages/placo.so,sha256=uV47bYMVrN_j5IuaHbToO83dypp5EAROQhrye-vZWOM,8314352
|
|
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.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=eXheUxpbFnMVV8zNFDEABgfUQTPiFjxEEzg6PDTNDzE,115
|
|
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
|