placo 0.8.10__0-cp313-cp313-macosx_11_0_arm64.whl → 0.9.1__0-cp313-cp313-macosx_11_0_arm64.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.13/site-packages/placo.pyi +215 -39
- cmeel.prefix/lib/python3.13/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
|
"""
|
|
@@ -4181,26 +4242,14 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4181
4242
|
def dcm(
|
|
4182
4243
|
self,
|
|
4183
4244
|
omega: float, # double
|
|
4245
|
+
com_velocity: numpy.ndarray, # Eigen::Vector2d
|
|
4184
4246
|
) -> numpy.ndarray:
|
|
4185
4247
|
"""
|
|
4186
4248
|
Compute the Divergent Component of Motion (DCM)
|
|
4187
4249
|
|
|
4188
|
-
:param float omega: Natural frequency of the LIP (= sqrt(g/h))
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
def dcm_from_com_vel(
|
|
4193
|
-
arg1: HumanoidRobot,
|
|
4194
|
-
arg2: float,
|
|
4195
|
-
arg3: numpy.ndarray,
|
|
4196
|
-
) -> numpy.ndarray:
|
|
4197
|
-
...
|
|
4198
|
-
|
|
4199
|
-
def dcom_world(
|
|
4200
|
-
self,
|
|
4201
|
-
) -> numpy.ndarray:
|
|
4202
|
-
"""
|
|
4203
|
-
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
|
|
4204
4253
|
"""
|
|
4205
4254
|
...
|
|
4206
4255
|
|
|
@@ -4210,7 +4259,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4210
4259
|
"""
|
|
4211
4260
|
Computes all minimum distances between current collision pairs.
|
|
4212
4261
|
|
|
4213
|
-
:return: <Element 'para' at
|
|
4262
|
+
:return: <Element 'para' at 0x108174130>
|
|
4214
4263
|
"""
|
|
4215
4264
|
...
|
|
4216
4265
|
|
|
@@ -4243,7 +4292,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4243
4292
|
|
|
4244
4293
|
:param any frame: the frame for which we want the jacobian
|
|
4245
4294
|
|
|
4246
|
-
:return: <Element 'para' at
|
|
4295
|
+
:return: <Element 'para' at 0x1082117b0>
|
|
4247
4296
|
"""
|
|
4248
4297
|
...
|
|
4249
4298
|
|
|
@@ -4257,7 +4306,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4257
4306
|
|
|
4258
4307
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4259
4308
|
|
|
4260
|
-
:return: <Element 'para' at
|
|
4309
|
+
:return: <Element 'para' at 0x1082139c0>
|
|
4261
4310
|
"""
|
|
4262
4311
|
...
|
|
4263
4312
|
|
|
@@ -4569,7 +4618,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4569
4618
|
|
|
4570
4619
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4571
4620
|
|
|
4572
|
-
:return: <Element 'para' at
|
|
4621
|
+
:return: <Element 'para' at 0x108174f90>
|
|
4573
4622
|
"""
|
|
4574
4623
|
...
|
|
4575
4624
|
|
|
@@ -4803,6 +4852,17 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4803
4852
|
"""
|
|
4804
4853
|
...
|
|
4805
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
|
+
|
|
4806
4866
|
def update_kinematics(
|
|
4807
4867
|
self,
|
|
4808
4868
|
) -> None:
|
|
@@ -5391,6 +5451,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5391
5451
|
"""
|
|
5392
5452
|
...
|
|
5393
5453
|
|
|
5454
|
+
def add_distance_constraint(
|
|
5455
|
+
self,
|
|
5456
|
+
frame_a: str, # std::string
|
|
5457
|
+
frame_b: str, # std::string
|
|
5458
|
+
distance_max: float, # double
|
|
5459
|
+
) -> DistanceConstraint:
|
|
5460
|
+
"""
|
|
5461
|
+
Adds a distance constraint.
|
|
5462
|
+
|
|
5463
|
+
:param str frame_a: frame A
|
|
5464
|
+
|
|
5465
|
+
:param str frame_b: frame B
|
|
5466
|
+
|
|
5467
|
+
:param float distance_max: maximum distance between the two frames
|
|
5468
|
+
"""
|
|
5469
|
+
...
|
|
5470
|
+
|
|
5394
5471
|
def add_distance_task(
|
|
5395
5472
|
self,
|
|
5396
5473
|
frame_a: str, # std::string
|
|
@@ -5446,12 +5523,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5446
5523
|
|
|
5447
5524
|
def add_joints_task(
|
|
5448
5525
|
self,
|
|
5449
|
-
joints: dict[str, float], # std::map< std::string, double > &
|
|
5450
5526
|
) -> JointsTask:
|
|
5451
5527
|
"""
|
|
5452
5528
|
Adds joints task.
|
|
5453
|
-
|
|
5454
|
-
:param dict[str, float] joints: value for the joints
|
|
5455
5529
|
"""
|
|
5456
5530
|
...
|
|
5457
5531
|
|
|
@@ -5595,6 +5669,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5595
5669
|
"""
|
|
5596
5670
|
...
|
|
5597
5671
|
|
|
5672
|
+
def add_yaw_constraint(
|
|
5673
|
+
self,
|
|
5674
|
+
frame_a: str, # std::string
|
|
5675
|
+
frame_b: str, # std::string
|
|
5676
|
+
alpha_max: float, # double
|
|
5677
|
+
) -> YawConstraint:
|
|
5678
|
+
"""
|
|
5679
|
+
Adds a yaw constraint.
|
|
5680
|
+
|
|
5681
|
+
:param str frame_a: frame A
|
|
5682
|
+
|
|
5683
|
+
:param str frame_b: frame B
|
|
5684
|
+
|
|
5685
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5686
|
+
"""
|
|
5687
|
+
...
|
|
5688
|
+
|
|
5598
5689
|
def clear(
|
|
5599
5690
|
self,
|
|
5600
5691
|
) -> None:
|
|
@@ -7463,21 +7554,13 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7463
7554
|
"""
|
|
7464
7555
|
...
|
|
7465
7556
|
|
|
7466
|
-
def dcom_world(
|
|
7467
|
-
self,
|
|
7468
|
-
) -> numpy.ndarray:
|
|
7469
|
-
"""
|
|
7470
|
-
Gets the CoM velocity in the world.
|
|
7471
|
-
"""
|
|
7472
|
-
...
|
|
7473
|
-
|
|
7474
7557
|
def distances(
|
|
7475
7558
|
self,
|
|
7476
7559
|
) -> list[Distance]:
|
|
7477
7560
|
"""
|
|
7478
7561
|
Computes all minimum distances between current collision pairs.
|
|
7479
7562
|
|
|
7480
|
-
:return: <Element 'para' at
|
|
7563
|
+
:return: <Element 'para' at 0x1081582c0>
|
|
7481
7564
|
"""
|
|
7482
7565
|
...
|
|
7483
7566
|
|
|
@@ -7491,7 +7574,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7491
7574
|
|
|
7492
7575
|
:param any frame: the frame for which we want the jacobian
|
|
7493
7576
|
|
|
7494
|
-
:return: <Element 'para' at
|
|
7577
|
+
:return: <Element 'para' at 0x108158d60>
|
|
7495
7578
|
"""
|
|
7496
7579
|
...
|
|
7497
7580
|
|
|
@@ -7505,7 +7588,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7505
7588
|
|
|
7506
7589
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7507
7590
|
|
|
7508
|
-
:return: <Element 'para' at
|
|
7591
|
+
:return: <Element 'para' at 0x10815a4d0>
|
|
7509
7592
|
"""
|
|
7510
7593
|
...
|
|
7511
7594
|
|
|
@@ -7746,7 +7829,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7746
7829
|
|
|
7747
7830
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7748
7831
|
|
|
7749
|
-
:return: <Element 'para' at
|
|
7832
|
+
:return: <Element 'para' at 0x10814ba60>
|
|
7750
7833
|
"""
|
|
7751
7834
|
...
|
|
7752
7835
|
|
|
@@ -8749,6 +8832,19 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8749
8832
|
"""
|
|
8750
8833
|
...
|
|
8751
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
|
+
|
|
8752
8848
|
def get_p_world_CoM(
|
|
8753
8849
|
self,
|
|
8754
8850
|
t: float, # double
|
|
@@ -8821,6 +8917,12 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8821
8917
|
) -> list[Support]:
|
|
8822
8918
|
...
|
|
8823
8919
|
|
|
8920
|
+
def get_v_support_CoM(
|
|
8921
|
+
self,
|
|
8922
|
+
t: float, # double
|
|
8923
|
+
) -> numpy.ndarray:
|
|
8924
|
+
...
|
|
8925
|
+
|
|
8824
8926
|
def get_v_world_CoM(
|
|
8825
8927
|
self,
|
|
8826
8928
|
t: float, # double
|
|
@@ -9037,6 +9139,15 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9037
9139
|
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9038
9140
|
"""
|
|
9039
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
|
+
|
|
9040
9151
|
def support_default_duration(
|
|
9041
9152
|
self,
|
|
9042
9153
|
support: Support, # placo::humanoid::FootstepsPlanner::Support
|
|
@@ -9053,7 +9164,6 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9053
9164
|
self,
|
|
9054
9165
|
t: float, # double
|
|
9055
9166
|
supports: list[Support], # std::vector<placo::humanoid::FootstepsPlanner::Support>
|
|
9056
|
-
world_target_zmp: numpy.ndarray, # Eigen::Vector2d
|
|
9057
9167
|
world_measured_dcm: numpy.ndarray, # Eigen::Vector2d
|
|
9058
9168
|
) -> list[Support]:
|
|
9059
9169
|
"""
|
|
@@ -9063,12 +9173,19 @@ None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
|
9063
9173
|
|
|
9064
9174
|
:param list[Support] supports: Planned supports
|
|
9065
9175
|
|
|
9066
|
-
:param numpy.ndarray world_target_zmp: Target ZMP for the flying foot in world frame
|
|
9067
|
-
|
|
9068
9176
|
:param numpy.ndarray world_measured_dcm: Measured DCM in world frame
|
|
9069
9177
|
"""
|
|
9070
9178
|
...
|
|
9071
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
|
+
|
|
9072
9189
|
|
|
9073
9190
|
class WalkTasks:
|
|
9074
9191
|
def __init__(
|
|
@@ -9329,6 +9446,65 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9329
9446
|
...
|
|
9330
9447
|
|
|
9331
9448
|
|
|
9449
|
+
class YawConstraint:
|
|
9450
|
+
def __init__(
|
|
9451
|
+
self,
|
|
9452
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9453
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9454
|
+
angle_max: float, # double
|
|
9455
|
+
) -> any:
|
|
9456
|
+
"""
|
|
9457
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9458
|
+
|
|
9459
|
+
:param any frame_a:
|
|
9460
|
+
|
|
9461
|
+
:param any frame_b:
|
|
9462
|
+
|
|
9463
|
+
:param float angle_max:
|
|
9464
|
+
"""
|
|
9465
|
+
...
|
|
9466
|
+
|
|
9467
|
+
angle_max: any
|
|
9468
|
+
"""
|
|
9469
|
+
|
|
9470
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9471
|
+
|
|
9472
|
+
C++ signature :
|
|
9473
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9474
|
+
"""
|
|
9475
|
+
|
|
9476
|
+
def configure(
|
|
9477
|
+
self,
|
|
9478
|
+
name: str, # std::string
|
|
9479
|
+
priority: str = "soft", # std::string
|
|
9480
|
+
weight: float = 1.0, # double
|
|
9481
|
+
) -> None:
|
|
9482
|
+
"""
|
|
9483
|
+
Configures the object.
|
|
9484
|
+
|
|
9485
|
+
:param str name: task name
|
|
9486
|
+
|
|
9487
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9488
|
+
|
|
9489
|
+
:param float weight: task weight
|
|
9490
|
+
"""
|
|
9491
|
+
...
|
|
9492
|
+
|
|
9493
|
+
name: any
|
|
9494
|
+
"""
|
|
9495
|
+
|
|
9496
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9497
|
+
|
|
9498
|
+
C++ signature :
|
|
9499
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9500
|
+
"""
|
|
9501
|
+
|
|
9502
|
+
priority: str
|
|
9503
|
+
"""
|
|
9504
|
+
Priority [str]
|
|
9505
|
+
"""
|
|
9506
|
+
|
|
9507
|
+
|
|
9332
9508
|
class boost_type_index:
|
|
9333
9509
|
def __init__(
|
|
9334
9510
|
) -> any:
|
|
@@ -9561,4 +9737,4 @@ def wrap_angle(
|
|
|
9561
9737
|
...
|
|
9562
9738
|
|
|
9563
9739
|
|
|
9564
|
-
__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']}
|
|
9740
|
+
__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=ua_3ojnbfgvGczjn8b2iyhzdq9TkmiOjGi2np0F0B60,1382288
|
|
2
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=lX3RyrPABxEfnKxH4dr1j6hf_o2oieixzgLfj9ZmKWs,198431
|
|
3
|
+
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=YZ_tmjKhZoH-_w_BFNrixCXmt9nAdRvtJiFjEygpHi4,6719448
|
|
4
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.13/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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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=jcYvPYI5CSPlx9niPyrf4xkGFL7V31vyILjOt__frhg,1379120
|
|
2
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.pyi,sha256=2npYr2bWJQ3Q21OdLnDrOQn030_D4pHc4-n4WbiRfiU,194764
|
|
3
|
-
cmeel.prefix/lib/python3.13/site-packages/placo.so,sha256=xul4oOOqyLyu_b1LpUtq4CHRKvXp0gLkELVyPlmSQNY,6650168
|
|
4
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.13/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.13/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=IWoAZqI87Rq-2ZoZusEVHAVYLTm9LfdBAzXxSj7HXiY,111
|
|
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
|