placo 0.9.6__0-cp311-cp311-manylinux_2_28_aarch64.whl → 0.9.8__0-cp311-cp311-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.11/site-packages/placo.pyi +739 -2462
- cmeel.prefix/lib/python3.11/site-packages/placo.so +0 -0
- {placo-0.9.6.dist-info → placo-0.9.8.dist-info}/METADATA +2 -2
- placo-0.9.8.dist-info/RECORD +12 -0
- placo-0.9.6.dist-info/RECORD +0 -12
- {placo-0.9.6.dist-info → placo-0.9.8.dist-info}/WHEEL +0 -0
- {placo-0.9.6.dist-info → placo-0.9.8.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.6.dist-info → placo-0.9.8.dist-info}/top_level.txt +0 -0
|
@@ -121,13 +121,9 @@ class AvoidSelfCollisionsDynamicsConstraint:
|
|
|
121
121
|
"""
|
|
122
122
|
...
|
|
123
123
|
|
|
124
|
-
name:
|
|
124
|
+
name: str # std::string
|
|
125
125
|
"""
|
|
126
|
-
|
|
127
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
128
|
-
|
|
129
|
-
C++ signature :
|
|
130
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
126
|
+
Object name.
|
|
131
127
|
"""
|
|
132
128
|
|
|
133
129
|
priority: str
|
|
@@ -135,22 +131,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
135
131
|
Priority [str]
|
|
136
132
|
"""
|
|
137
133
|
|
|
138
|
-
self_collisions_margin:
|
|
134
|
+
self_collisions_margin: float # double
|
|
139
135
|
"""
|
|
140
|
-
|
|
141
|
-
None( (placo.AvoidSelfCollisionsDynamicsConstraint)arg1) -> float :
|
|
142
|
-
|
|
143
|
-
C++ signature :
|
|
144
|
-
double {lvalue} None(placo::dynamics::AvoidSelfCollisionsConstraint {lvalue})
|
|
136
|
+
Margin for self collisions [m].
|
|
145
137
|
"""
|
|
146
138
|
|
|
147
|
-
self_collisions_trigger:
|
|
139
|
+
self_collisions_trigger: float # double
|
|
148
140
|
"""
|
|
149
|
-
|
|
150
|
-
None( (placo.AvoidSelfCollisionsDynamicsConstraint)arg1) -> float :
|
|
151
|
-
|
|
152
|
-
C++ signature :
|
|
153
|
-
double {lvalue} None(placo::dynamics::AvoidSelfCollisionsConstraint {lvalue})
|
|
141
|
+
Distance that triggers the constraint [m].
|
|
154
142
|
"""
|
|
155
143
|
|
|
156
144
|
|
|
@@ -175,13 +163,9 @@ class AvoidSelfCollisionsKinematicsConstraint:
|
|
|
175
163
|
"""
|
|
176
164
|
...
|
|
177
165
|
|
|
178
|
-
name:
|
|
166
|
+
name: str # std::string
|
|
179
167
|
"""
|
|
180
|
-
|
|
181
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
182
|
-
|
|
183
|
-
C++ signature :
|
|
184
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
168
|
+
Object name.
|
|
185
169
|
"""
|
|
186
170
|
|
|
187
171
|
priority: str
|
|
@@ -189,33 +173,21 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
189
173
|
Priority [str]
|
|
190
174
|
"""
|
|
191
175
|
|
|
192
|
-
self_collisions_margin:
|
|
176
|
+
self_collisions_margin: float # double
|
|
193
177
|
"""
|
|
194
|
-
|
|
195
|
-
None( (placo.AvoidSelfCollisionsKinematicsConstraint)arg1) -> float :
|
|
196
|
-
|
|
197
|
-
C++ signature :
|
|
198
|
-
double {lvalue} None(placo::kinematics::AvoidSelfCollisionsConstraint {lvalue})
|
|
178
|
+
Margin for self collisions [m].
|
|
199
179
|
"""
|
|
200
180
|
|
|
201
|
-
self_collisions_trigger:
|
|
181
|
+
self_collisions_trigger: float # double
|
|
202
182
|
"""
|
|
203
|
-
|
|
204
|
-
None( (placo.AvoidSelfCollisionsKinematicsConstraint)arg1) -> float :
|
|
205
|
-
|
|
206
|
-
C++ signature :
|
|
207
|
-
double {lvalue} None(placo::kinematics::AvoidSelfCollisionsConstraint {lvalue})
|
|
183
|
+
Distance that triggers the constraint [m].
|
|
208
184
|
"""
|
|
209
185
|
|
|
210
186
|
|
|
211
187
|
class AxisAlignTask:
|
|
212
|
-
A:
|
|
188
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
213
189
|
"""
|
|
214
|
-
|
|
215
|
-
None( (placo.Task)arg1) -> object :
|
|
216
|
-
|
|
217
|
-
C++ signature :
|
|
218
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
190
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
219
191
|
"""
|
|
220
192
|
|
|
221
193
|
def __init__(
|
|
@@ -226,22 +198,14 @@ None( (placo.Task)arg1) -> object :
|
|
|
226
198
|
) -> any:
|
|
227
199
|
...
|
|
228
200
|
|
|
229
|
-
axis_frame:
|
|
201
|
+
axis_frame: numpy.ndarray # Eigen::Vector3d
|
|
230
202
|
"""
|
|
231
|
-
|
|
232
|
-
None( (placo.AxisAlignTask)arg1) -> numpy.ndarray :
|
|
233
|
-
|
|
234
|
-
C++ signature :
|
|
235
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> None(placo::kinematics::AxisAlignTask)
|
|
203
|
+
Axis in the frame.
|
|
236
204
|
"""
|
|
237
205
|
|
|
238
|
-
b:
|
|
206
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
239
207
|
"""
|
|
240
|
-
|
|
241
|
-
None( (placo.Task)arg1) -> object :
|
|
242
|
-
|
|
243
|
-
C++ signature :
|
|
244
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
208
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
245
209
|
"""
|
|
246
210
|
|
|
247
211
|
def configure(
|
|
@@ -275,22 +239,14 @@ None( (placo.Task)arg1) -> object :
|
|
|
275
239
|
"""
|
|
276
240
|
...
|
|
277
241
|
|
|
278
|
-
frame_index: any
|
|
242
|
+
frame_index: any # pinocchio::FrameIndex
|
|
279
243
|
"""
|
|
280
|
-
|
|
281
|
-
None( (placo.AxisAlignTask)arg1) -> int :
|
|
282
|
-
|
|
283
|
-
C++ signature :
|
|
284
|
-
unsigned long {lvalue} None(placo::kinematics::AxisAlignTask {lvalue})
|
|
244
|
+
Target frame.
|
|
285
245
|
"""
|
|
286
246
|
|
|
287
|
-
name:
|
|
247
|
+
name: str # std::string
|
|
288
248
|
"""
|
|
289
|
-
|
|
290
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
291
|
-
|
|
292
|
-
C++ signature :
|
|
293
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
249
|
+
Object name.
|
|
294
250
|
"""
|
|
295
251
|
|
|
296
252
|
priority: str
|
|
@@ -298,13 +254,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
298
254
|
Priority [str]
|
|
299
255
|
"""
|
|
300
256
|
|
|
301
|
-
targetAxis_world:
|
|
257
|
+
targetAxis_world: numpy.ndarray # Eigen::Vector3d
|
|
302
258
|
"""
|
|
303
|
-
|
|
304
|
-
None( (placo.AxisAlignTask)arg1) -> object :
|
|
305
|
-
|
|
306
|
-
C++ signature :
|
|
307
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::kinematics::AxisAlignTask {lvalue})
|
|
259
|
+
Target axis in the world.
|
|
308
260
|
"""
|
|
309
261
|
|
|
310
262
|
def update(
|
|
@@ -317,22 +269,14 @@ None( (placo.AxisAlignTask)arg1) -> object :
|
|
|
317
269
|
|
|
318
270
|
|
|
319
271
|
class AxisesMask:
|
|
320
|
-
R_custom_world:
|
|
272
|
+
R_custom_world: numpy.ndarray # Eigen::Matrix3d
|
|
321
273
|
"""
|
|
322
|
-
|
|
323
|
-
None( (placo.AxisesMask)arg1) -> object :
|
|
324
|
-
|
|
325
|
-
C++ signature :
|
|
326
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::tools::AxisesMask {lvalue})
|
|
274
|
+
Rotation from world to custom rotation (provided by the user)
|
|
327
275
|
"""
|
|
328
276
|
|
|
329
|
-
R_local_world:
|
|
277
|
+
R_local_world: numpy.ndarray # Eigen::Matrix3d
|
|
330
278
|
"""
|
|
331
|
-
|
|
332
|
-
None( (placo.AxisesMask)arg1) -> object :
|
|
333
|
-
|
|
334
|
-
C++ signature :
|
|
335
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::tools::AxisesMask {lvalue})
|
|
279
|
+
Rotation from world to local frame (provided by task)
|
|
336
280
|
"""
|
|
337
281
|
|
|
338
282
|
def __init__(
|
|
@@ -366,22 +310,14 @@ None( (placo.AxisesMask)arg1) -> object :
|
|
|
366
310
|
|
|
367
311
|
|
|
368
312
|
class CentroidalMomentumTask:
|
|
369
|
-
A:
|
|
313
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
370
314
|
"""
|
|
371
|
-
|
|
372
|
-
None( (placo.Task)arg1) -> object :
|
|
373
|
-
|
|
374
|
-
C++ signature :
|
|
375
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
315
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
376
316
|
"""
|
|
377
317
|
|
|
378
|
-
L_world:
|
|
318
|
+
L_world: numpy.ndarray # Eigen::Vector3d
|
|
379
319
|
"""
|
|
380
|
-
|
|
381
|
-
None( (placo.CentroidalMomentumTask)arg1) -> object :
|
|
382
|
-
|
|
383
|
-
C++ signature :
|
|
384
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::kinematics::CentroidalMomentumTask {lvalue})
|
|
320
|
+
Target centroidal angular momentum in the world.
|
|
385
321
|
"""
|
|
386
322
|
|
|
387
323
|
def __init__(
|
|
@@ -393,13 +329,9 @@ None( (placo.CentroidalMomentumTask)arg1) -> object :
|
|
|
393
329
|
"""
|
|
394
330
|
...
|
|
395
331
|
|
|
396
|
-
b:
|
|
332
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
397
333
|
"""
|
|
398
|
-
|
|
399
|
-
None( (placo.Task)arg1) -> object :
|
|
400
|
-
|
|
401
|
-
C++ signature :
|
|
402
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
334
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
403
335
|
"""
|
|
404
336
|
|
|
405
337
|
def configure(
|
|
@@ -433,22 +365,14 @@ None( (placo.Task)arg1) -> object :
|
|
|
433
365
|
"""
|
|
434
366
|
...
|
|
435
367
|
|
|
436
|
-
mask:
|
|
368
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
437
369
|
"""
|
|
438
|
-
|
|
439
|
-
None( (placo.CentroidalMomentumTask)arg1) -> placo.AxisesMask :
|
|
440
|
-
|
|
441
|
-
C++ signature :
|
|
442
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::CentroidalMomentumTask {lvalue})
|
|
370
|
+
Axises mask.
|
|
443
371
|
"""
|
|
444
372
|
|
|
445
|
-
name:
|
|
373
|
+
name: str # std::string
|
|
446
374
|
"""
|
|
447
|
-
|
|
448
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
449
|
-
|
|
450
|
-
C++ signature :
|
|
451
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
375
|
+
Object name.
|
|
452
376
|
"""
|
|
453
377
|
|
|
454
378
|
priority: str
|
|
@@ -493,49 +417,29 @@ class CoMPolygonConstraint:
|
|
|
493
417
|
"""
|
|
494
418
|
...
|
|
495
419
|
|
|
496
|
-
dcm:
|
|
420
|
+
dcm: bool # bool
|
|
497
421
|
"""
|
|
498
|
-
|
|
499
|
-
None( (placo.CoMPolygonConstraint)arg1) -> bool :
|
|
500
|
-
|
|
501
|
-
C++ signature :
|
|
502
|
-
bool {lvalue} None(placo::kinematics::CoMPolygonConstraint {lvalue})
|
|
422
|
+
If set to true, the DCM will be used instead of the CoM.
|
|
503
423
|
"""
|
|
504
424
|
|
|
505
|
-
margin:
|
|
425
|
+
margin: float # double
|
|
506
426
|
"""
|
|
507
|
-
|
|
508
|
-
None( (placo.CoMPolygonConstraint)arg1) -> float :
|
|
509
|
-
|
|
510
|
-
C++ signature :
|
|
511
|
-
double {lvalue} None(placo::kinematics::CoMPolygonConstraint {lvalue})
|
|
427
|
+
Margin for the polygon constraint (minimum distance between the CoM and the polygon)
|
|
512
428
|
"""
|
|
513
429
|
|
|
514
|
-
name:
|
|
430
|
+
name: str # std::string
|
|
515
431
|
"""
|
|
516
|
-
|
|
517
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
518
|
-
|
|
519
|
-
C++ signature :
|
|
520
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
432
|
+
Object name.
|
|
521
433
|
"""
|
|
522
434
|
|
|
523
|
-
omega:
|
|
435
|
+
omega: float # double
|
|
524
436
|
"""
|
|
525
|
-
|
|
526
|
-
None( (placo.CoMPolygonConstraint)arg1) -> float :
|
|
527
|
-
|
|
528
|
-
C++ signature :
|
|
529
|
-
double {lvalue} None(placo::kinematics::CoMPolygonConstraint {lvalue})
|
|
437
|
+
If DCM mode is enabled, the constraint will be applied on the DCM instead of the CoM with the following omega (sqrt(g / h))
|
|
530
438
|
"""
|
|
531
439
|
|
|
532
|
-
polygon:
|
|
440
|
+
polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
533
441
|
"""
|
|
534
|
-
|
|
535
|
-
None( (placo.CoMPolygonConstraint)arg1) -> placo.vector_Vector2d :
|
|
536
|
-
|
|
537
|
-
C++ signature :
|
|
538
|
-
std::vector<Eigen::Matrix<double, 2, 1, 0, 2, 1>, std::allocator<Eigen::Matrix<double, 2, 1, 0, 2, 1> > > {lvalue} None(placo::kinematics::CoMPolygonConstraint {lvalue})
|
|
442
|
+
Clockwise polygon.
|
|
539
443
|
"""
|
|
540
444
|
|
|
541
445
|
priority: str
|
|
@@ -545,13 +449,9 @@ None( (placo.CoMPolygonConstraint)arg1) -> placo.vector_Vector2d :
|
|
|
545
449
|
|
|
546
450
|
|
|
547
451
|
class CoMTask:
|
|
548
|
-
A:
|
|
452
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
549
453
|
"""
|
|
550
|
-
|
|
551
|
-
None( (placo.Task)arg1) -> object :
|
|
552
|
-
|
|
553
|
-
C++ signature :
|
|
554
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
454
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
555
455
|
"""
|
|
556
456
|
|
|
557
457
|
def __init__(
|
|
@@ -563,13 +463,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
563
463
|
"""
|
|
564
464
|
...
|
|
565
465
|
|
|
566
|
-
b:
|
|
466
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
567
467
|
"""
|
|
568
|
-
|
|
569
|
-
None( (placo.Task)arg1) -> object :
|
|
570
|
-
|
|
571
|
-
C++ signature :
|
|
572
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
468
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
573
469
|
"""
|
|
574
470
|
|
|
575
471
|
def configure(
|
|
@@ -603,22 +499,14 @@ None( (placo.Task)arg1) -> object :
|
|
|
603
499
|
"""
|
|
604
500
|
...
|
|
605
501
|
|
|
606
|
-
mask:
|
|
502
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
607
503
|
"""
|
|
608
|
-
|
|
609
|
-
None( (placo.CoMTask)arg1) -> placo.AxisesMask :
|
|
610
|
-
|
|
611
|
-
C++ signature :
|
|
612
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::CoMTask {lvalue})
|
|
504
|
+
Mask.
|
|
613
505
|
"""
|
|
614
506
|
|
|
615
|
-
name:
|
|
507
|
+
name: str # std::string
|
|
616
508
|
"""
|
|
617
|
-
|
|
618
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
619
|
-
|
|
620
|
-
C++ signature :
|
|
621
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
509
|
+
Object name.
|
|
622
510
|
"""
|
|
623
511
|
|
|
624
512
|
priority: str
|
|
@@ -626,13 +514,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
626
514
|
Priority [str]
|
|
627
515
|
"""
|
|
628
516
|
|
|
629
|
-
target_world:
|
|
517
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
630
518
|
"""
|
|
631
|
-
|
|
632
|
-
None( (placo.CoMTask)arg1) -> numpy.ndarray :
|
|
633
|
-
|
|
634
|
-
C++ signature :
|
|
635
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> None(placo::kinematics::CoMTask)
|
|
519
|
+
Target for the CoM in the world.
|
|
636
520
|
"""
|
|
637
521
|
|
|
638
522
|
def update(
|
|
@@ -650,22 +534,14 @@ class Collision:
|
|
|
650
534
|
) -> None:
|
|
651
535
|
...
|
|
652
536
|
|
|
653
|
-
bodyA:
|
|
537
|
+
bodyA: str # std::string
|
|
654
538
|
"""
|
|
655
|
-
|
|
656
|
-
None( (placo.Collision)arg1) -> str :
|
|
657
|
-
|
|
658
|
-
C++ signature :
|
|
659
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::model::RobotWrapper::Collision {lvalue})
|
|
539
|
+
Name of the body A.
|
|
660
540
|
"""
|
|
661
541
|
|
|
662
|
-
bodyB:
|
|
542
|
+
bodyB: str # std::string
|
|
663
543
|
"""
|
|
664
|
-
|
|
665
|
-
None( (placo.Collision)arg1) -> str :
|
|
666
|
-
|
|
667
|
-
C++ signature :
|
|
668
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::model::RobotWrapper::Collision {lvalue})
|
|
544
|
+
Name of the body B.
|
|
669
545
|
"""
|
|
670
546
|
|
|
671
547
|
def get_contact(
|
|
@@ -674,51 +550,31 @@ None( (placo.Collision)arg1) -> str :
|
|
|
674
550
|
) -> numpy.ndarray:
|
|
675
551
|
...
|
|
676
552
|
|
|
677
|
-
objA:
|
|
553
|
+
objA: int # int
|
|
678
554
|
"""
|
|
679
|
-
|
|
680
|
-
None( (placo.Collision)arg1) -> int :
|
|
681
|
-
|
|
682
|
-
C++ signature :
|
|
683
|
-
int {lvalue} None(placo::model::RobotWrapper::Collision {lvalue})
|
|
555
|
+
Index of object A in the collision geometry.
|
|
684
556
|
"""
|
|
685
557
|
|
|
686
|
-
objB:
|
|
558
|
+
objB: int # int
|
|
687
559
|
"""
|
|
688
|
-
|
|
689
|
-
None( (placo.Collision)arg1) -> int :
|
|
690
|
-
|
|
691
|
-
C++ signature :
|
|
692
|
-
int {lvalue} None(placo::model::RobotWrapper::Collision {lvalue})
|
|
560
|
+
Index of object B in the collision geometry.
|
|
693
561
|
"""
|
|
694
562
|
|
|
695
|
-
parentA: any
|
|
563
|
+
parentA: any # pinocchio::JointIndex
|
|
696
564
|
"""
|
|
697
|
-
|
|
698
|
-
None( (placo.Collision)arg1) -> int :
|
|
699
|
-
|
|
700
|
-
C++ signature :
|
|
701
|
-
unsigned long {lvalue} None(placo::model::RobotWrapper::Collision {lvalue})
|
|
565
|
+
The joint parent of body A.
|
|
702
566
|
"""
|
|
703
567
|
|
|
704
|
-
parentB: any
|
|
568
|
+
parentB: any # pinocchio::JointIndex
|
|
705
569
|
"""
|
|
706
|
-
|
|
707
|
-
None( (placo.Collision)arg1) -> int :
|
|
708
|
-
|
|
709
|
-
C++ signature :
|
|
710
|
-
unsigned long {lvalue} None(placo::model::RobotWrapper::Collision {lvalue})
|
|
570
|
+
The joint parent of body B.
|
|
711
571
|
"""
|
|
712
572
|
|
|
713
573
|
|
|
714
574
|
class ConeConstraint:
|
|
715
|
-
N:
|
|
575
|
+
N: int # int
|
|
716
576
|
"""
|
|
717
|
-
|
|
718
|
-
None( (placo.ConeConstraint)arg1) -> int :
|
|
719
|
-
|
|
720
|
-
C++ signature :
|
|
721
|
-
int {lvalue} None(placo::kinematics::ConeConstraint {lvalue})
|
|
577
|
+
Number of slices used to discretize the cone.
|
|
722
578
|
"""
|
|
723
579
|
|
|
724
580
|
def __init__(
|
|
@@ -732,13 +588,9 @@ None( (placo.ConeConstraint)arg1) -> int :
|
|
|
732
588
|
"""
|
|
733
589
|
...
|
|
734
590
|
|
|
735
|
-
angle_max:
|
|
591
|
+
angle_max: float # double
|
|
736
592
|
"""
|
|
737
|
-
|
|
738
|
-
None( (placo.ConeConstraint)arg1) -> float :
|
|
739
|
-
|
|
740
|
-
C++ signature :
|
|
741
|
-
double {lvalue} None(placo::kinematics::ConeConstraint {lvalue})
|
|
593
|
+
Maximum angle allowable by the cone constraint (between z-axis of frame_a and frame_b)
|
|
742
594
|
"""
|
|
743
595
|
|
|
744
596
|
def configure(
|
|
@@ -756,13 +608,9 @@ None( (placo.ConeConstraint)arg1) -> float :
|
|
|
756
608
|
"""
|
|
757
609
|
...
|
|
758
610
|
|
|
759
|
-
name:
|
|
611
|
+
name: str # std::string
|
|
760
612
|
"""
|
|
761
|
-
|
|
762
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
763
|
-
|
|
764
|
-
C++ signature :
|
|
765
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
613
|
+
Object name.
|
|
766
614
|
"""
|
|
767
615
|
|
|
768
616
|
priority: str
|
|
@@ -770,13 +618,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
770
618
|
Priority [str]
|
|
771
619
|
"""
|
|
772
620
|
|
|
773
|
-
range:
|
|
621
|
+
range: float # double
|
|
774
622
|
"""
|
|
775
|
-
|
|
776
|
-
None( (placo.ConeConstraint)arg1) -> float :
|
|
777
|
-
|
|
778
|
-
C++ signature :
|
|
779
|
-
double {lvalue} None(placo::kinematics::ConeConstraint {lvalue})
|
|
623
|
+
Range of the cone discretization (in radians). The cone is discretized in [-range, range] around the current orientation.
|
|
780
624
|
"""
|
|
781
625
|
|
|
782
626
|
|
|
@@ -786,58 +630,34 @@ class Contact:
|
|
|
786
630
|
) -> any:
|
|
787
631
|
...
|
|
788
632
|
|
|
789
|
-
active:
|
|
633
|
+
active: bool # bool
|
|
790
634
|
"""
|
|
791
|
-
|
|
792
|
-
None( (placo.Contact)arg1) -> bool :
|
|
793
|
-
|
|
794
|
-
C++ signature :
|
|
795
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
635
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
796
636
|
"""
|
|
797
637
|
|
|
798
|
-
mu:
|
|
638
|
+
mu: float # double
|
|
799
639
|
"""
|
|
800
|
-
|
|
801
|
-
None( (placo.Contact)arg1) -> float :
|
|
802
|
-
|
|
803
|
-
C++ signature :
|
|
804
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
640
|
+
Coefficient of friction (if relevant)
|
|
805
641
|
"""
|
|
806
642
|
|
|
807
|
-
weight_forces:
|
|
643
|
+
weight_forces: float # double
|
|
808
644
|
"""
|
|
809
|
-
|
|
810
|
-
None( (placo.Contact)arg1) -> float :
|
|
811
|
-
|
|
812
|
-
C++ signature :
|
|
813
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
645
|
+
Weight of forces for the optimization (if relevant)
|
|
814
646
|
"""
|
|
815
647
|
|
|
816
|
-
weight_moments:
|
|
648
|
+
weight_moments: float # double
|
|
817
649
|
"""
|
|
818
|
-
|
|
819
|
-
None( (placo.Contact)arg1) -> float :
|
|
820
|
-
|
|
821
|
-
C++ signature :
|
|
822
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
650
|
+
Weight of moments for optimization (if relevant)
|
|
823
651
|
"""
|
|
824
652
|
|
|
825
|
-
weight_tangentials:
|
|
653
|
+
weight_tangentials: float # double
|
|
826
654
|
"""
|
|
827
|
-
|
|
828
|
-
None( (placo.Contact)arg1) -> float :
|
|
829
|
-
|
|
830
|
-
C++ signature :
|
|
831
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
655
|
+
Extra cost for tangential forces.
|
|
832
656
|
"""
|
|
833
657
|
|
|
834
|
-
wrench:
|
|
658
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
835
659
|
"""
|
|
836
|
-
|
|
837
|
-
None( (placo.Contact)arg1) -> object :
|
|
838
|
-
|
|
839
|
-
C++ signature :
|
|
840
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
660
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
841
661
|
"""
|
|
842
662
|
|
|
843
663
|
|
|
@@ -852,31 +672,19 @@ class Contact6D:
|
|
|
852
672
|
"""
|
|
853
673
|
...
|
|
854
674
|
|
|
855
|
-
active:
|
|
675
|
+
active: bool # bool
|
|
856
676
|
"""
|
|
857
|
-
|
|
858
|
-
None( (placo.Contact)arg1) -> bool :
|
|
859
|
-
|
|
860
|
-
C++ signature :
|
|
861
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
677
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
862
678
|
"""
|
|
863
679
|
|
|
864
|
-
length:
|
|
680
|
+
length: float # double
|
|
865
681
|
"""
|
|
866
|
-
|
|
867
|
-
None( (placo.Contact6D)arg1) -> float :
|
|
868
|
-
|
|
869
|
-
C++ signature :
|
|
870
|
-
double {lvalue} None(placo::dynamics::Contact6D {lvalue})
|
|
682
|
+
Rectangular contact length along local x-axis.
|
|
871
683
|
"""
|
|
872
684
|
|
|
873
|
-
mu:
|
|
685
|
+
mu: float # double
|
|
874
686
|
"""
|
|
875
|
-
|
|
876
|
-
None( (placo.Contact)arg1) -> float :
|
|
877
|
-
|
|
878
|
-
C++ signature :
|
|
879
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
687
|
+
Coefficient of friction (if relevant)
|
|
880
688
|
"""
|
|
881
689
|
|
|
882
690
|
def orientation_task(
|
|
@@ -889,58 +697,34 @@ None( (placo.Contact)arg1) -> float :
|
|
|
889
697
|
) -> DynamicsPositionTask:
|
|
890
698
|
...
|
|
891
699
|
|
|
892
|
-
unilateral:
|
|
700
|
+
unilateral: bool # bool
|
|
893
701
|
"""
|
|
894
|
-
|
|
895
|
-
None( (placo.Contact6D)arg1) -> bool :
|
|
896
|
-
|
|
897
|
-
C++ signature :
|
|
898
|
-
bool {lvalue} None(placo::dynamics::Contact6D {lvalue})
|
|
702
|
+
true for unilateral contact with the ground
|
|
899
703
|
"""
|
|
900
704
|
|
|
901
|
-
weight_forces:
|
|
705
|
+
weight_forces: float # double
|
|
902
706
|
"""
|
|
903
|
-
|
|
904
|
-
None( (placo.Contact)arg1) -> float :
|
|
905
|
-
|
|
906
|
-
C++ signature :
|
|
907
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
707
|
+
Weight of forces for the optimization (if relevant)
|
|
908
708
|
"""
|
|
909
709
|
|
|
910
|
-
weight_moments:
|
|
710
|
+
weight_moments: float # double
|
|
911
711
|
"""
|
|
912
|
-
|
|
913
|
-
None( (placo.Contact)arg1) -> float :
|
|
914
|
-
|
|
915
|
-
C++ signature :
|
|
916
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
712
|
+
Weight of moments for optimization (if relevant)
|
|
917
713
|
"""
|
|
918
714
|
|
|
919
|
-
weight_tangentials:
|
|
715
|
+
weight_tangentials: float # double
|
|
920
716
|
"""
|
|
921
|
-
|
|
922
|
-
None( (placo.Contact)arg1) -> float :
|
|
923
|
-
|
|
924
|
-
C++ signature :
|
|
925
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
717
|
+
Extra cost for tangential forces.
|
|
926
718
|
"""
|
|
927
719
|
|
|
928
|
-
width:
|
|
720
|
+
width: float # double
|
|
929
721
|
"""
|
|
930
|
-
|
|
931
|
-
None( (placo.Contact6D)arg1) -> float :
|
|
932
|
-
|
|
933
|
-
C++ signature :
|
|
934
|
-
double {lvalue} None(placo::dynamics::Contact6D {lvalue})
|
|
722
|
+
Rectangular contact width along local y-axis.
|
|
935
723
|
"""
|
|
936
724
|
|
|
937
|
-
wrench:
|
|
725
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
938
726
|
"""
|
|
939
|
-
|
|
940
|
-
None( (placo.Contact)arg1) -> object :
|
|
941
|
-
|
|
942
|
-
C++ signature :
|
|
943
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
727
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
944
728
|
"""
|
|
945
729
|
|
|
946
730
|
def zmp(
|
|
@@ -1097,67 +881,39 @@ class Distance:
|
|
|
1097
881
|
) -> None:
|
|
1098
882
|
...
|
|
1099
883
|
|
|
1100
|
-
min_distance:
|
|
884
|
+
min_distance: float # double
|
|
1101
885
|
"""
|
|
1102
|
-
|
|
1103
|
-
None( (placo.Distance)arg1) -> float :
|
|
1104
|
-
|
|
1105
|
-
C++ signature :
|
|
1106
|
-
double {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
886
|
+
Current minimum distance between the two objects.
|
|
1107
887
|
"""
|
|
1108
888
|
|
|
1109
|
-
objA:
|
|
889
|
+
objA: int # int
|
|
1110
890
|
"""
|
|
1111
|
-
|
|
1112
|
-
None( (placo.Distance)arg1) -> int :
|
|
1113
|
-
|
|
1114
|
-
C++ signature :
|
|
1115
|
-
int {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
891
|
+
Index of object A in the collision geometry.
|
|
1116
892
|
"""
|
|
1117
893
|
|
|
1118
|
-
objB:
|
|
894
|
+
objB: int # int
|
|
1119
895
|
"""
|
|
1120
|
-
|
|
1121
|
-
None( (placo.Distance)arg1) -> int :
|
|
1122
|
-
|
|
1123
|
-
C++ signature :
|
|
1124
|
-
int {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
896
|
+
Index of object B in the collision geometry.
|
|
1125
897
|
"""
|
|
1126
898
|
|
|
1127
|
-
parentA: any
|
|
899
|
+
parentA: any # pinocchio::JointIndex
|
|
1128
900
|
"""
|
|
1129
|
-
|
|
1130
|
-
None( (placo.Distance)arg1) -> int :
|
|
1131
|
-
|
|
1132
|
-
C++ signature :
|
|
1133
|
-
unsigned long {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
901
|
+
Parent joint of body A.
|
|
1134
902
|
"""
|
|
1135
903
|
|
|
1136
|
-
parentB: any
|
|
904
|
+
parentB: any # pinocchio::JointIndex
|
|
1137
905
|
"""
|
|
1138
|
-
|
|
1139
|
-
None( (placo.Distance)arg1) -> int :
|
|
1140
|
-
|
|
1141
|
-
C++ signature :
|
|
1142
|
-
unsigned long {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
906
|
+
Parent joint of body B.
|
|
1143
907
|
"""
|
|
1144
908
|
|
|
1145
|
-
pointA:
|
|
909
|
+
pointA: numpy.ndarray # Eigen::Vector3d
|
|
1146
910
|
"""
|
|
1147
|
-
|
|
1148
|
-
None( (placo.Distance)arg1) -> object :
|
|
1149
|
-
|
|
1150
|
-
C++ signature :
|
|
1151
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
911
|
+
Point of object A considered.
|
|
1152
912
|
"""
|
|
1153
913
|
|
|
1154
|
-
pointB:
|
|
914
|
+
pointB: numpy.ndarray # Eigen::Vector3d
|
|
1155
915
|
"""
|
|
1156
|
-
|
|
1157
|
-
None( (placo.Distance)arg1) -> object :
|
|
1158
|
-
|
|
1159
|
-
C++ signature :
|
|
1160
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::model::RobotWrapper::Distance {lvalue})
|
|
916
|
+
Point of object B considered.
|
|
1161
917
|
"""
|
|
1162
918
|
|
|
1163
919
|
|
|
@@ -1188,22 +944,14 @@ class DistanceConstraint:
|
|
|
1188
944
|
"""
|
|
1189
945
|
...
|
|
1190
946
|
|
|
1191
|
-
distance_max:
|
|
947
|
+
distance_max: float # double
|
|
1192
948
|
"""
|
|
1193
|
-
|
|
1194
|
-
None( (placo.DistanceConstraint)arg1) -> float :
|
|
1195
|
-
|
|
1196
|
-
C++ signature :
|
|
1197
|
-
double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
|
|
949
|
+
Maximum distance allowed between frame A and frame B.
|
|
1198
950
|
"""
|
|
1199
951
|
|
|
1200
|
-
name:
|
|
952
|
+
name: str # std::string
|
|
1201
953
|
"""
|
|
1202
|
-
|
|
1203
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
1204
|
-
|
|
1205
|
-
C++ signature :
|
|
1206
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
954
|
+
Object name.
|
|
1207
955
|
"""
|
|
1208
956
|
|
|
1209
957
|
priority: str
|
|
@@ -1213,13 +961,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1213
961
|
|
|
1214
962
|
|
|
1215
963
|
class DistanceTask:
|
|
1216
|
-
A:
|
|
964
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1217
965
|
"""
|
|
1218
|
-
|
|
1219
|
-
None( (placo.Task)arg1) -> object :
|
|
1220
|
-
|
|
1221
|
-
C++ signature :
|
|
1222
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
966
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
1223
967
|
"""
|
|
1224
968
|
|
|
1225
969
|
def __init__(
|
|
@@ -1233,13 +977,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
1233
977
|
"""
|
|
1234
978
|
...
|
|
1235
979
|
|
|
1236
|
-
b:
|
|
980
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1237
981
|
"""
|
|
1238
|
-
|
|
1239
|
-
None( (placo.Task)arg1) -> object :
|
|
1240
|
-
|
|
1241
|
-
C++ signature :
|
|
1242
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
982
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
1243
983
|
"""
|
|
1244
984
|
|
|
1245
985
|
def configure(
|
|
@@ -1257,13 +997,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
1257
997
|
"""
|
|
1258
998
|
...
|
|
1259
999
|
|
|
1260
|
-
distance:
|
|
1000
|
+
distance: float # double
|
|
1261
1001
|
"""
|
|
1262
|
-
|
|
1263
|
-
None( (placo.DistanceTask)arg1) -> float :
|
|
1264
|
-
|
|
1265
|
-
C++ signature :
|
|
1266
|
-
double {lvalue} None(placo::kinematics::DistanceTask {lvalue})
|
|
1002
|
+
Target distance between A and B.
|
|
1267
1003
|
"""
|
|
1268
1004
|
|
|
1269
1005
|
def error(
|
|
@@ -1282,31 +1018,19 @@ None( (placo.DistanceTask)arg1) -> float :
|
|
|
1282
1018
|
"""
|
|
1283
1019
|
...
|
|
1284
1020
|
|
|
1285
|
-
frame_a: any
|
|
1021
|
+
frame_a: any # pinocchio::FrameIndex
|
|
1286
1022
|
"""
|
|
1287
|
-
|
|
1288
|
-
None( (placo.DistanceTask)arg1) -> int :
|
|
1289
|
-
|
|
1290
|
-
C++ signature :
|
|
1291
|
-
unsigned long {lvalue} None(placo::kinematics::DistanceTask {lvalue})
|
|
1023
|
+
Frame A.
|
|
1292
1024
|
"""
|
|
1293
1025
|
|
|
1294
|
-
frame_b: any
|
|
1026
|
+
frame_b: any # pinocchio::FrameIndex
|
|
1295
1027
|
"""
|
|
1296
|
-
|
|
1297
|
-
None( (placo.DistanceTask)arg1) -> int :
|
|
1298
|
-
|
|
1299
|
-
C++ signature :
|
|
1300
|
-
unsigned long {lvalue} None(placo::kinematics::DistanceTask {lvalue})
|
|
1028
|
+
Frame B.
|
|
1301
1029
|
"""
|
|
1302
1030
|
|
|
1303
|
-
name:
|
|
1031
|
+
name: str # std::string
|
|
1304
1032
|
"""
|
|
1305
|
-
|
|
1306
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
1307
|
-
|
|
1308
|
-
C++ signature :
|
|
1309
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1033
|
+
Object name.
|
|
1310
1034
|
"""
|
|
1311
1035
|
|
|
1312
1036
|
priority: str
|
|
@@ -1324,31 +1048,19 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1324
1048
|
|
|
1325
1049
|
|
|
1326
1050
|
class DummyWalk:
|
|
1327
|
-
T_world_left:
|
|
1051
|
+
T_world_left: numpy.ndarray # Eigen::Affine3d
|
|
1328
1052
|
"""
|
|
1329
|
-
|
|
1330
|
-
None( (placo.DummyWalk)arg1) -> object :
|
|
1331
|
-
|
|
1332
|
-
C++ signature :
|
|
1333
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1053
|
+
left foot in world, at begining of current step
|
|
1334
1054
|
"""
|
|
1335
1055
|
|
|
1336
|
-
T_world_next:
|
|
1056
|
+
T_world_next: numpy.ndarray # Eigen::Affine3d
|
|
1337
1057
|
"""
|
|
1338
|
-
|
|
1339
|
-
None( (placo.DummyWalk)arg1) -> object :
|
|
1340
|
-
|
|
1341
|
-
C++ signature :
|
|
1342
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1058
|
+
Target for the current flying foot (given by support_left)
|
|
1343
1059
|
"""
|
|
1344
1060
|
|
|
1345
|
-
T_world_right:
|
|
1061
|
+
T_world_right: numpy.ndarray # Eigen::Affine3d
|
|
1346
1062
|
"""
|
|
1347
|
-
|
|
1348
|
-
None( (placo.DummyWalk)arg1) -> object :
|
|
1349
|
-
|
|
1350
|
-
C++ signature :
|
|
1351
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1063
|
+
right foot in world, at begining of current step
|
|
1352
1064
|
"""
|
|
1353
1065
|
|
|
1354
1066
|
def __init__(
|
|
@@ -1357,22 +1069,29 @@ None( (placo.DummyWalk)arg1) -> object :
|
|
|
1357
1069
|
) -> any:
|
|
1358
1070
|
...
|
|
1359
1071
|
|
|
1360
|
-
|
|
1072
|
+
dtheta: float # double
|
|
1073
|
+
"""
|
|
1074
|
+
Last requested step dtheta.
|
|
1361
1075
|
"""
|
|
1362
|
-
|
|
1363
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1364
1076
|
|
|
1365
|
-
|
|
1366
|
-
|
|
1077
|
+
dx: float # double
|
|
1078
|
+
"""
|
|
1079
|
+
Last requested step dx.
|
|
1367
1080
|
"""
|
|
1368
1081
|
|
|
1369
|
-
|
|
1082
|
+
dy: float # double
|
|
1083
|
+
"""
|
|
1084
|
+
Last requested step d-.
|
|
1370
1085
|
"""
|
|
1371
|
-
|
|
1372
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1373
1086
|
|
|
1374
|
-
|
|
1375
|
-
|
|
1087
|
+
feet_spacing: float # double
|
|
1088
|
+
"""
|
|
1089
|
+
Feet spacing [m].
|
|
1090
|
+
"""
|
|
1091
|
+
|
|
1092
|
+
lift_height: float # double
|
|
1093
|
+
"""
|
|
1094
|
+
Lift height [m].
|
|
1376
1095
|
"""
|
|
1377
1096
|
|
|
1378
1097
|
def next_step(
|
|
@@ -1401,49 +1120,29 @@ None( (placo.DummyWalk)arg1) -> float :
|
|
|
1401
1120
|
"""
|
|
1402
1121
|
...
|
|
1403
1122
|
|
|
1404
|
-
robot:
|
|
1123
|
+
robot: RobotWrapper # placo::model::RobotWrapper
|
|
1405
1124
|
"""
|
|
1406
|
-
|
|
1407
|
-
None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
|
|
1408
|
-
|
|
1409
|
-
C++ signature :
|
|
1410
|
-
placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1125
|
+
Robot wrapper.
|
|
1411
1126
|
"""
|
|
1412
1127
|
|
|
1413
|
-
solver:
|
|
1128
|
+
solver: KinematicsSolver # placo::kinematics::KinematicsSolver
|
|
1414
1129
|
"""
|
|
1415
|
-
|
|
1416
|
-
None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
|
|
1417
|
-
|
|
1418
|
-
C++ signature :
|
|
1419
|
-
placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1130
|
+
Kinematics solver.
|
|
1420
1131
|
"""
|
|
1421
1132
|
|
|
1422
|
-
support_left:
|
|
1133
|
+
support_left: bool # bool
|
|
1423
1134
|
"""
|
|
1424
|
-
|
|
1425
|
-
None( (placo.DummyWalk)arg1) -> bool :
|
|
1426
|
-
|
|
1427
|
-
C++ signature :
|
|
1428
|
-
bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1135
|
+
Whether the current support is left or right.
|
|
1429
1136
|
"""
|
|
1430
1137
|
|
|
1431
|
-
trunk_height:
|
|
1138
|
+
trunk_height: float # double
|
|
1432
1139
|
"""
|
|
1433
|
-
|
|
1434
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1435
|
-
|
|
1436
|
-
C++ signature :
|
|
1437
|
-
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1140
|
+
Trunk height [m].
|
|
1438
1141
|
"""
|
|
1439
1142
|
|
|
1440
|
-
trunk_pitch:
|
|
1143
|
+
trunk_pitch: float # double
|
|
1441
1144
|
"""
|
|
1442
|
-
|
|
1443
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1444
|
-
|
|
1445
|
-
C++ signature :
|
|
1446
|
-
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1145
|
+
Trunk pitch angle [rad].
|
|
1447
1146
|
"""
|
|
1448
1147
|
|
|
1449
1148
|
def update(
|
|
@@ -1468,13 +1167,9 @@ None( (placo.DummyWalk)arg1) -> float :
|
|
|
1468
1167
|
|
|
1469
1168
|
|
|
1470
1169
|
class DynamicsCoMTask:
|
|
1471
|
-
A:
|
|
1170
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1472
1171
|
"""
|
|
1473
|
-
|
|
1474
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1475
|
-
|
|
1476
|
-
C++ signature :
|
|
1477
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1172
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1478
1173
|
"""
|
|
1479
1174
|
|
|
1480
1175
|
def __init__(
|
|
@@ -1483,13 +1178,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1483
1178
|
) -> None:
|
|
1484
1179
|
...
|
|
1485
1180
|
|
|
1486
|
-
b:
|
|
1181
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1487
1182
|
"""
|
|
1488
|
-
|
|
1489
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1490
|
-
|
|
1491
|
-
C++ signature :
|
|
1492
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1183
|
+
b vector in Ax = b, where x is the accelerations
|
|
1493
1184
|
"""
|
|
1494
1185
|
|
|
1495
1186
|
def configure(
|
|
@@ -1507,76 +1198,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1507
1198
|
"""
|
|
1508
1199
|
...
|
|
1509
1200
|
|
|
1510
|
-
ddtarget_world:
|
|
1201
|
+
ddtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
1511
1202
|
"""
|
|
1512
|
-
|
|
1513
|
-
None( (placo.DynamicsCoMTask)arg1) -> object :
|
|
1514
|
-
|
|
1515
|
-
C++ signature :
|
|
1516
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
|
|
1203
|
+
Target acceleration in the world.
|
|
1517
1204
|
"""
|
|
1518
1205
|
|
|
1519
|
-
derror:
|
|
1206
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1520
1207
|
"""
|
|
1521
|
-
|
|
1522
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1523
|
-
|
|
1524
|
-
C++ signature :
|
|
1525
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1208
|
+
Current velocity error vector.
|
|
1526
1209
|
"""
|
|
1527
1210
|
|
|
1528
|
-
dtarget_world:
|
|
1211
|
+
dtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
1529
1212
|
"""
|
|
1530
|
-
|
|
1531
|
-
None( (placo.DynamicsCoMTask)arg1) -> object :
|
|
1532
|
-
|
|
1533
|
-
C++ signature :
|
|
1534
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
|
|
1213
|
+
Target velocity to reach in robot frame.
|
|
1535
1214
|
"""
|
|
1536
1215
|
|
|
1537
|
-
error:
|
|
1216
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1538
1217
|
"""
|
|
1539
|
-
|
|
1540
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1541
|
-
|
|
1542
|
-
C++ signature :
|
|
1543
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1218
|
+
Current error vector.
|
|
1544
1219
|
"""
|
|
1545
1220
|
|
|
1546
|
-
kd:
|
|
1221
|
+
kd: float # double
|
|
1547
1222
|
"""
|
|
1548
|
-
|
|
1549
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1550
|
-
|
|
1551
|
-
C++ signature :
|
|
1552
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1223
|
+
D gain for position control (if negative, will be critically damped)
|
|
1553
1224
|
"""
|
|
1554
1225
|
|
|
1555
|
-
kp:
|
|
1226
|
+
kp: float # double
|
|
1556
1227
|
"""
|
|
1557
|
-
|
|
1558
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1559
|
-
|
|
1560
|
-
C++ signature :
|
|
1561
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1228
|
+
K gain for position control.
|
|
1562
1229
|
"""
|
|
1563
1230
|
|
|
1564
|
-
mask:
|
|
1231
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
1565
1232
|
"""
|
|
1566
|
-
|
|
1567
|
-
None( (placo.DynamicsCoMTask)arg1) -> placo.AxisesMask :
|
|
1568
|
-
|
|
1569
|
-
C++ signature :
|
|
1570
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::CoMTask {lvalue})
|
|
1233
|
+
Axises mask.
|
|
1571
1234
|
"""
|
|
1572
1235
|
|
|
1573
|
-
name:
|
|
1236
|
+
name: str # std::string
|
|
1574
1237
|
"""
|
|
1575
|
-
|
|
1576
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
1577
|
-
|
|
1578
|
-
C++ signature :
|
|
1579
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1238
|
+
Object name.
|
|
1580
1239
|
"""
|
|
1581
1240
|
|
|
1582
1241
|
priority: str
|
|
@@ -1584,13 +1243,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1584
1243
|
Priority [str]
|
|
1585
1244
|
"""
|
|
1586
1245
|
|
|
1587
|
-
target_world:
|
|
1246
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
1588
1247
|
"""
|
|
1589
|
-
|
|
1590
|
-
None( (placo.DynamicsCoMTask)arg1) -> object :
|
|
1591
|
-
|
|
1592
|
-
C++ signature :
|
|
1593
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
|
|
1248
|
+
Target to reach in world frame.
|
|
1594
1249
|
"""
|
|
1595
1250
|
|
|
1596
1251
|
|
|
@@ -1614,13 +1269,9 @@ class DynamicsConstraint:
|
|
|
1614
1269
|
"""
|
|
1615
1270
|
...
|
|
1616
1271
|
|
|
1617
|
-
name:
|
|
1272
|
+
name: str # std::string
|
|
1618
1273
|
"""
|
|
1619
|
-
|
|
1620
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
1621
|
-
|
|
1622
|
-
C++ signature :
|
|
1623
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1274
|
+
Object name.
|
|
1624
1275
|
"""
|
|
1625
1276
|
|
|
1626
1277
|
priority: str
|
|
@@ -1631,13 +1282,6 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1631
1282
|
|
|
1632
1283
|
class DynamicsFrameTask:
|
|
1633
1284
|
T_world_frame: any
|
|
1634
|
-
"""
|
|
1635
|
-
|
|
1636
|
-
None( (placo.DynamicsFrameTask)arg1) -> object :
|
|
1637
|
-
|
|
1638
|
-
C++ signature :
|
|
1639
|
-
Eigen::Transform<double, 3, 2, 0> None(placo::dynamics::FrameTask {lvalue})
|
|
1640
|
-
"""
|
|
1641
1285
|
|
|
1642
1286
|
def __init__(
|
|
1643
1287
|
arg1: object,
|
|
@@ -1673,13 +1317,9 @@ None( (placo.DynamicsFrameTask)arg1) -> object :
|
|
|
1673
1317
|
|
|
1674
1318
|
|
|
1675
1319
|
class DynamicsGearTask:
|
|
1676
|
-
A:
|
|
1320
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1677
1321
|
"""
|
|
1678
|
-
|
|
1679
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1680
|
-
|
|
1681
|
-
C++ signature :
|
|
1682
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1322
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1683
1323
|
"""
|
|
1684
1324
|
|
|
1685
1325
|
def __init__(
|
|
@@ -1702,13 +1342,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1702
1342
|
"""
|
|
1703
1343
|
...
|
|
1704
1344
|
|
|
1705
|
-
b:
|
|
1345
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1706
1346
|
"""
|
|
1707
|
-
|
|
1708
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1709
|
-
|
|
1710
|
-
C++ signature :
|
|
1711
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1347
|
+
b vector in Ax = b, where x is the accelerations
|
|
1712
1348
|
"""
|
|
1713
1349
|
|
|
1714
1350
|
def configure(
|
|
@@ -1726,49 +1362,29 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1726
1362
|
"""
|
|
1727
1363
|
...
|
|
1728
1364
|
|
|
1729
|
-
derror:
|
|
1365
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1730
1366
|
"""
|
|
1731
|
-
|
|
1732
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1733
|
-
|
|
1734
|
-
C++ signature :
|
|
1735
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1367
|
+
Current velocity error vector.
|
|
1736
1368
|
"""
|
|
1737
1369
|
|
|
1738
|
-
error:
|
|
1370
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1739
1371
|
"""
|
|
1740
|
-
|
|
1741
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1742
|
-
|
|
1743
|
-
C++ signature :
|
|
1744
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1372
|
+
Current error vector.
|
|
1745
1373
|
"""
|
|
1746
1374
|
|
|
1747
|
-
kd:
|
|
1375
|
+
kd: float # double
|
|
1748
1376
|
"""
|
|
1749
|
-
|
|
1750
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1751
|
-
|
|
1752
|
-
C++ signature :
|
|
1753
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1377
|
+
D gain for position control (if negative, will be critically damped)
|
|
1754
1378
|
"""
|
|
1755
1379
|
|
|
1756
|
-
kp:
|
|
1380
|
+
kp: float # double
|
|
1757
1381
|
"""
|
|
1758
|
-
|
|
1759
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1760
|
-
|
|
1761
|
-
C++ signature :
|
|
1762
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1382
|
+
K gain for position control.
|
|
1763
1383
|
"""
|
|
1764
1384
|
|
|
1765
|
-
name:
|
|
1385
|
+
name: str # std::string
|
|
1766
1386
|
"""
|
|
1767
|
-
|
|
1768
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
1769
|
-
|
|
1770
|
-
C++ signature :
|
|
1771
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1387
|
+
Object name.
|
|
1772
1388
|
"""
|
|
1773
1389
|
|
|
1774
1390
|
priority: str
|
|
@@ -1793,13 +1409,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1793
1409
|
|
|
1794
1410
|
|
|
1795
1411
|
class DynamicsJointsTask:
|
|
1796
|
-
A:
|
|
1412
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1797
1413
|
"""
|
|
1798
|
-
|
|
1799
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1800
|
-
|
|
1801
|
-
C++ signature :
|
|
1802
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1414
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1803
1415
|
"""
|
|
1804
1416
|
|
|
1805
1417
|
def __init__(
|
|
@@ -1807,13 +1419,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1807
1419
|
) -> None:
|
|
1808
1420
|
...
|
|
1809
1421
|
|
|
1810
|
-
b:
|
|
1422
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1811
1423
|
"""
|
|
1812
|
-
|
|
1813
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1814
|
-
|
|
1815
|
-
C++ signature :
|
|
1816
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1424
|
+
b vector in Ax = b, where x is the accelerations
|
|
1817
1425
|
"""
|
|
1818
1426
|
|
|
1819
1427
|
def configure(
|
|
@@ -1831,22 +1439,14 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1831
1439
|
"""
|
|
1832
1440
|
...
|
|
1833
1441
|
|
|
1834
|
-
derror:
|
|
1442
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1835
1443
|
"""
|
|
1836
|
-
|
|
1837
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1838
|
-
|
|
1839
|
-
C++ signature :
|
|
1840
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1444
|
+
Current velocity error vector.
|
|
1841
1445
|
"""
|
|
1842
1446
|
|
|
1843
|
-
error:
|
|
1447
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1844
1448
|
"""
|
|
1845
|
-
|
|
1846
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1847
|
-
|
|
1848
|
-
C++ signature :
|
|
1849
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1449
|
+
Current error vector.
|
|
1850
1450
|
"""
|
|
1851
1451
|
|
|
1852
1452
|
def get_joint(
|
|
@@ -1860,31 +1460,19 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1860
1460
|
"""
|
|
1861
1461
|
...
|
|
1862
1462
|
|
|
1863
|
-
kd:
|
|
1463
|
+
kd: float # double
|
|
1864
1464
|
"""
|
|
1865
|
-
|
|
1866
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1867
|
-
|
|
1868
|
-
C++ signature :
|
|
1869
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1465
|
+
D gain for position control (if negative, will be critically damped)
|
|
1870
1466
|
"""
|
|
1871
1467
|
|
|
1872
|
-
kp:
|
|
1468
|
+
kp: float # double
|
|
1873
1469
|
"""
|
|
1874
|
-
|
|
1875
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1876
|
-
|
|
1877
|
-
C++ signature :
|
|
1878
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1470
|
+
K gain for position control.
|
|
1879
1471
|
"""
|
|
1880
1472
|
|
|
1881
|
-
name:
|
|
1473
|
+
name: str # std::string
|
|
1882
1474
|
"""
|
|
1883
|
-
|
|
1884
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
1885
|
-
|
|
1886
|
-
C++ signature :
|
|
1887
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1475
|
+
Object name.
|
|
1888
1476
|
"""
|
|
1889
1477
|
|
|
1890
1478
|
priority: str
|
|
@@ -1923,22 +1511,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1923
1511
|
|
|
1924
1512
|
|
|
1925
1513
|
class DynamicsOrientationTask:
|
|
1926
|
-
A:
|
|
1514
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1927
1515
|
"""
|
|
1928
|
-
|
|
1929
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1930
|
-
|
|
1931
|
-
C++ signature :
|
|
1932
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1516
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1933
1517
|
"""
|
|
1934
1518
|
|
|
1935
|
-
R_world_frame:
|
|
1519
|
+
R_world_frame: numpy.ndarray # Eigen::Matrix3d
|
|
1936
1520
|
"""
|
|
1937
|
-
|
|
1938
|
-
None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
1939
|
-
|
|
1940
|
-
C++ signature :
|
|
1941
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
|
|
1521
|
+
Target orientation.
|
|
1942
1522
|
"""
|
|
1943
1523
|
|
|
1944
1524
|
def __init__(
|
|
@@ -1948,13 +1528,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
|
1948
1528
|
) -> None:
|
|
1949
1529
|
...
|
|
1950
1530
|
|
|
1951
|
-
b:
|
|
1531
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1952
1532
|
"""
|
|
1953
|
-
|
|
1954
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1955
|
-
|
|
1956
|
-
C++ signature :
|
|
1957
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1533
|
+
b vector in Ax = b, where x is the accelerations
|
|
1958
1534
|
"""
|
|
1959
1535
|
|
|
1960
1536
|
def configure(
|
|
@@ -1972,76 +1548,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1972
1548
|
"""
|
|
1973
1549
|
...
|
|
1974
1550
|
|
|
1975
|
-
derror:
|
|
1551
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1976
1552
|
"""
|
|
1977
|
-
|
|
1978
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1979
|
-
|
|
1980
|
-
C++ signature :
|
|
1981
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1553
|
+
Current velocity error vector.
|
|
1982
1554
|
"""
|
|
1983
1555
|
|
|
1984
|
-
domega_world:
|
|
1556
|
+
domega_world: numpy.ndarray # Eigen::Vector3d
|
|
1985
1557
|
"""
|
|
1986
|
-
|
|
1987
|
-
None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
1988
|
-
|
|
1989
|
-
C++ signature :
|
|
1990
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
|
|
1558
|
+
Target angular acceleration.
|
|
1991
1559
|
"""
|
|
1992
1560
|
|
|
1993
|
-
error:
|
|
1561
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1994
1562
|
"""
|
|
1995
|
-
|
|
1996
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
1997
|
-
|
|
1998
|
-
C++ signature :
|
|
1999
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1563
|
+
Current error vector.
|
|
2000
1564
|
"""
|
|
2001
1565
|
|
|
2002
|
-
kd:
|
|
1566
|
+
kd: float # double
|
|
2003
1567
|
"""
|
|
2004
|
-
|
|
2005
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2006
|
-
|
|
2007
|
-
C++ signature :
|
|
2008
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1568
|
+
D gain for position control (if negative, will be critically damped)
|
|
2009
1569
|
"""
|
|
2010
1570
|
|
|
2011
|
-
kp:
|
|
1571
|
+
kp: float # double
|
|
2012
1572
|
"""
|
|
2013
|
-
|
|
2014
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2015
|
-
|
|
2016
|
-
C++ signature :
|
|
2017
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1573
|
+
K gain for position control.
|
|
2018
1574
|
"""
|
|
2019
1575
|
|
|
2020
|
-
mask:
|
|
1576
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2021
1577
|
"""
|
|
2022
|
-
|
|
2023
|
-
None( (placo.DynamicsOrientationTask)arg1) -> placo.AxisesMask :
|
|
2024
|
-
|
|
2025
|
-
C++ signature :
|
|
2026
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::OrientationTask {lvalue})
|
|
1578
|
+
Mask.
|
|
2027
1579
|
"""
|
|
2028
1580
|
|
|
2029
|
-
name:
|
|
1581
|
+
name: str # std::string
|
|
2030
1582
|
"""
|
|
2031
|
-
|
|
2032
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
2033
|
-
|
|
2034
|
-
C++ signature :
|
|
2035
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1583
|
+
Object name.
|
|
2036
1584
|
"""
|
|
2037
1585
|
|
|
2038
|
-
omega_world:
|
|
1586
|
+
omega_world: numpy.ndarray # Eigen::Vector3d
|
|
2039
1587
|
"""
|
|
2040
|
-
|
|
2041
|
-
None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
2042
|
-
|
|
2043
|
-
C++ signature :
|
|
2044
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
|
|
1588
|
+
Target angular velocity.
|
|
2045
1589
|
"""
|
|
2046
1590
|
|
|
2047
1591
|
priority: str
|
|
@@ -2051,13 +1595,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
|
2051
1595
|
|
|
2052
1596
|
|
|
2053
1597
|
class DynamicsPositionTask:
|
|
2054
|
-
A:
|
|
1598
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2055
1599
|
"""
|
|
2056
|
-
|
|
2057
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2058
|
-
|
|
2059
|
-
C++ signature :
|
|
2060
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1600
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2061
1601
|
"""
|
|
2062
1602
|
|
|
2063
1603
|
def __init__(
|
|
@@ -2067,13 +1607,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2067
1607
|
) -> None:
|
|
2068
1608
|
...
|
|
2069
1609
|
|
|
2070
|
-
b:
|
|
1610
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
2071
1611
|
"""
|
|
2072
|
-
|
|
2073
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2074
|
-
|
|
2075
|
-
C++ signature :
|
|
2076
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1612
|
+
b vector in Ax = b, where x is the accelerations
|
|
2077
1613
|
"""
|
|
2078
1614
|
|
|
2079
1615
|
def configure(
|
|
@@ -2091,85 +1627,49 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2091
1627
|
"""
|
|
2092
1628
|
...
|
|
2093
1629
|
|
|
2094
|
-
ddtarget_world:
|
|
1630
|
+
ddtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
2095
1631
|
"""
|
|
2096
|
-
|
|
2097
|
-
None( (placo.DynamicsPositionTask)arg1) -> object :
|
|
2098
|
-
|
|
2099
|
-
C++ signature :
|
|
2100
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1632
|
+
Target acceleration in the world.
|
|
2101
1633
|
"""
|
|
2102
1634
|
|
|
2103
|
-
derror:
|
|
1635
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
2104
1636
|
"""
|
|
2105
|
-
|
|
2106
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2107
|
-
|
|
2108
|
-
C++ signature :
|
|
2109
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1637
|
+
Current velocity error vector.
|
|
2110
1638
|
"""
|
|
2111
1639
|
|
|
2112
|
-
dtarget_world:
|
|
1640
|
+
dtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
2113
1641
|
"""
|
|
2114
|
-
|
|
2115
|
-
None( (placo.DynamicsPositionTask)arg1) -> object :
|
|
2116
|
-
|
|
2117
|
-
C++ signature :
|
|
2118
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1642
|
+
Target velocity in the world.
|
|
2119
1643
|
"""
|
|
2120
1644
|
|
|
2121
|
-
error:
|
|
1645
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
2122
1646
|
"""
|
|
2123
|
-
|
|
2124
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2125
|
-
|
|
2126
|
-
C++ signature :
|
|
2127
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1647
|
+
Current error vector.
|
|
2128
1648
|
"""
|
|
2129
1649
|
|
|
2130
|
-
frame_index: any
|
|
1650
|
+
frame_index: any # pinocchio::FrameIndex
|
|
2131
1651
|
"""
|
|
2132
|
-
|
|
2133
|
-
None( (placo.DynamicsPositionTask)arg1) -> int :
|
|
2134
|
-
|
|
2135
|
-
C++ signature :
|
|
2136
|
-
unsigned long {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1652
|
+
Frame.
|
|
2137
1653
|
"""
|
|
2138
1654
|
|
|
2139
|
-
kd:
|
|
1655
|
+
kd: float # double
|
|
2140
1656
|
"""
|
|
2141
|
-
|
|
2142
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2143
|
-
|
|
2144
|
-
C++ signature :
|
|
2145
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1657
|
+
D gain for position control (if negative, will be critically damped)
|
|
2146
1658
|
"""
|
|
2147
1659
|
|
|
2148
|
-
kp:
|
|
1660
|
+
kp: float # double
|
|
2149
1661
|
"""
|
|
2150
|
-
|
|
2151
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2152
|
-
|
|
2153
|
-
C++ signature :
|
|
2154
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1662
|
+
K gain for position control.
|
|
2155
1663
|
"""
|
|
2156
1664
|
|
|
2157
|
-
mask:
|
|
1665
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2158
1666
|
"""
|
|
2159
|
-
|
|
2160
|
-
None( (placo.DynamicsPositionTask)arg1) -> placo.AxisesMask :
|
|
2161
|
-
|
|
2162
|
-
C++ signature :
|
|
2163
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1667
|
+
Mask.
|
|
2164
1668
|
"""
|
|
2165
1669
|
|
|
2166
|
-
name:
|
|
1670
|
+
name: str # std::string
|
|
2167
1671
|
"""
|
|
2168
|
-
|
|
2169
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
2170
|
-
|
|
2171
|
-
C++ signature :
|
|
2172
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1672
|
+
Object name.
|
|
2173
1673
|
"""
|
|
2174
1674
|
|
|
2175
1675
|
priority: str
|
|
@@ -2177,25 +1677,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
2177
1677
|
Priority [str]
|
|
2178
1678
|
"""
|
|
2179
1679
|
|
|
2180
|
-
target_world:
|
|
1680
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
2181
1681
|
"""
|
|
2182
|
-
|
|
2183
|
-
None( (placo.DynamicsPositionTask)arg1) -> object :
|
|
2184
|
-
|
|
2185
|
-
C++ signature :
|
|
2186
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1682
|
+
Target position in the world.
|
|
2187
1683
|
"""
|
|
2188
1684
|
|
|
2189
1685
|
|
|
2190
1686
|
class DynamicsRelativeFrameTask:
|
|
2191
1687
|
T_a_b: any
|
|
2192
|
-
"""
|
|
2193
|
-
|
|
2194
|
-
None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
|
|
2195
|
-
|
|
2196
|
-
C++ signature :
|
|
2197
|
-
Eigen::Transform<double, 3, 2, 0> None(placo::dynamics::RelativeFrameTask {lvalue})
|
|
2198
|
-
"""
|
|
2199
1688
|
|
|
2200
1689
|
def __init__(
|
|
2201
1690
|
arg1: object,
|
|
@@ -2231,22 +1720,14 @@ None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
|
|
|
2231
1720
|
|
|
2232
1721
|
|
|
2233
1722
|
class DynamicsRelativeOrientationTask:
|
|
2234
|
-
A:
|
|
1723
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2235
1724
|
"""
|
|
2236
|
-
|
|
2237
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2238
|
-
|
|
2239
|
-
C++ signature :
|
|
2240
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1725
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2241
1726
|
"""
|
|
2242
1727
|
|
|
2243
|
-
R_a_b:
|
|
1728
|
+
R_a_b: numpy.ndarray # Eigen::Matrix3d
|
|
2244
1729
|
"""
|
|
2245
|
-
|
|
2246
|
-
None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
2247
|
-
|
|
2248
|
-
C++ signature :
|
|
2249
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
|
|
1730
|
+
Target relative orientation.
|
|
2250
1731
|
"""
|
|
2251
1732
|
|
|
2252
1733
|
def __init__(
|
|
@@ -2257,13 +1738,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
|
2257
1738
|
) -> None:
|
|
2258
1739
|
...
|
|
2259
1740
|
|
|
2260
|
-
b:
|
|
1741
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
2261
1742
|
"""
|
|
2262
|
-
|
|
2263
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2264
|
-
|
|
2265
|
-
C++ signature :
|
|
2266
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1743
|
+
b vector in Ax = b, where x is the accelerations
|
|
2267
1744
|
"""
|
|
2268
1745
|
|
|
2269
1746
|
def configure(
|
|
@@ -2281,76 +1758,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2281
1758
|
"""
|
|
2282
1759
|
...
|
|
2283
1760
|
|
|
2284
|
-
derror:
|
|
1761
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
2285
1762
|
"""
|
|
2286
|
-
|
|
2287
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2288
|
-
|
|
2289
|
-
C++ signature :
|
|
2290
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1763
|
+
Current velocity error vector.
|
|
2291
1764
|
"""
|
|
2292
1765
|
|
|
2293
|
-
domega_a_b:
|
|
1766
|
+
domega_a_b: numpy.ndarray # Eigen::Vector3d
|
|
2294
1767
|
"""
|
|
2295
|
-
|
|
2296
|
-
None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
2297
|
-
|
|
2298
|
-
C++ signature :
|
|
2299
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
|
|
1768
|
+
Target relative angular velocity.
|
|
2300
1769
|
"""
|
|
2301
1770
|
|
|
2302
|
-
error:
|
|
1771
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
2303
1772
|
"""
|
|
2304
|
-
|
|
2305
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2306
|
-
|
|
2307
|
-
C++ signature :
|
|
2308
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1773
|
+
Current error vector.
|
|
2309
1774
|
"""
|
|
2310
1775
|
|
|
2311
|
-
kd:
|
|
1776
|
+
kd: float # double
|
|
2312
1777
|
"""
|
|
2313
|
-
|
|
2314
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2315
|
-
|
|
2316
|
-
C++ signature :
|
|
2317
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1778
|
+
D gain for position control (if negative, will be critically damped)
|
|
2318
1779
|
"""
|
|
2319
1780
|
|
|
2320
|
-
kp:
|
|
1781
|
+
kp: float # double
|
|
2321
1782
|
"""
|
|
2322
|
-
|
|
2323
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2324
|
-
|
|
2325
|
-
C++ signature :
|
|
2326
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1783
|
+
K gain for position control.
|
|
2327
1784
|
"""
|
|
2328
1785
|
|
|
2329
|
-
mask:
|
|
1786
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2330
1787
|
"""
|
|
2331
|
-
|
|
2332
|
-
None( (placo.DynamicsRelativeOrientationTask)arg1) -> placo.AxisesMask :
|
|
2333
|
-
|
|
2334
|
-
C++ signature :
|
|
2335
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
|
|
1788
|
+
Mask.
|
|
2336
1789
|
"""
|
|
2337
1790
|
|
|
2338
|
-
name:
|
|
1791
|
+
name: str # std::string
|
|
2339
1792
|
"""
|
|
2340
|
-
|
|
2341
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
2342
|
-
|
|
2343
|
-
C++ signature :
|
|
2344
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1793
|
+
Object name.
|
|
2345
1794
|
"""
|
|
2346
1795
|
|
|
2347
|
-
omega_a_b:
|
|
1796
|
+
omega_a_b: numpy.ndarray # Eigen::Vector3d
|
|
2348
1797
|
"""
|
|
2349
|
-
|
|
2350
|
-
None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
2351
|
-
|
|
2352
|
-
C++ signature :
|
|
2353
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
|
|
1798
|
+
Target relative angular velocity.
|
|
2354
1799
|
"""
|
|
2355
1800
|
|
|
2356
1801
|
priority: str
|
|
@@ -2360,13 +1805,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
|
2360
1805
|
|
|
2361
1806
|
|
|
2362
1807
|
class DynamicsRelativePositionTask:
|
|
2363
|
-
A:
|
|
1808
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2364
1809
|
"""
|
|
2365
|
-
|
|
2366
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2367
|
-
|
|
2368
|
-
C++ signature :
|
|
2369
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1810
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2370
1811
|
"""
|
|
2371
1812
|
|
|
2372
1813
|
def __init__(
|
|
@@ -2377,13 +1818,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2377
1818
|
) -> None:
|
|
2378
1819
|
...
|
|
2379
1820
|
|
|
2380
|
-
b:
|
|
1821
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
2381
1822
|
"""
|
|
2382
|
-
|
|
2383
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2384
|
-
|
|
2385
|
-
C++ signature :
|
|
2386
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1823
|
+
b vector in Ax = b, where x is the accelerations
|
|
2387
1824
|
"""
|
|
2388
1825
|
|
|
2389
1826
|
def configure(
|
|
@@ -2401,76 +1838,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2401
1838
|
"""
|
|
2402
1839
|
...
|
|
2403
1840
|
|
|
2404
|
-
ddtarget:
|
|
1841
|
+
ddtarget: numpy.ndarray # Eigen::Vector3d
|
|
2405
1842
|
"""
|
|
2406
|
-
|
|
2407
|
-
None( (placo.DynamicsRelativePositionTask)arg1) -> object :
|
|
2408
|
-
|
|
2409
|
-
C++ signature :
|
|
2410
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
|
|
1843
|
+
Target relative acceleration.
|
|
2411
1844
|
"""
|
|
2412
1845
|
|
|
2413
|
-
derror:
|
|
1846
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
2414
1847
|
"""
|
|
2415
|
-
|
|
2416
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2417
|
-
|
|
2418
|
-
C++ signature :
|
|
2419
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1848
|
+
Current velocity error vector.
|
|
2420
1849
|
"""
|
|
2421
1850
|
|
|
2422
|
-
dtarget:
|
|
1851
|
+
dtarget: numpy.ndarray # Eigen::Vector3d
|
|
2423
1852
|
"""
|
|
2424
|
-
|
|
2425
|
-
None( (placo.DynamicsRelativePositionTask)arg1) -> object :
|
|
2426
|
-
|
|
2427
|
-
C++ signature :
|
|
2428
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
|
|
1853
|
+
Target relative velocity.
|
|
2429
1854
|
"""
|
|
2430
1855
|
|
|
2431
|
-
error:
|
|
1856
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
2432
1857
|
"""
|
|
2433
|
-
|
|
2434
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2435
|
-
|
|
2436
|
-
C++ signature :
|
|
2437
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1858
|
+
Current error vector.
|
|
2438
1859
|
"""
|
|
2439
1860
|
|
|
2440
|
-
kd:
|
|
1861
|
+
kd: float # double
|
|
2441
1862
|
"""
|
|
2442
|
-
|
|
2443
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2444
|
-
|
|
2445
|
-
C++ signature :
|
|
2446
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1863
|
+
D gain for position control (if negative, will be critically damped)
|
|
2447
1864
|
"""
|
|
2448
1865
|
|
|
2449
|
-
kp:
|
|
1866
|
+
kp: float # double
|
|
2450
1867
|
"""
|
|
2451
|
-
|
|
2452
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2453
|
-
|
|
2454
|
-
C++ signature :
|
|
2455
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1868
|
+
K gain for position control.
|
|
2456
1869
|
"""
|
|
2457
1870
|
|
|
2458
|
-
mask:
|
|
1871
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2459
1872
|
"""
|
|
2460
|
-
|
|
2461
|
-
None( (placo.DynamicsRelativePositionTask)arg1) -> placo.AxisesMask :
|
|
2462
|
-
|
|
2463
|
-
C++ signature :
|
|
2464
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
|
|
1873
|
+
Mask.
|
|
2465
1874
|
"""
|
|
2466
1875
|
|
|
2467
|
-
name:
|
|
1876
|
+
name: str # std::string
|
|
2468
1877
|
"""
|
|
2469
|
-
|
|
2470
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
2471
|
-
|
|
2472
|
-
C++ signature :
|
|
2473
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1878
|
+
Object name.
|
|
2474
1879
|
"""
|
|
2475
1880
|
|
|
2476
1881
|
priority: str
|
|
@@ -2478,13 +1883,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
2478
1883
|
Priority [str]
|
|
2479
1884
|
"""
|
|
2480
1885
|
|
|
2481
|
-
target:
|
|
1886
|
+
target: numpy.ndarray # Eigen::Vector3d
|
|
2482
1887
|
"""
|
|
2483
|
-
|
|
2484
|
-
None( (placo.DynamicsRelativePositionTask)arg1) -> object :
|
|
2485
|
-
|
|
2486
|
-
C++ signature :
|
|
2487
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
|
|
1888
|
+
Target relative position.
|
|
2488
1889
|
"""
|
|
2489
1890
|
|
|
2490
1891
|
|
|
@@ -2741,22 +2142,14 @@ class DynamicsSolver:
|
|
|
2741
2142
|
) -> int:
|
|
2742
2143
|
...
|
|
2743
2144
|
|
|
2744
|
-
damping:
|
|
2145
|
+
damping: float # double
|
|
2745
2146
|
"""
|
|
2746
|
-
|
|
2747
|
-
None( (placo.DynamicsSolver)arg1) -> float :
|
|
2748
|
-
|
|
2749
|
-
C++ signature :
|
|
2750
|
-
double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2147
|
+
Global damping that is added to all the joints.
|
|
2751
2148
|
"""
|
|
2752
2149
|
|
|
2753
|
-
dt:
|
|
2150
|
+
dt: float # double
|
|
2754
2151
|
"""
|
|
2755
|
-
|
|
2756
|
-
None( (placo.DynamicsSolver)arg1) -> float :
|
|
2757
|
-
|
|
2758
|
-
C++ signature :
|
|
2759
|
-
double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2152
|
+
Solver dt (seconds)
|
|
2760
2153
|
"""
|
|
2761
2154
|
|
|
2762
2155
|
def dump_status(
|
|
@@ -2803,13 +2196,9 @@ None( (placo.DynamicsSolver)arg1) -> float :
|
|
|
2803
2196
|
"""
|
|
2804
2197
|
...
|
|
2805
2198
|
|
|
2806
|
-
extra_force:
|
|
2199
|
+
extra_force: numpy.ndarray # Eigen::VectorXd
|
|
2807
2200
|
"""
|
|
2808
|
-
|
|
2809
|
-
None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
|
|
2810
|
-
|
|
2811
|
-
C++ signature :
|
|
2812
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2201
|
+
Extra force to be added to the system (similar to non-linear terms)
|
|
2813
2202
|
"""
|
|
2814
2203
|
|
|
2815
2204
|
def get_contact(
|
|
@@ -2818,13 +2207,9 @@ None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
|
|
|
2818
2207
|
) -> Contact:
|
|
2819
2208
|
...
|
|
2820
2209
|
|
|
2821
|
-
gravity_only:
|
|
2210
|
+
gravity_only: bool # bool
|
|
2822
2211
|
"""
|
|
2823
|
-
|
|
2824
|
-
None( (placo.DynamicsSolver)arg1) -> bool :
|
|
2825
|
-
|
|
2826
|
-
C++ signature :
|
|
2827
|
-
bool {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2212
|
+
Use gravity only (no coriolis, no centrifugal)
|
|
2828
2213
|
"""
|
|
2829
2214
|
|
|
2830
2215
|
def mask_fbase(
|
|
@@ -2836,13 +2221,9 @@ None( (placo.DynamicsSolver)arg1) -> bool :
|
|
|
2836
2221
|
"""
|
|
2837
2222
|
...
|
|
2838
2223
|
|
|
2839
|
-
problem:
|
|
2224
|
+
problem: Problem # placo::problem::Problem
|
|
2840
2225
|
"""
|
|
2841
|
-
|
|
2842
|
-
None( (placo.DynamicsSolver)arg1) -> object :
|
|
2843
|
-
|
|
2844
|
-
C++ signature :
|
|
2845
|
-
placo::problem::Problem {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2226
|
+
Instance of the problem.
|
|
2846
2227
|
"""
|
|
2847
2228
|
|
|
2848
2229
|
def remove_constraint(
|
|
@@ -2876,14 +2257,7 @@ None( (placo.DynamicsSolver)arg1) -> object :
|
|
|
2876
2257
|
"""
|
|
2877
2258
|
...
|
|
2878
2259
|
|
|
2879
|
-
robot:
|
|
2880
|
-
"""
|
|
2881
|
-
|
|
2882
|
-
None( (placo.DynamicsSolver)arg1) -> object :
|
|
2883
|
-
|
|
2884
|
-
C++ signature :
|
|
2885
|
-
placo::model::RobotWrapper None(placo::dynamics::DynamicsSolver)
|
|
2886
|
-
"""
|
|
2260
|
+
robot: RobotWrapper # placo::model::RobotWrapper
|
|
2887
2261
|
|
|
2888
2262
|
def set_kd(
|
|
2889
2263
|
self,
|
|
@@ -2929,13 +2303,9 @@ None( (placo.DynamicsSolver)arg1) -> object :
|
|
|
2929
2303
|
) -> DynamicsSolverResult:
|
|
2930
2304
|
...
|
|
2931
2305
|
|
|
2932
|
-
torque_cost:
|
|
2306
|
+
torque_cost: float # double
|
|
2933
2307
|
"""
|
|
2934
|
-
|
|
2935
|
-
None( (placo.DynamicsSolver)arg1) -> float :
|
|
2936
|
-
|
|
2937
|
-
C++ signature :
|
|
2938
|
-
double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2308
|
+
Cost for torque regularization (1e-3 by default)
|
|
2939
2309
|
"""
|
|
2940
2310
|
|
|
2941
2311
|
|
|
@@ -2945,41 +2315,13 @@ class DynamicsSolverResult:
|
|
|
2945
2315
|
) -> None:
|
|
2946
2316
|
...
|
|
2947
2317
|
|
|
2948
|
-
qdd:
|
|
2949
|
-
"""
|
|
2950
|
-
|
|
2951
|
-
None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
2318
|
+
qdd: numpy.ndarray # Eigen::VectorXd
|
|
2952
2319
|
|
|
2953
|
-
|
|
2954
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2955
|
-
"""
|
|
2956
|
-
|
|
2957
|
-
success: any
|
|
2958
|
-
"""
|
|
2959
|
-
|
|
2960
|
-
None( (placo.DynamicsSolverResult)arg1) -> bool :
|
|
2320
|
+
success: bool # bool
|
|
2961
2321
|
|
|
2962
|
-
|
|
2963
|
-
bool {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2964
|
-
"""
|
|
2965
|
-
|
|
2966
|
-
tau: any
|
|
2967
|
-
"""
|
|
2968
|
-
|
|
2969
|
-
None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
2970
|
-
|
|
2971
|
-
C++ signature :
|
|
2972
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2973
|
-
"""
|
|
2974
|
-
|
|
2975
|
-
tau_contacts: any
|
|
2976
|
-
"""
|
|
2977
|
-
|
|
2978
|
-
None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
2322
|
+
tau: numpy.ndarray # Eigen::VectorXd
|
|
2979
2323
|
|
|
2980
|
-
|
|
2981
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2982
|
-
"""
|
|
2324
|
+
tau_contacts: numpy.ndarray # Eigen::VectorXd
|
|
2983
2325
|
|
|
2984
2326
|
def tau_dict(
|
|
2985
2327
|
arg1: DynamicsSolverResult,
|
|
@@ -2989,26 +2331,18 @@ None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
|
2989
2331
|
|
|
2990
2332
|
|
|
2991
2333
|
class DynamicsTask:
|
|
2992
|
-
A:
|
|
2334
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2993
2335
|
"""
|
|
2994
|
-
|
|
2995
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
2996
|
-
|
|
2997
|
-
C++ signature :
|
|
2998
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2336
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2999
2337
|
"""
|
|
3000
2338
|
|
|
3001
2339
|
def __init__(
|
|
3002
2340
|
) -> any:
|
|
3003
2341
|
...
|
|
3004
2342
|
|
|
3005
|
-
b:
|
|
2343
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
3006
2344
|
"""
|
|
3007
|
-
|
|
3008
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3009
|
-
|
|
3010
|
-
C++ signature :
|
|
3011
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2345
|
+
b vector in Ax = b, where x is the accelerations
|
|
3012
2346
|
"""
|
|
3013
2347
|
|
|
3014
2348
|
def configure(
|
|
@@ -3026,49 +2360,29 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
3026
2360
|
"""
|
|
3027
2361
|
...
|
|
3028
2362
|
|
|
3029
|
-
derror:
|
|
2363
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
3030
2364
|
"""
|
|
3031
|
-
|
|
3032
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3033
|
-
|
|
3034
|
-
C++ signature :
|
|
3035
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2365
|
+
Current velocity error vector.
|
|
3036
2366
|
"""
|
|
3037
2367
|
|
|
3038
|
-
error:
|
|
2368
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
3039
2369
|
"""
|
|
3040
|
-
|
|
3041
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3042
|
-
|
|
3043
|
-
C++ signature :
|
|
3044
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2370
|
+
Current error vector.
|
|
3045
2371
|
"""
|
|
3046
2372
|
|
|
3047
|
-
kd:
|
|
2373
|
+
kd: float # double
|
|
3048
2374
|
"""
|
|
3049
|
-
|
|
3050
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3051
|
-
|
|
3052
|
-
C++ signature :
|
|
3053
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2375
|
+
D gain for position control (if negative, will be critically damped)
|
|
3054
2376
|
"""
|
|
3055
2377
|
|
|
3056
|
-
kp:
|
|
2378
|
+
kp: float # double
|
|
3057
2379
|
"""
|
|
3058
|
-
|
|
3059
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3060
|
-
|
|
3061
|
-
C++ signature :
|
|
3062
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2380
|
+
K gain for position control.
|
|
3063
2381
|
"""
|
|
3064
2382
|
|
|
3065
|
-
name:
|
|
2383
|
+
name: str # std::string
|
|
3066
2384
|
"""
|
|
3067
|
-
|
|
3068
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
3069
|
-
|
|
3070
|
-
C++ signature :
|
|
3071
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
2385
|
+
Object name.
|
|
3072
2386
|
"""
|
|
3073
2387
|
|
|
3074
2388
|
priority: str
|
|
@@ -3078,13 +2392,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
3078
2392
|
|
|
3079
2393
|
|
|
3080
2394
|
class DynamicsTorqueTask:
|
|
3081
|
-
A:
|
|
2395
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
3082
2396
|
"""
|
|
3083
|
-
|
|
3084
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3085
|
-
|
|
3086
|
-
C++ signature :
|
|
3087
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2397
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
3088
2398
|
"""
|
|
3089
2399
|
|
|
3090
2400
|
def __init__(
|
|
@@ -3092,13 +2402,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
3092
2402
|
) -> None:
|
|
3093
2403
|
...
|
|
3094
2404
|
|
|
3095
|
-
b:
|
|
2405
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
3096
2406
|
"""
|
|
3097
|
-
|
|
3098
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3099
|
-
|
|
3100
|
-
C++ signature :
|
|
3101
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2407
|
+
b vector in Ax = b, where x is the accelerations
|
|
3102
2408
|
"""
|
|
3103
2409
|
|
|
3104
2410
|
def configure(
|
|
@@ -3116,49 +2422,29 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
3116
2422
|
"""
|
|
3117
2423
|
...
|
|
3118
2424
|
|
|
3119
|
-
derror:
|
|
2425
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
3120
2426
|
"""
|
|
3121
|
-
|
|
3122
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3123
|
-
|
|
3124
|
-
C++ signature :
|
|
3125
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2427
|
+
Current velocity error vector.
|
|
3126
2428
|
"""
|
|
3127
2429
|
|
|
3128
|
-
error:
|
|
2430
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
3129
2431
|
"""
|
|
3130
|
-
|
|
3131
|
-
None( (placo.DynamicsTask)arg1) -> object :
|
|
3132
|
-
|
|
3133
|
-
C++ signature :
|
|
3134
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2432
|
+
Current error vector.
|
|
3135
2433
|
"""
|
|
3136
2434
|
|
|
3137
|
-
kd:
|
|
2435
|
+
kd: float # double
|
|
3138
2436
|
"""
|
|
3139
|
-
|
|
3140
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3141
|
-
|
|
3142
|
-
C++ signature :
|
|
3143
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2437
|
+
D gain for position control (if negative, will be critically damped)
|
|
3144
2438
|
"""
|
|
3145
2439
|
|
|
3146
|
-
kp:
|
|
2440
|
+
kp: float # double
|
|
3147
2441
|
"""
|
|
3148
|
-
|
|
3149
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3150
|
-
|
|
3151
|
-
C++ signature :
|
|
3152
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2442
|
+
K gain for position control.
|
|
3153
2443
|
"""
|
|
3154
2444
|
|
|
3155
|
-
name:
|
|
2445
|
+
name: str # std::string
|
|
3156
2446
|
"""
|
|
3157
|
-
|
|
3158
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
3159
|
-
|
|
3160
|
-
C++ signature :
|
|
3161
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
2447
|
+
Object name.
|
|
3162
2448
|
"""
|
|
3163
2449
|
|
|
3164
2450
|
priority: str
|
|
@@ -3196,13 +2482,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
3196
2482
|
|
|
3197
2483
|
|
|
3198
2484
|
class Expression:
|
|
3199
|
-
A:
|
|
2485
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
3200
2486
|
"""
|
|
3201
|
-
|
|
3202
|
-
None( (placo.Expression)arg1) -> object :
|
|
3203
|
-
|
|
3204
|
-
C++ signature :
|
|
3205
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Expression {lvalue})
|
|
2487
|
+
Expression A matrix, in Ax + b.
|
|
3206
2488
|
"""
|
|
3207
2489
|
|
|
3208
2490
|
def __init__(
|
|
@@ -3210,13 +2492,9 @@ None( (placo.Expression)arg1) -> object :
|
|
|
3210
2492
|
) -> any:
|
|
3211
2493
|
...
|
|
3212
2494
|
|
|
3213
|
-
b:
|
|
2495
|
+
b: numpy.ndarray # Eigen::VectorXd
|
|
3214
2496
|
"""
|
|
3215
|
-
|
|
3216
|
-
None( (placo.Expression)arg1) -> object :
|
|
3217
|
-
|
|
3218
|
-
C++ signature :
|
|
3219
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Expression {lvalue})
|
|
2497
|
+
Expression b vector, in Ax + b.
|
|
3220
2498
|
"""
|
|
3221
2499
|
|
|
3222
2500
|
def cols(
|
|
@@ -3345,76 +2623,38 @@ class ExternalWrenchContact:
|
|
|
3345
2623
|
"""
|
|
3346
2624
|
...
|
|
3347
2625
|
|
|
3348
|
-
active:
|
|
2626
|
+
active: bool # bool
|
|
3349
2627
|
"""
|
|
3350
|
-
|
|
3351
|
-
None( (placo.Contact)arg1) -> bool :
|
|
3352
|
-
|
|
3353
|
-
C++ signature :
|
|
3354
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2628
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
3355
2629
|
"""
|
|
3356
2630
|
|
|
3357
|
-
frame_index: any
|
|
3358
|
-
"""
|
|
3359
|
-
|
|
3360
|
-
None( (placo.ExternalWrenchContact)arg1) -> int :
|
|
2631
|
+
frame_index: any # pinocchio::FrameIndex
|
|
3361
2632
|
|
|
3362
|
-
|
|
3363
|
-
unsigned long {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
|
|
2633
|
+
mu: float # double
|
|
3364
2634
|
"""
|
|
3365
|
-
|
|
3366
|
-
mu: any
|
|
2635
|
+
Coefficient of friction (if relevant)
|
|
3367
2636
|
"""
|
|
3368
|
-
|
|
3369
|
-
None( (placo.Contact)arg1) -> float :
|
|
3370
2637
|
|
|
3371
|
-
|
|
3372
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
3373
|
-
"""
|
|
2638
|
+
w_ext: numpy.ndarray # Eigen::VectorXd
|
|
3374
2639
|
|
|
3375
|
-
|
|
2640
|
+
weight_forces: float # double
|
|
3376
2641
|
"""
|
|
3377
|
-
|
|
3378
|
-
None( (placo.ExternalWrenchContact)arg1) -> object :
|
|
3379
|
-
|
|
3380
|
-
C++ signature :
|
|
3381
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
|
|
2642
|
+
Weight of forces for the optimization (if relevant)
|
|
3382
2643
|
"""
|
|
3383
2644
|
|
|
3384
|
-
|
|
2645
|
+
weight_moments: float # double
|
|
3385
2646
|
"""
|
|
3386
|
-
|
|
3387
|
-
None( (placo.Contact)arg1) -> float :
|
|
3388
|
-
|
|
3389
|
-
C++ signature :
|
|
3390
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2647
|
+
Weight of moments for optimization (if relevant)
|
|
3391
2648
|
"""
|
|
3392
2649
|
|
|
3393
|
-
|
|
2650
|
+
weight_tangentials: float # double
|
|
3394
2651
|
"""
|
|
3395
|
-
|
|
3396
|
-
None( (placo.Contact)arg1) -> float :
|
|
3397
|
-
|
|
3398
|
-
C++ signature :
|
|
3399
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
3400
|
-
"""
|
|
3401
|
-
|
|
3402
|
-
weight_tangentials: any
|
|
3403
|
-
"""
|
|
3404
|
-
|
|
3405
|
-
None( (placo.Contact)arg1) -> float :
|
|
3406
|
-
|
|
3407
|
-
C++ signature :
|
|
3408
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2652
|
+
Extra cost for tangential forces.
|
|
3409
2653
|
"""
|
|
3410
2654
|
|
|
3411
|
-
wrench:
|
|
2655
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
3412
2656
|
"""
|
|
3413
|
-
|
|
3414
|
-
None( (placo.Contact)arg1) -> object :
|
|
3415
|
-
|
|
3416
|
-
C++ signature :
|
|
3417
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2657
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
3418
2658
|
"""
|
|
3419
2659
|
|
|
3420
2660
|
|
|
@@ -3508,32 +2748,11 @@ class Footstep:
|
|
|
3508
2748
|
) -> any:
|
|
3509
2749
|
...
|
|
3510
2750
|
|
|
3511
|
-
foot_length:
|
|
3512
|
-
"""
|
|
3513
|
-
|
|
3514
|
-
None( (placo.Footstep)arg1) -> float :
|
|
2751
|
+
foot_length: float # double
|
|
3515
2752
|
|
|
3516
|
-
|
|
3517
|
-
double {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
|
|
3518
|
-
"""
|
|
3519
|
-
|
|
3520
|
-
foot_width: any
|
|
3521
|
-
"""
|
|
3522
|
-
|
|
3523
|
-
None( (placo.Footstep)arg1) -> float :
|
|
3524
|
-
|
|
3525
|
-
C++ signature :
|
|
3526
|
-
double {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
|
|
3527
|
-
"""
|
|
3528
|
-
|
|
3529
|
-
frame: any
|
|
3530
|
-
"""
|
|
3531
|
-
|
|
3532
|
-
None( (placo.Footstep)arg1) -> object :
|
|
2753
|
+
foot_width: float # double
|
|
3533
2754
|
|
|
3534
|
-
|
|
3535
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
|
|
3536
|
-
"""
|
|
2755
|
+
frame: numpy.ndarray # Eigen::Affine3d
|
|
3537
2756
|
|
|
3538
2757
|
def overlap(
|
|
3539
2758
|
self,
|
|
@@ -3557,14 +2776,7 @@ None( (placo.Footstep)arg1) -> object :
|
|
|
3557
2776
|
) -> None:
|
|
3558
2777
|
...
|
|
3559
2778
|
|
|
3560
|
-
side: any
|
|
3561
|
-
"""
|
|
3562
|
-
|
|
3563
|
-
None( (placo.Footstep)arg1) -> placo.HumanoidRobot_Side :
|
|
3564
|
-
|
|
3565
|
-
C++ signature :
|
|
3566
|
-
placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
|
|
3567
|
-
"""
|
|
2779
|
+
side: any # placo::humanoid::HumanoidRobot::Side
|
|
3568
2780
|
|
|
3569
2781
|
def support_polygon(
|
|
3570
2782
|
self,
|
|
@@ -3793,13 +3005,6 @@ class FootstepsPlannerRepetitive:
|
|
|
3793
3005
|
|
|
3794
3006
|
class FrameTask:
|
|
3795
3007
|
T_world_frame: any
|
|
3796
|
-
"""
|
|
3797
|
-
|
|
3798
|
-
None( (placo.FrameTask)arg1) -> object :
|
|
3799
|
-
|
|
3800
|
-
C++ signature :
|
|
3801
|
-
Eigen::Transform<double, 3, 2, 0> None(placo::kinematics::FrameTask {lvalue})
|
|
3802
|
-
"""
|
|
3803
3008
|
|
|
3804
3009
|
def __init__(
|
|
3805
3010
|
self,
|
|
@@ -3838,13 +3043,9 @@ None( (placo.FrameTask)arg1) -> object :
|
|
|
3838
3043
|
|
|
3839
3044
|
|
|
3840
3045
|
class GearTask:
|
|
3841
|
-
A:
|
|
3046
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
3842
3047
|
"""
|
|
3843
|
-
|
|
3844
|
-
None( (placo.Task)arg1) -> object :
|
|
3845
|
-
|
|
3846
|
-
C++ signature :
|
|
3847
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
3048
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
3848
3049
|
"""
|
|
3849
3050
|
|
|
3850
3051
|
def __init__(
|
|
@@ -3870,13 +3071,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
3870
3071
|
"""
|
|
3871
3072
|
...
|
|
3872
3073
|
|
|
3873
|
-
b:
|
|
3074
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
3874
3075
|
"""
|
|
3875
|
-
|
|
3876
|
-
None( (placo.Task)arg1) -> object :
|
|
3877
|
-
|
|
3878
|
-
C++ signature :
|
|
3879
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
3076
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
3880
3077
|
"""
|
|
3881
3078
|
|
|
3882
3079
|
def configure(
|
|
@@ -3910,13 +3107,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
3910
3107
|
"""
|
|
3911
3108
|
...
|
|
3912
3109
|
|
|
3913
|
-
name:
|
|
3110
|
+
name: str # std::string
|
|
3914
3111
|
"""
|
|
3915
|
-
|
|
3916
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
3917
|
-
|
|
3918
|
-
C++ signature :
|
|
3919
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
3112
|
+
Object name.
|
|
3920
3113
|
"""
|
|
3921
3114
|
|
|
3922
3115
|
priority: str
|
|
@@ -3954,14 +3147,7 @@ class HumanoidParameters:
|
|
|
3954
3147
|
) -> None:
|
|
3955
3148
|
...
|
|
3956
3149
|
|
|
3957
|
-
dcm_offset_polygon:
|
|
3958
|
-
"""
|
|
3959
|
-
|
|
3960
|
-
None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
|
|
3961
|
-
|
|
3962
|
-
C++ signature :
|
|
3963
|
-
std::vector<Eigen::Matrix<double, 2, 1, 0, 2, 1>, std::allocator<Eigen::Matrix<double, 2, 1, 0, 2, 1> > > {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3964
|
-
"""
|
|
3150
|
+
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3965
3151
|
|
|
3966
3152
|
def double_support_duration(
|
|
3967
3153
|
self,
|
|
@@ -3971,13 +3157,9 @@ None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
|
|
|
3971
3157
|
"""
|
|
3972
3158
|
...
|
|
3973
3159
|
|
|
3974
|
-
double_support_ratio:
|
|
3160
|
+
double_support_ratio: float # double
|
|
3975
3161
|
"""
|
|
3976
|
-
|
|
3977
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
3978
|
-
|
|
3979
|
-
C++ signature :
|
|
3980
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3162
|
+
Duration ratio between single support and double support.
|
|
3981
3163
|
"""
|
|
3982
3164
|
|
|
3983
3165
|
def double_support_timesteps(
|
|
@@ -4005,49 +3187,29 @@ None( (placo.HumanoidParameters)arg1) -> float :
|
|
|
4005
3187
|
"""
|
|
4006
3188
|
...
|
|
4007
3189
|
|
|
4008
|
-
feet_spacing:
|
|
3190
|
+
feet_spacing: float # double
|
|
4009
3191
|
"""
|
|
4010
|
-
|
|
4011
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4012
|
-
|
|
4013
|
-
C++ signature :
|
|
4014
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3192
|
+
Lateral spacing between feet [m].
|
|
4015
3193
|
"""
|
|
4016
3194
|
|
|
4017
|
-
foot_length:
|
|
3195
|
+
foot_length: float # double
|
|
4018
3196
|
"""
|
|
4019
|
-
|
|
4020
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4021
|
-
|
|
4022
|
-
C++ signature :
|
|
4023
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3197
|
+
Foot length [m].
|
|
4024
3198
|
"""
|
|
4025
3199
|
|
|
4026
|
-
foot_width:
|
|
3200
|
+
foot_width: float # double
|
|
4027
3201
|
"""
|
|
4028
|
-
|
|
4029
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4030
|
-
|
|
4031
|
-
C++ signature :
|
|
4032
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3202
|
+
Foot width [m].
|
|
4033
3203
|
"""
|
|
4034
3204
|
|
|
4035
|
-
foot_zmp_target_x:
|
|
3205
|
+
foot_zmp_target_x: float # double
|
|
4036
3206
|
"""
|
|
4037
|
-
|
|
4038
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4039
|
-
|
|
4040
|
-
C++ signature :
|
|
4041
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3207
|
+
Target offset for the ZMP x reference trajectory in the foot frame [m].
|
|
4042
3208
|
"""
|
|
4043
3209
|
|
|
4044
|
-
foot_zmp_target_y:
|
|
3210
|
+
foot_zmp_target_y: float # double
|
|
4045
3211
|
"""
|
|
4046
|
-
|
|
4047
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4048
|
-
|
|
4049
|
-
C++ signature :
|
|
4050
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3212
|
+
Target offset for the ZMP x reference trajectory in the foot frame, positive is "outward" [m].
|
|
4051
3213
|
"""
|
|
4052
3214
|
|
|
4053
3215
|
def has_double_support(
|
|
@@ -4058,40 +3220,21 @@ None( (placo.HumanoidParameters)arg1) -> float :
|
|
|
4058
3220
|
"""
|
|
4059
3221
|
...
|
|
4060
3222
|
|
|
4061
|
-
op_space_polygon:
|
|
4062
|
-
"""
|
|
4063
|
-
|
|
4064
|
-
None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
|
|
4065
|
-
|
|
4066
|
-
C++ signature :
|
|
4067
|
-
std::vector<Eigen::Matrix<double, 2, 1, 0, 2, 1>, std::allocator<Eigen::Matrix<double, 2, 1, 0, 2, 1> > > {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
4068
|
-
"""
|
|
3223
|
+
op_space_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
4069
3224
|
|
|
4070
|
-
planned_timesteps:
|
|
3225
|
+
planned_timesteps: int # int
|
|
4071
3226
|
"""
|
|
4072
|
-
|
|
4073
|
-
None( (placo.HumanoidParameters)arg1) -> int :
|
|
4074
|
-
|
|
4075
|
-
C++ signature :
|
|
4076
|
-
int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3227
|
+
Planning horizon for the CoM trajectory.
|
|
4077
3228
|
"""
|
|
4078
3229
|
|
|
4079
|
-
single_support_duration:
|
|
3230
|
+
single_support_duration: float # double
|
|
4080
3231
|
"""
|
|
4081
|
-
|
|
4082
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4083
|
-
|
|
4084
|
-
C++ signature :
|
|
4085
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3232
|
+
Single support duration [s].
|
|
4086
3233
|
"""
|
|
4087
3234
|
|
|
4088
|
-
single_support_timesteps:
|
|
3235
|
+
single_support_timesteps: int # int
|
|
4089
3236
|
"""
|
|
4090
|
-
|
|
4091
|
-
None( (placo.HumanoidParameters)arg1) -> int :
|
|
4092
|
-
|
|
4093
|
-
C++ signature :
|
|
4094
|
-
int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3237
|
+
Number of timesteps for one single support.
|
|
4095
3238
|
"""
|
|
4096
3239
|
|
|
4097
3240
|
def startend_double_support_duration(
|
|
@@ -4102,13 +3245,9 @@ None( (placo.HumanoidParameters)arg1) -> int :
|
|
|
4102
3245
|
"""
|
|
4103
3246
|
...
|
|
4104
3247
|
|
|
4105
|
-
startend_double_support_ratio:
|
|
3248
|
+
startend_double_support_ratio: float # double
|
|
4106
3249
|
"""
|
|
4107
|
-
|
|
4108
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4109
|
-
|
|
4110
|
-
C++ signature :
|
|
4111
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3250
|
+
Duration ratio between single support and start/end double support.
|
|
4112
3251
|
"""
|
|
4113
3252
|
|
|
4114
3253
|
def startend_double_support_timesteps(
|
|
@@ -4119,103 +3258,59 @@ None( (placo.HumanoidParameters)arg1) -> float :
|
|
|
4119
3258
|
"""
|
|
4120
3259
|
...
|
|
4121
3260
|
|
|
4122
|
-
walk_com_height:
|
|
3261
|
+
walk_com_height: float # double
|
|
4123
3262
|
"""
|
|
4124
|
-
|
|
4125
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4126
|
-
|
|
4127
|
-
C++ signature :
|
|
4128
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3263
|
+
Target CoM height while walking [m].
|
|
4129
3264
|
"""
|
|
4130
3265
|
|
|
4131
|
-
walk_dtheta_spacing:
|
|
3266
|
+
walk_dtheta_spacing: float # double
|
|
4132
3267
|
"""
|
|
4133
|
-
|
|
4134
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4135
|
-
|
|
4136
|
-
C++ signature :
|
|
4137
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3268
|
+
How much we need to space the feet per dtheta [m/rad].
|
|
4138
3269
|
"""
|
|
4139
3270
|
|
|
4140
|
-
walk_foot_height:
|
|
3271
|
+
walk_foot_height: float # double
|
|
4141
3272
|
"""
|
|
4142
|
-
|
|
4143
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4144
|
-
|
|
4145
|
-
C++ signature :
|
|
4146
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3273
|
+
How height the feet are rising while walking [m].
|
|
4147
3274
|
"""
|
|
4148
3275
|
|
|
4149
|
-
walk_foot_rise_ratio:
|
|
3276
|
+
walk_foot_rise_ratio: float # double
|
|
4150
3277
|
"""
|
|
4151
|
-
|
|
4152
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4153
|
-
|
|
4154
|
-
C++ signature :
|
|
4155
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3278
|
+
ratio of time spent at foot height during the step
|
|
4156
3279
|
"""
|
|
4157
3280
|
|
|
4158
|
-
walk_max_dtheta:
|
|
3281
|
+
walk_max_dtheta: float # double
|
|
4159
3282
|
"""
|
|
4160
|
-
|
|
4161
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4162
|
-
|
|
4163
|
-
C++ signature :
|
|
4164
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3283
|
+
Maximum step (yaw)
|
|
4165
3284
|
"""
|
|
4166
3285
|
|
|
4167
|
-
walk_max_dx_backward:
|
|
3286
|
+
walk_max_dx_backward: float # double
|
|
4168
3287
|
"""
|
|
4169
|
-
|
|
4170
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4171
|
-
|
|
4172
|
-
C++ signature :
|
|
4173
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3288
|
+
Maximum step (backward)
|
|
4174
3289
|
"""
|
|
4175
3290
|
|
|
4176
|
-
walk_max_dx_forward:
|
|
3291
|
+
walk_max_dx_forward: float # double
|
|
4177
3292
|
"""
|
|
4178
|
-
|
|
4179
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4180
|
-
|
|
4181
|
-
C++ signature :
|
|
4182
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3293
|
+
Maximum step (forward)
|
|
4183
3294
|
"""
|
|
4184
3295
|
|
|
4185
|
-
walk_max_dy:
|
|
3296
|
+
walk_max_dy: float # double
|
|
4186
3297
|
"""
|
|
4187
|
-
|
|
4188
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4189
|
-
|
|
4190
|
-
C++ signature :
|
|
4191
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3298
|
+
Maximum step (lateral)
|
|
4192
3299
|
"""
|
|
4193
3300
|
|
|
4194
|
-
walk_trunk_pitch:
|
|
3301
|
+
walk_trunk_pitch: float # double
|
|
4195
3302
|
"""
|
|
4196
|
-
|
|
4197
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4198
|
-
|
|
4199
|
-
C++ signature :
|
|
4200
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3303
|
+
Trunk pitch while walking [rad].
|
|
4201
3304
|
"""
|
|
4202
3305
|
|
|
4203
|
-
zmp_margin:
|
|
3306
|
+
zmp_margin: float # double
|
|
4204
3307
|
"""
|
|
4205
|
-
|
|
4206
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4207
|
-
|
|
4208
|
-
C++ signature :
|
|
4209
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3308
|
+
Margin for the ZMP to live in the support polygon [m].
|
|
4210
3309
|
"""
|
|
4211
3310
|
|
|
4212
|
-
zmp_reference_weight:
|
|
3311
|
+
zmp_reference_weight: float # double
|
|
4213
3312
|
"""
|
|
4214
|
-
|
|
4215
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4216
|
-
|
|
4217
|
-
C++ signature :
|
|
4218
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3313
|
+
Weight for ZMP reference in the solver.
|
|
4219
3314
|
"""
|
|
4220
3315
|
|
|
4221
3316
|
|
|
@@ -4245,13 +3340,9 @@ class HumanoidRobot:
|
|
|
4245
3340
|
"""
|
|
4246
3341
|
...
|
|
4247
3342
|
|
|
4248
|
-
collision_model: any
|
|
3343
|
+
collision_model: any # pinocchio::GeometryModel
|
|
4249
3344
|
"""
|
|
4250
|
-
|
|
4251
|
-
None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
4252
|
-
|
|
4253
|
-
C++ signature :
|
|
4254
|
-
pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3345
|
+
Pinocchio collision model.
|
|
4255
3346
|
"""
|
|
4256
3347
|
|
|
4257
3348
|
def com_jacobian(
|
|
@@ -4305,7 +3396,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4305
3396
|
"""
|
|
4306
3397
|
Computes all minimum distances between current collision pairs.
|
|
4307
3398
|
|
|
4308
|
-
:return: <Element 'para' at
|
|
3399
|
+
:return: <Element 'para' at 0xffb37a535800>
|
|
4309
3400
|
"""
|
|
4310
3401
|
...
|
|
4311
3402
|
|
|
@@ -4337,7 +3428,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4337
3428
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
4338
3429
|
|
|
4339
3430
|
:param any frame: the frame for which we want the jacobian
|
|
4340
|
-
:return: <Element 'para' at
|
|
3431
|
+
:return: <Element 'para' at 0xffb37a5362a0>
|
|
4341
3432
|
"""
|
|
4342
3433
|
...
|
|
4343
3434
|
|
|
@@ -4350,7 +3441,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4350
3441
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
4351
3442
|
|
|
4352
3443
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4353
|
-
:return: <Element 'para' at
|
|
3444
|
+
:return: <Element 'para' at 0xffb37a537bf0>
|
|
4354
3445
|
"""
|
|
4355
3446
|
...
|
|
4356
3447
|
|
|
@@ -4595,13 +3686,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4595
3686
|
"""
|
|
4596
3687
|
...
|
|
4597
3688
|
|
|
4598
|
-
model: any
|
|
3689
|
+
model: any # pinocchio::Model
|
|
4599
3690
|
"""
|
|
4600
|
-
|
|
4601
|
-
None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
4602
|
-
|
|
4603
|
-
C++ signature :
|
|
4604
|
-
pinocchio::ModelTpl<double, 0, pinocchio::JointCollectionDefaultTpl> {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3691
|
+
Pinocchio model.
|
|
4605
3692
|
"""
|
|
4606
3693
|
|
|
4607
3694
|
def neutral_state(
|
|
@@ -4656,7 +3743,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4656
3743
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
4657
3744
|
|
|
4658
3745
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4659
|
-
:return: <Element 'para' at
|
|
3746
|
+
:return: <Element 'para' at 0xffb37a535120>
|
|
4660
3747
|
"""
|
|
4661
3748
|
...
|
|
4662
3749
|
|
|
@@ -4810,13 +3897,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4810
3897
|
"""
|
|
4811
3898
|
...
|
|
4812
3899
|
|
|
4813
|
-
state:
|
|
3900
|
+
state: RobotWrapper_State # placo::model::RobotWrapper::State
|
|
4814
3901
|
"""
|
|
4815
|
-
|
|
4816
|
-
None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
|
|
4817
|
-
|
|
4818
|
-
C++ signature :
|
|
4819
|
-
placo::model::RobotWrapper::State {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3902
|
+
Robot's current state.
|
|
4820
3903
|
"""
|
|
4821
3904
|
|
|
4822
3905
|
def static_gravity_compensation_torques(
|
|
@@ -4834,22 +3917,14 @@ None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
|
|
|
4834
3917
|
) -> dict:
|
|
4835
3918
|
...
|
|
4836
3919
|
|
|
4837
|
-
support_is_both:
|
|
3920
|
+
support_is_both: bool # bool
|
|
4838
3921
|
"""
|
|
4839
|
-
|
|
4840
|
-
None( (placo.HumanoidRobot)arg1) -> bool :
|
|
4841
|
-
|
|
4842
|
-
C++ signature :
|
|
4843
|
-
bool {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3922
|
+
Are both feet supporting the robot.
|
|
4844
3923
|
"""
|
|
4845
3924
|
|
|
4846
|
-
support_side: any
|
|
3925
|
+
support_side: any # placo::humanoid::HumanoidRobot::Side
|
|
4847
3926
|
"""
|
|
4848
|
-
|
|
4849
|
-
None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
4850
|
-
|
|
4851
|
-
C++ signature :
|
|
4852
|
-
placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3927
|
+
The current side (left or right) associated with T_world_support.
|
|
4853
3928
|
"""
|
|
4854
3929
|
|
|
4855
3930
|
def torques_from_acceleration_with_fixed_frame(
|
|
@@ -4910,13 +3985,9 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4910
3985
|
"""
|
|
4911
3986
|
...
|
|
4912
3987
|
|
|
4913
|
-
visual_model: any
|
|
3988
|
+
visual_model: any # pinocchio::GeometryModel
|
|
4914
3989
|
"""
|
|
4915
|
-
|
|
4916
|
-
None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
4917
|
-
|
|
4918
|
-
C++ signature :
|
|
4919
|
-
pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3990
|
+
Pinocchio visual model.
|
|
4920
3991
|
"""
|
|
4921
3992
|
|
|
4922
3993
|
def zmp(
|
|
@@ -5019,31 +4090,19 @@ class Integrator:
|
|
|
5019
4090
|
"""
|
|
5020
4091
|
Integrator can be used to efficiently build expressions and values over a decision variable that is integrated over time with a given linear system.
|
|
5021
4092
|
"""
|
|
5022
|
-
A:
|
|
4093
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5023
4094
|
"""
|
|
5024
|
-
|
|
5025
|
-
None( (placo.Integrator)arg1) -> object :
|
|
5026
|
-
|
|
5027
|
-
C++ signature :
|
|
5028
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
|
|
4095
|
+
The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
|
|
5029
4096
|
"""
|
|
5030
4097
|
|
|
5031
|
-
B:
|
|
4098
|
+
B: numpy.ndarray # Eigen::MatrixXd
|
|
5032
4099
|
"""
|
|
5033
|
-
|
|
5034
|
-
None( (placo.Integrator)arg1) -> object :
|
|
5035
|
-
|
|
5036
|
-
C++ signature :
|
|
5037
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
|
|
4100
|
+
The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
|
|
5038
4101
|
"""
|
|
5039
4102
|
|
|
5040
|
-
M:
|
|
4103
|
+
M: numpy.ndarray # Eigen::MatrixXd
|
|
5041
4104
|
"""
|
|
5042
|
-
|
|
5043
|
-
None( (placo.Integrator)arg1) -> object :
|
|
5044
|
-
|
|
5045
|
-
C++ signature :
|
|
5046
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
|
|
4105
|
+
The continuous system matrix.
|
|
5047
4106
|
"""
|
|
5048
4107
|
|
|
5049
4108
|
def __init__(
|
|
@@ -5077,13 +4136,9 @@ None( (placo.Integrator)arg1) -> object :
|
|
|
5077
4136
|
"""
|
|
5078
4137
|
...
|
|
5079
4138
|
|
|
5080
|
-
final_transition_matrix:
|
|
4139
|
+
final_transition_matrix: numpy.ndarray # Eigen::MatrixXd
|
|
5081
4140
|
"""
|
|
5082
|
-
|
|
5083
|
-
None( (placo.Integrator)arg1) -> object :
|
|
5084
|
-
|
|
5085
|
-
C++ signature :
|
|
5086
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
|
|
4141
|
+
Caching the discrete matrix for the last step.
|
|
5087
4142
|
"""
|
|
5088
4143
|
|
|
5089
4144
|
def get_trajectory(
|
|
@@ -5094,13 +4149,9 @@ None( (placo.Integrator)arg1) -> object :
|
|
|
5094
4149
|
"""
|
|
5095
4150
|
...
|
|
5096
4151
|
|
|
5097
|
-
t_start:
|
|
4152
|
+
t_start: float # double
|
|
5098
4153
|
"""
|
|
5099
|
-
|
|
5100
|
-
None( (placo.Integrator)arg1) -> float :
|
|
5101
|
-
|
|
5102
|
-
C++ signature :
|
|
5103
|
-
double {lvalue} None(placo::problem::Integrator {lvalue})
|
|
4154
|
+
Time offset for the trajectory.
|
|
5104
4155
|
"""
|
|
5105
4156
|
|
|
5106
4157
|
@staticmethod
|
|
@@ -5153,13 +4204,9 @@ class IntegratorTrajectory:
|
|
|
5153
4204
|
|
|
5154
4205
|
|
|
5155
4206
|
class JointSpaceHalfSpacesConstraint:
|
|
5156
|
-
A:
|
|
4207
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5157
4208
|
"""
|
|
5158
|
-
|
|
5159
|
-
None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
|
|
5160
|
-
|
|
5161
|
-
C++ signature :
|
|
5162
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::JointSpaceHalfSpacesConstraint {lvalue})
|
|
4209
|
+
Matrix A in Aq <= b.
|
|
5163
4210
|
"""
|
|
5164
4211
|
|
|
5165
4212
|
def __init__(
|
|
@@ -5172,13 +4219,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
|
|
|
5172
4219
|
"""
|
|
5173
4220
|
...
|
|
5174
4221
|
|
|
5175
|
-
b:
|
|
4222
|
+
b: numpy.ndarray # Eigen::VectorXd
|
|
5176
4223
|
"""
|
|
5177
|
-
|
|
5178
|
-
None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
|
|
5179
|
-
|
|
5180
|
-
C++ signature :
|
|
5181
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::kinematics::JointSpaceHalfSpacesConstraint {lvalue})
|
|
4224
|
+
Vector b in Aq <= b.
|
|
5182
4225
|
"""
|
|
5183
4226
|
|
|
5184
4227
|
def configure(
|
|
@@ -5196,13 +4239,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
|
|
|
5196
4239
|
"""
|
|
5197
4240
|
...
|
|
5198
4241
|
|
|
5199
|
-
name:
|
|
4242
|
+
name: str # std::string
|
|
5200
4243
|
"""
|
|
5201
|
-
|
|
5202
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
5203
|
-
|
|
5204
|
-
C++ signature :
|
|
5205
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
4244
|
+
Object name.
|
|
5206
4245
|
"""
|
|
5207
4246
|
|
|
5208
4247
|
priority: str
|
|
@@ -5212,13 +4251,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
5212
4251
|
|
|
5213
4252
|
|
|
5214
4253
|
class JointsTask:
|
|
5215
|
-
A:
|
|
4254
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5216
4255
|
"""
|
|
5217
|
-
|
|
5218
|
-
None( (placo.Task)arg1) -> object :
|
|
5219
|
-
|
|
5220
|
-
C++ signature :
|
|
5221
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
4256
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
5222
4257
|
"""
|
|
5223
4258
|
|
|
5224
4259
|
def __init__(
|
|
@@ -5229,13 +4264,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5229
4264
|
"""
|
|
5230
4265
|
...
|
|
5231
4266
|
|
|
5232
|
-
b:
|
|
4267
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
5233
4268
|
"""
|
|
5234
|
-
|
|
5235
|
-
None( (placo.Task)arg1) -> object :
|
|
5236
|
-
|
|
5237
|
-
C++ signature :
|
|
5238
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
4269
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
5239
4270
|
"""
|
|
5240
4271
|
|
|
5241
4272
|
def configure(
|
|
@@ -5280,13 +4311,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5280
4311
|
"""
|
|
5281
4312
|
...
|
|
5282
4313
|
|
|
5283
|
-
name:
|
|
4314
|
+
name: str # std::string
|
|
5284
4315
|
"""
|
|
5285
|
-
|
|
5286
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
5287
|
-
|
|
5288
|
-
C++ signature :
|
|
5289
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
4316
|
+
Object name.
|
|
5290
4317
|
"""
|
|
5291
4318
|
|
|
5292
4319
|
priority: str
|
|
@@ -5342,13 +4369,9 @@ class KinematicsConstraint:
|
|
|
5342
4369
|
"""
|
|
5343
4370
|
...
|
|
5344
4371
|
|
|
5345
|
-
name:
|
|
4372
|
+
name: str # std::string
|
|
5346
4373
|
"""
|
|
5347
|
-
|
|
5348
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
5349
|
-
|
|
5350
|
-
C++ signature :
|
|
5351
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
4374
|
+
Object name.
|
|
5352
4375
|
"""
|
|
5353
4376
|
|
|
5354
4377
|
priority: str
|
|
@@ -5358,13 +4381,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
5358
4381
|
|
|
5359
4382
|
|
|
5360
4383
|
class KinematicsSolver:
|
|
5361
|
-
N:
|
|
4384
|
+
N: int # int
|
|
5362
4385
|
"""
|
|
5363
|
-
|
|
5364
|
-
None( (placo.KinematicsSolver)arg1) -> int :
|
|
5365
|
-
|
|
5366
|
-
C++ signature :
|
|
5367
|
-
int {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4386
|
+
Size of the problem (number of variables)
|
|
5368
4387
|
"""
|
|
5369
4388
|
|
|
5370
4389
|
def __init__(
|
|
@@ -5678,13 +4697,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5678
4697
|
"""
|
|
5679
4698
|
...
|
|
5680
4699
|
|
|
5681
|
-
dt:
|
|
4700
|
+
dt: float # double
|
|
5682
4701
|
"""
|
|
5683
|
-
|
|
5684
|
-
None( (placo.KinematicsSolver)arg1) -> float :
|
|
5685
|
-
|
|
5686
|
-
C++ signature :
|
|
5687
|
-
double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4702
|
+
solver dt (for speeds limiting)
|
|
5688
4703
|
"""
|
|
5689
4704
|
|
|
5690
4705
|
def dump_status(
|
|
@@ -5733,13 +4748,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
|
|
|
5733
4748
|
"""
|
|
5734
4749
|
...
|
|
5735
4750
|
|
|
5736
|
-
problem:
|
|
4751
|
+
problem: Problem # placo::problem::Problem
|
|
5737
4752
|
"""
|
|
5738
|
-
|
|
5739
|
-
None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
5740
|
-
|
|
5741
|
-
C++ signature :
|
|
5742
|
-
placo::problem::Problem {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4753
|
+
The underlying QP problem.
|
|
5743
4754
|
"""
|
|
5744
4755
|
|
|
5745
4756
|
def remove_constraint(
|
|
@@ -5764,22 +4775,14 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
|
5764
4775
|
"""
|
|
5765
4776
|
...
|
|
5766
4777
|
|
|
5767
|
-
robot:
|
|
4778
|
+
robot: RobotWrapper # placo::model::RobotWrapper
|
|
5768
4779
|
"""
|
|
5769
|
-
|
|
5770
|
-
None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
|
|
5771
|
-
|
|
5772
|
-
C++ signature :
|
|
5773
|
-
placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
|
|
4780
|
+
The robot controlled by this solver.
|
|
5774
4781
|
"""
|
|
5775
4782
|
|
|
5776
|
-
scale:
|
|
4783
|
+
scale: float # double
|
|
5777
4784
|
"""
|
|
5778
|
-
|
|
5779
|
-
None( (placo.KinematicsSolver)arg1) -> float :
|
|
5780
|
-
|
|
5781
|
-
C++ signature :
|
|
5782
|
-
double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4785
|
+
scale obtained when using tasks scaling
|
|
5783
4786
|
"""
|
|
5784
4787
|
|
|
5785
4788
|
def solve(
|
|
@@ -5814,13 +4817,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
|
|
|
5814
4817
|
|
|
5815
4818
|
|
|
5816
4819
|
class KineticEnergyRegularizationTask:
|
|
5817
|
-
A:
|
|
4820
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5818
4821
|
"""
|
|
5819
|
-
|
|
5820
|
-
None( (placo.Task)arg1) -> object :
|
|
5821
|
-
|
|
5822
|
-
C++ signature :
|
|
5823
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
4822
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
5824
4823
|
"""
|
|
5825
4824
|
|
|
5826
4825
|
def __init__(
|
|
@@ -5828,13 +4827,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5828
4827
|
) -> None:
|
|
5829
4828
|
...
|
|
5830
4829
|
|
|
5831
|
-
b:
|
|
4830
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
5832
4831
|
"""
|
|
5833
|
-
|
|
5834
|
-
None( (placo.Task)arg1) -> object :
|
|
5835
|
-
|
|
5836
|
-
C++ signature :
|
|
5837
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
4832
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
5838
4833
|
"""
|
|
5839
4834
|
|
|
5840
4835
|
def configure(
|
|
@@ -5868,13 +4863,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5868
4863
|
"""
|
|
5869
4864
|
...
|
|
5870
4865
|
|
|
5871
|
-
name:
|
|
4866
|
+
name: str # std::string
|
|
5872
4867
|
"""
|
|
5873
|
-
|
|
5874
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
5875
|
-
|
|
5876
|
-
C++ signature :
|
|
5877
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
4868
|
+
Object name.
|
|
5878
4869
|
"""
|
|
5879
4870
|
|
|
5880
4871
|
priority: str
|
|
@@ -5934,14 +4925,7 @@ class LIPM:
|
|
|
5934
4925
|
) -> Expression:
|
|
5935
4926
|
...
|
|
5936
4927
|
|
|
5937
|
-
dt:
|
|
5938
|
-
"""
|
|
5939
|
-
|
|
5940
|
-
None( (placo.LIPM)arg1) -> float :
|
|
5941
|
-
|
|
5942
|
-
C++ signature :
|
|
5943
|
-
double {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
5944
|
-
"""
|
|
4928
|
+
dt: float # double
|
|
5945
4929
|
|
|
5946
4930
|
def dzmp(
|
|
5947
4931
|
self,
|
|
@@ -5971,31 +4955,10 @@ None( (placo.LIPM)arg1) -> float :
|
|
|
5971
4955
|
...
|
|
5972
4956
|
|
|
5973
4957
|
t_end: any
|
|
5974
|
-
"""
|
|
5975
|
-
|
|
5976
|
-
None( (placo.LIPM)arg1) -> float :
|
|
5977
4958
|
|
|
5978
|
-
|
|
5979
|
-
double None(placo::humanoid::LIPM {lvalue})
|
|
5980
|
-
"""
|
|
5981
|
-
|
|
5982
|
-
t_start: any
|
|
5983
|
-
"""
|
|
5984
|
-
|
|
5985
|
-
None( (placo.LIPM)arg1) -> float :
|
|
5986
|
-
|
|
5987
|
-
C++ signature :
|
|
5988
|
-
double {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
5989
|
-
"""
|
|
5990
|
-
|
|
5991
|
-
timesteps: any
|
|
5992
|
-
"""
|
|
5993
|
-
|
|
5994
|
-
None( (placo.LIPM)arg1) -> int :
|
|
4959
|
+
t_start: float # double
|
|
5995
4960
|
|
|
5996
|
-
|
|
5997
|
-
int {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
5998
|
-
"""
|
|
4961
|
+
timesteps: int # int
|
|
5999
4962
|
|
|
6000
4963
|
def vel(
|
|
6001
4964
|
self,
|
|
@@ -6003,41 +4966,13 @@ None( (placo.LIPM)arg1) -> int :
|
|
|
6003
4966
|
) -> Expression:
|
|
6004
4967
|
...
|
|
6005
4968
|
|
|
6006
|
-
x:
|
|
6007
|
-
"""
|
|
6008
|
-
|
|
6009
|
-
None( (placo.LIPM)arg1) -> placo.Integrator :
|
|
6010
|
-
|
|
6011
|
-
C++ signature :
|
|
6012
|
-
placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
6013
|
-
"""
|
|
6014
|
-
|
|
6015
|
-
x_var: any
|
|
6016
|
-
"""
|
|
6017
|
-
|
|
6018
|
-
None( (placo.LIPM)arg1) -> object :
|
|
6019
|
-
|
|
6020
|
-
C++ signature :
|
|
6021
|
-
placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
6022
|
-
"""
|
|
6023
|
-
|
|
6024
|
-
y: any
|
|
6025
|
-
"""
|
|
6026
|
-
|
|
6027
|
-
None( (placo.LIPM)arg1) -> placo.Integrator :
|
|
4969
|
+
x: Integrator # placo::problem::Integrator
|
|
6028
4970
|
|
|
6029
|
-
|
|
6030
|
-
placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
6031
|
-
"""
|
|
4971
|
+
x_var: Variable # placo::problem::Variable
|
|
6032
4972
|
|
|
6033
|
-
|
|
6034
|
-
"""
|
|
6035
|
-
|
|
6036
|
-
None( (placo.LIPM)arg1) -> object :
|
|
4973
|
+
y: Integrator # placo::problem::Integrator
|
|
6037
4974
|
|
|
6038
|
-
|
|
6039
|
-
placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
6040
|
-
"""
|
|
4975
|
+
y_var: Variable # placo::problem::Variable
|
|
6041
4976
|
|
|
6042
4977
|
def zmp(
|
|
6043
4978
|
self,
|
|
@@ -6100,13 +5035,9 @@ class LIPMTrajectory:
|
|
|
6100
5035
|
|
|
6101
5036
|
|
|
6102
5037
|
class LineContact:
|
|
6103
|
-
R_world_surface:
|
|
5038
|
+
R_world_surface: numpy.ndarray # Eigen::Matrix3d
|
|
6104
5039
|
"""
|
|
6105
|
-
|
|
6106
|
-
None( (placo.PointContact)arg1) -> numpy.ndarray :
|
|
6107
|
-
|
|
6108
|
-
C++ signature :
|
|
6109
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> None(placo::dynamics::PointContact {lvalue})
|
|
5040
|
+
rotation matrix expressing the surface frame in the world frame (for unilateral contact)
|
|
6110
5041
|
"""
|
|
6111
5042
|
|
|
6112
5043
|
def __init__(
|
|
@@ -6119,31 +5050,19 @@ None( (placo.PointContact)arg1) -> numpy.ndarray :
|
|
|
6119
5050
|
"""
|
|
6120
5051
|
...
|
|
6121
5052
|
|
|
6122
|
-
active:
|
|
5053
|
+
active: bool # bool
|
|
6123
5054
|
"""
|
|
6124
|
-
|
|
6125
|
-
None( (placo.Contact)arg1) -> bool :
|
|
6126
|
-
|
|
6127
|
-
C++ signature :
|
|
6128
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5055
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
6129
5056
|
"""
|
|
6130
5057
|
|
|
6131
|
-
length:
|
|
5058
|
+
length: float # double
|
|
6132
5059
|
"""
|
|
6133
|
-
|
|
6134
|
-
None( (placo.LineContact)arg1) -> float :
|
|
6135
|
-
|
|
6136
|
-
C++ signature :
|
|
6137
|
-
double {lvalue} None(placo::dynamics::LineContact {lvalue})
|
|
5060
|
+
Rectangular contact length along local x-axis.
|
|
6138
5061
|
"""
|
|
6139
5062
|
|
|
6140
|
-
mu:
|
|
5063
|
+
mu: float # double
|
|
6141
5064
|
"""
|
|
6142
|
-
|
|
6143
|
-
None( (placo.Contact)arg1) -> float :
|
|
6144
|
-
|
|
6145
|
-
C++ signature :
|
|
6146
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5065
|
+
Coefficient of friction (if relevant)
|
|
6147
5066
|
"""
|
|
6148
5067
|
|
|
6149
5068
|
def orientation_task(
|
|
@@ -6156,49 +5075,29 @@ None( (placo.Contact)arg1) -> float :
|
|
|
6156
5075
|
) -> DynamicsPositionTask:
|
|
6157
5076
|
...
|
|
6158
5077
|
|
|
6159
|
-
unilateral:
|
|
5078
|
+
unilateral: bool # bool
|
|
6160
5079
|
"""
|
|
6161
|
-
|
|
6162
|
-
None( (placo.LineContact)arg1) -> bool :
|
|
6163
|
-
|
|
6164
|
-
C++ signature :
|
|
6165
|
-
bool {lvalue} None(placo::dynamics::LineContact {lvalue})
|
|
5080
|
+
true for unilateral contact with the ground
|
|
6166
5081
|
"""
|
|
6167
5082
|
|
|
6168
|
-
weight_forces:
|
|
5083
|
+
weight_forces: float # double
|
|
6169
5084
|
"""
|
|
6170
|
-
|
|
6171
|
-
None( (placo.Contact)arg1) -> float :
|
|
6172
|
-
|
|
6173
|
-
C++ signature :
|
|
6174
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5085
|
+
Weight of forces for the optimization (if relevant)
|
|
6175
5086
|
"""
|
|
6176
5087
|
|
|
6177
|
-
weight_moments:
|
|
5088
|
+
weight_moments: float # double
|
|
6178
5089
|
"""
|
|
6179
|
-
|
|
6180
|
-
None( (placo.Contact)arg1) -> float :
|
|
6181
|
-
|
|
6182
|
-
C++ signature :
|
|
6183
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5090
|
+
Weight of moments for optimization (if relevant)
|
|
6184
5091
|
"""
|
|
6185
5092
|
|
|
6186
|
-
weight_tangentials:
|
|
5093
|
+
weight_tangentials: float # double
|
|
6187
5094
|
"""
|
|
6188
|
-
|
|
6189
|
-
None( (placo.Contact)arg1) -> float :
|
|
6190
|
-
|
|
6191
|
-
C++ signature :
|
|
6192
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5095
|
+
Extra cost for tangential forces.
|
|
6193
5096
|
"""
|
|
6194
5097
|
|
|
6195
|
-
wrench:
|
|
5098
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
6196
5099
|
"""
|
|
6197
|
-
|
|
6198
|
-
None( (placo.Contact)arg1) -> object :
|
|
6199
|
-
|
|
6200
|
-
C++ signature :
|
|
6201
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5100
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
6202
5101
|
"""
|
|
6203
5102
|
|
|
6204
5103
|
def zmp(
|
|
@@ -6211,13 +5110,9 @@ None( (placo.Contact)arg1) -> object :
|
|
|
6211
5110
|
|
|
6212
5111
|
|
|
6213
5112
|
class ManipulabilityTask:
|
|
6214
|
-
A:
|
|
5113
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
6215
5114
|
"""
|
|
6216
|
-
|
|
6217
|
-
None( (placo.Task)arg1) -> object :
|
|
6218
|
-
|
|
6219
|
-
C++ signature :
|
|
6220
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5115
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
6221
5116
|
"""
|
|
6222
5117
|
|
|
6223
5118
|
def __init__(
|
|
@@ -6228,13 +5123,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
6228
5123
|
) -> any:
|
|
6229
5124
|
...
|
|
6230
5125
|
|
|
6231
|
-
b:
|
|
5126
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
6232
5127
|
"""
|
|
6233
|
-
|
|
6234
|
-
None( (placo.Task)arg1) -> object :
|
|
6235
|
-
|
|
6236
|
-
C++ signature :
|
|
6237
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5128
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
6238
5129
|
"""
|
|
6239
5130
|
|
|
6240
5131
|
def configure(
|
|
@@ -6269,39 +5160,20 @@ None( (placo.Task)arg1) -> object :
|
|
|
6269
5160
|
...
|
|
6270
5161
|
|
|
6271
5162
|
lambda_: any
|
|
6272
|
-
"""
|
|
6273
|
-
|
|
6274
|
-
None( (placo.ManipulabilityTask)arg1) -> float :
|
|
6275
|
-
|
|
6276
|
-
C++ signature :
|
|
6277
|
-
double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
|
|
6278
|
-
"""
|
|
6279
5163
|
|
|
6280
|
-
manipulability:
|
|
5164
|
+
manipulability: float # double
|
|
6281
5165
|
"""
|
|
6282
|
-
|
|
6283
|
-
None( (placo.ManipulabilityTask)arg1) -> float :
|
|
6284
|
-
|
|
6285
|
-
C++ signature :
|
|
6286
|
-
double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
|
|
5166
|
+
The last computed manipulability value.
|
|
6287
5167
|
"""
|
|
6288
5168
|
|
|
6289
|
-
minimize:
|
|
5169
|
+
minimize: bool # bool
|
|
6290
5170
|
"""
|
|
6291
|
-
|
|
6292
|
-
None( (placo.ManipulabilityTask)arg1) -> bool :
|
|
6293
|
-
|
|
6294
|
-
C++ signature :
|
|
6295
|
-
bool {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
|
|
5171
|
+
Should the manipulability be minimized (can be useful to find singularities)
|
|
6296
5172
|
"""
|
|
6297
5173
|
|
|
6298
|
-
name:
|
|
5174
|
+
name: str # std::string
|
|
6299
5175
|
"""
|
|
6300
|
-
|
|
6301
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
6302
|
-
|
|
6303
|
-
C++ signature :
|
|
6304
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
5176
|
+
Object name.
|
|
6305
5177
|
"""
|
|
6306
5178
|
|
|
6307
5179
|
priority: str
|
|
@@ -6319,22 +5191,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
6319
5191
|
|
|
6320
5192
|
|
|
6321
5193
|
class OrientationTask:
|
|
6322
|
-
A:
|
|
5194
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
6323
5195
|
"""
|
|
6324
|
-
|
|
6325
|
-
None( (placo.Task)arg1) -> object :
|
|
6326
|
-
|
|
6327
|
-
C++ signature :
|
|
6328
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5196
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
6329
5197
|
"""
|
|
6330
5198
|
|
|
6331
|
-
R_world_frame:
|
|
5199
|
+
R_world_frame: numpy.ndarray # Eigen::Matrix3d
|
|
6332
5200
|
"""
|
|
6333
|
-
|
|
6334
|
-
None( (placo.OrientationTask)arg1) -> object :
|
|
6335
|
-
|
|
6336
|
-
C++ signature :
|
|
6337
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::kinematics::OrientationTask {lvalue})
|
|
5201
|
+
Target frame orientation in the world.
|
|
6338
5202
|
"""
|
|
6339
5203
|
|
|
6340
5204
|
def __init__(
|
|
@@ -6347,13 +5211,9 @@ None( (placo.OrientationTask)arg1) -> object :
|
|
|
6347
5211
|
"""
|
|
6348
5212
|
...
|
|
6349
5213
|
|
|
6350
|
-
b:
|
|
5214
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
6351
5215
|
"""
|
|
6352
|
-
|
|
6353
|
-
None( (placo.Task)arg1) -> object :
|
|
6354
|
-
|
|
6355
|
-
C++ signature :
|
|
6356
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5216
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
6357
5217
|
"""
|
|
6358
5218
|
|
|
6359
5219
|
def configure(
|
|
@@ -6387,31 +5247,19 @@ None( (placo.Task)arg1) -> object :
|
|
|
6387
5247
|
"""
|
|
6388
5248
|
...
|
|
6389
5249
|
|
|
6390
|
-
frame_index: any
|
|
5250
|
+
frame_index: any # pinocchio::FrameIndex
|
|
6391
5251
|
"""
|
|
6392
|
-
|
|
6393
|
-
None( (placo.OrientationTask)arg1) -> int :
|
|
6394
|
-
|
|
6395
|
-
C++ signature :
|
|
6396
|
-
unsigned long {lvalue} None(placo::kinematics::OrientationTask {lvalue})
|
|
5252
|
+
Frame.
|
|
6397
5253
|
"""
|
|
6398
5254
|
|
|
6399
|
-
mask:
|
|
5255
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
6400
5256
|
"""
|
|
6401
|
-
|
|
6402
|
-
None( (placo.OrientationTask)arg1) -> placo.AxisesMask :
|
|
6403
|
-
|
|
6404
|
-
C++ signature :
|
|
6405
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::OrientationTask {lvalue})
|
|
5257
|
+
Mask.
|
|
6406
5258
|
"""
|
|
6407
5259
|
|
|
6408
|
-
name:
|
|
5260
|
+
name: str # std::string
|
|
6409
5261
|
"""
|
|
6410
|
-
|
|
6411
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
6412
|
-
|
|
6413
|
-
C++ signature :
|
|
6414
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
5262
|
+
Object name.
|
|
6415
5263
|
"""
|
|
6416
5264
|
|
|
6417
5265
|
priority: str
|
|
@@ -6429,13 +5277,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
6429
5277
|
|
|
6430
5278
|
|
|
6431
5279
|
class PointContact:
|
|
6432
|
-
R_world_surface:
|
|
5280
|
+
R_world_surface: numpy.ndarray # Eigen::Matrix3d
|
|
6433
5281
|
"""
|
|
6434
|
-
|
|
6435
|
-
None( (placo.PointContact)arg1) -> object :
|
|
6436
|
-
|
|
6437
|
-
C++ signature :
|
|
6438
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::PointContact {lvalue})
|
|
5282
|
+
rotation matrix expressing the surface frame in the world frame (for unilateral contact)
|
|
6439
5283
|
"""
|
|
6440
5284
|
|
|
6441
5285
|
def __init__(
|
|
@@ -6448,22 +5292,14 @@ None( (placo.PointContact)arg1) -> object :
|
|
|
6448
5292
|
"""
|
|
6449
5293
|
...
|
|
6450
5294
|
|
|
6451
|
-
active:
|
|
5295
|
+
active: bool # bool
|
|
6452
5296
|
"""
|
|
6453
|
-
|
|
6454
|
-
None( (placo.Contact)arg1) -> bool :
|
|
6455
|
-
|
|
6456
|
-
C++ signature :
|
|
6457
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5297
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
6458
5298
|
"""
|
|
6459
5299
|
|
|
6460
|
-
mu:
|
|
5300
|
+
mu: float # double
|
|
6461
5301
|
"""
|
|
6462
|
-
|
|
6463
|
-
None( (placo.Contact)arg1) -> float :
|
|
6464
|
-
|
|
6465
|
-
C++ signature :
|
|
6466
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5302
|
+
Coefficient of friction (if relevant)
|
|
6467
5303
|
"""
|
|
6468
5304
|
|
|
6469
5305
|
def position_task(
|
|
@@ -6471,49 +5307,29 @@ None( (placo.Contact)arg1) -> float :
|
|
|
6471
5307
|
) -> DynamicsPositionTask:
|
|
6472
5308
|
...
|
|
6473
5309
|
|
|
6474
|
-
unilateral:
|
|
5310
|
+
unilateral: bool # bool
|
|
6475
5311
|
"""
|
|
6476
|
-
|
|
6477
|
-
None( (placo.PointContact)arg1) -> bool :
|
|
6478
|
-
|
|
6479
|
-
C++ signature :
|
|
6480
|
-
bool {lvalue} None(placo::dynamics::PointContact {lvalue})
|
|
5312
|
+
true for unilateral contact with the ground
|
|
6481
5313
|
"""
|
|
6482
5314
|
|
|
6483
|
-
weight_forces:
|
|
5315
|
+
weight_forces: float # double
|
|
6484
5316
|
"""
|
|
6485
|
-
|
|
6486
|
-
None( (placo.Contact)arg1) -> float :
|
|
6487
|
-
|
|
6488
|
-
C++ signature :
|
|
6489
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5317
|
+
Weight of forces for the optimization (if relevant)
|
|
6490
5318
|
"""
|
|
6491
5319
|
|
|
6492
|
-
weight_moments:
|
|
5320
|
+
weight_moments: float # double
|
|
6493
5321
|
"""
|
|
6494
|
-
|
|
6495
|
-
None( (placo.Contact)arg1) -> float :
|
|
6496
|
-
|
|
6497
|
-
C++ signature :
|
|
6498
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5322
|
+
Weight of moments for optimization (if relevant)
|
|
6499
5323
|
"""
|
|
6500
5324
|
|
|
6501
|
-
weight_tangentials:
|
|
5325
|
+
weight_tangentials: float # double
|
|
6502
5326
|
"""
|
|
6503
|
-
|
|
6504
|
-
None( (placo.Contact)arg1) -> float :
|
|
6505
|
-
|
|
6506
|
-
C++ signature :
|
|
6507
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5327
|
+
Extra cost for tangential forces.
|
|
6508
5328
|
"""
|
|
6509
5329
|
|
|
6510
|
-
wrench:
|
|
5330
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
6511
5331
|
"""
|
|
6512
|
-
|
|
6513
|
-
None( (placo.Contact)arg1) -> object :
|
|
6514
|
-
|
|
6515
|
-
C++ signature :
|
|
6516
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5332
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
6517
5333
|
"""
|
|
6518
5334
|
|
|
6519
5335
|
|
|
@@ -6553,13 +5369,9 @@ class Polynom:
|
|
|
6553
5369
|
) -> any:
|
|
6554
5370
|
...
|
|
6555
5371
|
|
|
6556
|
-
coefficients:
|
|
5372
|
+
coefficients: numpy.ndarray # Eigen::VectorXd
|
|
6557
5373
|
"""
|
|
6558
|
-
|
|
6559
|
-
None( (placo.Polynom)arg1) -> object :
|
|
6560
|
-
|
|
6561
|
-
C++ signature :
|
|
6562
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::tools::Polynom {lvalue})
|
|
5374
|
+
coefficients, from highest to lowest
|
|
6563
5375
|
"""
|
|
6564
5376
|
|
|
6565
5377
|
@staticmethod
|
|
@@ -6591,13 +5403,9 @@ None( (placo.Polynom)arg1) -> object :
|
|
|
6591
5403
|
|
|
6592
5404
|
|
|
6593
5405
|
class PositionTask:
|
|
6594
|
-
A:
|
|
5406
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
6595
5407
|
"""
|
|
6596
|
-
|
|
6597
|
-
None( (placo.Task)arg1) -> object :
|
|
6598
|
-
|
|
6599
|
-
C++ signature :
|
|
6600
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5408
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
6601
5409
|
"""
|
|
6602
5410
|
|
|
6603
5411
|
def __init__(
|
|
@@ -6610,13 +5418,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
6610
5418
|
"""
|
|
6611
5419
|
...
|
|
6612
5420
|
|
|
6613
|
-
b:
|
|
5421
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
6614
5422
|
"""
|
|
6615
|
-
|
|
6616
|
-
None( (placo.Task)arg1) -> object :
|
|
6617
|
-
|
|
6618
|
-
C++ signature :
|
|
6619
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5423
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
6620
5424
|
"""
|
|
6621
5425
|
|
|
6622
5426
|
def configure(
|
|
@@ -6650,31 +5454,19 @@ None( (placo.Task)arg1) -> object :
|
|
|
6650
5454
|
"""
|
|
6651
5455
|
...
|
|
6652
5456
|
|
|
6653
|
-
frame_index: any
|
|
5457
|
+
frame_index: any # pinocchio::FrameIndex
|
|
6654
5458
|
"""
|
|
6655
|
-
|
|
6656
|
-
None( (placo.PositionTask)arg1) -> int :
|
|
6657
|
-
|
|
6658
|
-
C++ signature :
|
|
6659
|
-
unsigned long {lvalue} None(placo::kinematics::PositionTask {lvalue})
|
|
5459
|
+
Frame.
|
|
6660
5460
|
"""
|
|
6661
5461
|
|
|
6662
|
-
mask:
|
|
5462
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
6663
5463
|
"""
|
|
6664
|
-
|
|
6665
|
-
None( (placo.PositionTask)arg1) -> placo.AxisesMask :
|
|
6666
|
-
|
|
6667
|
-
C++ signature :
|
|
6668
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::PositionTask {lvalue})
|
|
5464
|
+
Mask.
|
|
6669
5465
|
"""
|
|
6670
5466
|
|
|
6671
|
-
name:
|
|
5467
|
+
name: str # std::string
|
|
6672
5468
|
"""
|
|
6673
|
-
|
|
6674
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
6675
|
-
|
|
6676
|
-
C++ signature :
|
|
6677
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
5469
|
+
Object name.
|
|
6678
5470
|
"""
|
|
6679
5471
|
|
|
6680
5472
|
priority: str
|
|
@@ -6682,13 +5474,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
6682
5474
|
Priority [str]
|
|
6683
5475
|
"""
|
|
6684
5476
|
|
|
6685
|
-
target_world:
|
|
5477
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
6686
5478
|
"""
|
|
6687
|
-
|
|
6688
|
-
None( (placo.PositionTask)arg1) -> numpy.ndarray :
|
|
6689
|
-
|
|
6690
|
-
C++ signature :
|
|
6691
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> None(placo::kinematics::PositionTask)
|
|
5479
|
+
Target position in the world.
|
|
6692
5480
|
"""
|
|
6693
5481
|
|
|
6694
5482
|
def update(
|
|
@@ -6721,13 +5509,9 @@ class Prioritized:
|
|
|
6721
5509
|
"""
|
|
6722
5510
|
...
|
|
6723
5511
|
|
|
6724
|
-
name:
|
|
5512
|
+
name: str # std::string
|
|
6725
5513
|
"""
|
|
6726
|
-
|
|
6727
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
6728
|
-
|
|
6729
|
-
C++ signature :
|
|
6730
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
5514
|
+
Object name.
|
|
6731
5515
|
"""
|
|
6732
5516
|
|
|
6733
5517
|
priority: str
|
|
@@ -6788,13 +5572,9 @@ class Problem:
|
|
|
6788
5572
|
"""
|
|
6789
5573
|
...
|
|
6790
5574
|
|
|
6791
|
-
determined_variables:
|
|
5575
|
+
determined_variables: int # int
|
|
6792
5576
|
"""
|
|
6793
|
-
|
|
6794
|
-
None( (placo.Problem)arg1) -> int :
|
|
6795
|
-
|
|
6796
|
-
C++ signature :
|
|
6797
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5577
|
+
Number of determined variables.
|
|
6798
5578
|
"""
|
|
6799
5579
|
|
|
6800
5580
|
def dump_status(
|
|
@@ -6802,76 +5582,44 @@ None( (placo.Problem)arg1) -> int :
|
|
|
6802
5582
|
) -> None:
|
|
6803
5583
|
...
|
|
6804
5584
|
|
|
6805
|
-
free_variables:
|
|
5585
|
+
free_variables: int # int
|
|
6806
5586
|
"""
|
|
6807
|
-
|
|
6808
|
-
None( (placo.Problem)arg1) -> int :
|
|
6809
|
-
|
|
6810
|
-
C++ signature :
|
|
6811
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5587
|
+
Number of free variables to solve.
|
|
6812
5588
|
"""
|
|
6813
5589
|
|
|
6814
|
-
n_equalities:
|
|
5590
|
+
n_equalities: int # int
|
|
6815
5591
|
"""
|
|
6816
|
-
|
|
6817
|
-
None( (placo.Problem)arg1) -> int :
|
|
6818
|
-
|
|
6819
|
-
C++ signature :
|
|
6820
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5592
|
+
Number of equalities.
|
|
6821
5593
|
"""
|
|
6822
5594
|
|
|
6823
|
-
n_inequalities:
|
|
5595
|
+
n_inequalities: int # int
|
|
6824
5596
|
"""
|
|
6825
|
-
|
|
6826
|
-
None( (placo.Problem)arg1) -> int :
|
|
6827
|
-
|
|
6828
|
-
C++ signature :
|
|
6829
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5597
|
+
Number of inequality constraints.
|
|
6830
5598
|
"""
|
|
6831
5599
|
|
|
6832
|
-
n_variables:
|
|
5600
|
+
n_variables: int # int
|
|
6833
5601
|
"""
|
|
6834
|
-
|
|
6835
|
-
None( (placo.Problem)arg1) -> int :
|
|
6836
|
-
|
|
6837
|
-
C++ signature :
|
|
6838
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5602
|
+
Number of problem variables that need to be solved.
|
|
6839
5603
|
"""
|
|
6840
5604
|
|
|
6841
|
-
regularization:
|
|
5605
|
+
regularization: float # double
|
|
6842
5606
|
"""
|
|
6843
|
-
|
|
6844
|
-
None( (placo.Problem)arg1) -> float :
|
|
6845
|
-
|
|
6846
|
-
C++ signature :
|
|
6847
|
-
double {lvalue} None(placo::problem::Problem {lvalue})
|
|
5607
|
+
Default internal regularization.
|
|
6848
5608
|
"""
|
|
6849
5609
|
|
|
6850
|
-
rewrite_equalities:
|
|
5610
|
+
rewrite_equalities: bool # bool
|
|
6851
5611
|
"""
|
|
6852
|
-
|
|
6853
|
-
None( (placo.Problem)arg1) -> bool :
|
|
6854
|
-
|
|
6855
|
-
C++ signature :
|
|
6856
|
-
bool {lvalue} None(placo::problem::Problem {lvalue})
|
|
5612
|
+
If set to true, a QR factorization will be performed on the equality constraints, and the QP will be called with free variables only.
|
|
6857
5613
|
"""
|
|
6858
5614
|
|
|
6859
|
-
slack_variables:
|
|
5615
|
+
slack_variables: int # int
|
|
6860
5616
|
"""
|
|
6861
|
-
|
|
6862
|
-
None( (placo.Problem)arg1) -> int :
|
|
6863
|
-
|
|
6864
|
-
C++ signature :
|
|
6865
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5617
|
+
Number of slack variables in the solver.
|
|
6866
5618
|
"""
|
|
6867
5619
|
|
|
6868
|
-
slacks:
|
|
5620
|
+
slacks: numpy.ndarray # Eigen::VectorXd
|
|
6869
5621
|
"""
|
|
6870
|
-
|
|
6871
|
-
None( (placo.Problem)arg1) -> numpy.ndarray :
|
|
6872
|
-
|
|
6873
|
-
C++ signature :
|
|
6874
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> None(placo::problem::Problem)
|
|
5622
|
+
Computed slack variables.
|
|
6875
5623
|
"""
|
|
6876
5624
|
|
|
6877
5625
|
def solve(
|
|
@@ -6882,22 +5630,14 @@ None( (placo.Problem)arg1) -> numpy.ndarray :
|
|
|
6882
5630
|
"""
|
|
6883
5631
|
...
|
|
6884
5632
|
|
|
6885
|
-
use_sparsity:
|
|
5633
|
+
use_sparsity: bool # bool
|
|
6886
5634
|
"""
|
|
6887
|
-
|
|
6888
|
-
None( (placo.Problem)arg1) -> bool :
|
|
6889
|
-
|
|
6890
|
-
C++ signature :
|
|
6891
|
-
bool {lvalue} None(placo::problem::Problem {lvalue})
|
|
5635
|
+
If set to true, some sparsity optimizations will be performed when building the problem Hessian. This optimization is generally not useful for small problems.
|
|
6892
5636
|
"""
|
|
6893
5637
|
|
|
6894
|
-
x:
|
|
5638
|
+
x: numpy.ndarray # Eigen::VectorXd
|
|
6895
5639
|
"""
|
|
6896
|
-
|
|
6897
|
-
None( (placo.Problem)arg1) -> object :
|
|
6898
|
-
|
|
6899
|
-
C++ signature :
|
|
6900
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Problem {lvalue})
|
|
5640
|
+
Computed result.
|
|
6901
5641
|
"""
|
|
6902
5642
|
|
|
6903
5643
|
|
|
@@ -6922,40 +5662,24 @@ class ProblemConstraint:
|
|
|
6922
5662
|
"""
|
|
6923
5663
|
...
|
|
6924
5664
|
|
|
6925
|
-
expression:
|
|
5665
|
+
expression: Expression # placo::problem::Expression
|
|
6926
5666
|
"""
|
|
6927
|
-
|
|
6928
|
-
None( (placo.ProblemConstraint)arg1) -> object :
|
|
6929
|
-
|
|
6930
|
-
C++ signature :
|
|
6931
|
-
placo::problem::Expression {lvalue} None(placo::problem::ProblemConstraint {lvalue})
|
|
5667
|
+
The constraint expression (Ax + b)
|
|
6932
5668
|
"""
|
|
6933
5669
|
|
|
6934
|
-
is_active:
|
|
5670
|
+
is_active: bool # bool
|
|
6935
5671
|
"""
|
|
6936
|
-
|
|
6937
|
-
None( (placo.ProblemConstraint)arg1) -> bool :
|
|
6938
|
-
|
|
6939
|
-
C++ signature :
|
|
6940
|
-
bool {lvalue} None(placo::problem::ProblemConstraint {lvalue})
|
|
5672
|
+
This flag will be set by the solver if the constraint is active in the optimal solution.
|
|
6941
5673
|
"""
|
|
6942
5674
|
|
|
6943
|
-
priority: any
|
|
5675
|
+
priority: any # placo::problem::ProblemConstraint::Priority
|
|
6944
5676
|
"""
|
|
6945
|
-
|
|
6946
|
-
None( (placo.ProblemConstraint)arg1) -> str :
|
|
6947
|
-
|
|
6948
|
-
C++ signature :
|
|
6949
|
-
char const* None(placo::problem::ProblemConstraint)
|
|
5677
|
+
Constraint priority.
|
|
6950
5678
|
"""
|
|
6951
5679
|
|
|
6952
|
-
weight:
|
|
5680
|
+
weight: float # double
|
|
6953
5681
|
"""
|
|
6954
|
-
|
|
6955
|
-
None( (placo.ProblemConstraint)arg1) -> float :
|
|
6956
|
-
|
|
6957
|
-
C++ signature :
|
|
6958
|
-
double {lvalue} None(placo::problem::ProblemConstraint {lvalue})
|
|
5682
|
+
Constraint weight (for soft constraints)
|
|
6959
5683
|
"""
|
|
6960
5684
|
|
|
6961
5685
|
|
|
@@ -6997,58 +5721,34 @@ class PuppetContact:
|
|
|
6997
5721
|
"""
|
|
6998
5722
|
...
|
|
6999
5723
|
|
|
7000
|
-
active:
|
|
5724
|
+
active: bool # bool
|
|
7001
5725
|
"""
|
|
7002
|
-
|
|
7003
|
-
None( (placo.Contact)arg1) -> bool :
|
|
7004
|
-
|
|
7005
|
-
C++ signature :
|
|
7006
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5726
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
7007
5727
|
"""
|
|
7008
5728
|
|
|
7009
|
-
mu:
|
|
5729
|
+
mu: float # double
|
|
7010
5730
|
"""
|
|
7011
|
-
|
|
7012
|
-
None( (placo.Contact)arg1) -> float :
|
|
7013
|
-
|
|
7014
|
-
C++ signature :
|
|
7015
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5731
|
+
Coefficient of friction (if relevant)
|
|
7016
5732
|
"""
|
|
7017
5733
|
|
|
7018
|
-
weight_forces:
|
|
5734
|
+
weight_forces: float # double
|
|
7019
5735
|
"""
|
|
7020
|
-
|
|
7021
|
-
None( (placo.Contact)arg1) -> float :
|
|
7022
|
-
|
|
7023
|
-
C++ signature :
|
|
7024
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5736
|
+
Weight of forces for the optimization (if relevant)
|
|
7025
5737
|
"""
|
|
7026
5738
|
|
|
7027
|
-
weight_moments:
|
|
5739
|
+
weight_moments: float # double
|
|
7028
5740
|
"""
|
|
7029
|
-
|
|
7030
|
-
None( (placo.Contact)arg1) -> float :
|
|
7031
|
-
|
|
7032
|
-
C++ signature :
|
|
7033
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5741
|
+
Weight of moments for optimization (if relevant)
|
|
7034
5742
|
"""
|
|
7035
5743
|
|
|
7036
|
-
weight_tangentials:
|
|
5744
|
+
weight_tangentials: float # double
|
|
7037
5745
|
"""
|
|
7038
|
-
|
|
7039
|
-
None( (placo.Contact)arg1) -> float :
|
|
7040
|
-
|
|
7041
|
-
C++ signature :
|
|
7042
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5746
|
+
Extra cost for tangential forces.
|
|
7043
5747
|
"""
|
|
7044
5748
|
|
|
7045
|
-
wrench:
|
|
5749
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
7046
5750
|
"""
|
|
7047
|
-
|
|
7048
|
-
None( (placo.Contact)arg1) -> object :
|
|
7049
|
-
|
|
7050
|
-
C++ signature :
|
|
7051
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5751
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
7052
5752
|
"""
|
|
7053
5753
|
|
|
7054
5754
|
|
|
@@ -7069,13 +5769,9 @@ class QPError:
|
|
|
7069
5769
|
|
|
7070
5770
|
|
|
7071
5771
|
class RegularizationTask:
|
|
7072
|
-
A:
|
|
5772
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
7073
5773
|
"""
|
|
7074
|
-
|
|
7075
|
-
None( (placo.Task)arg1) -> object :
|
|
7076
|
-
|
|
7077
|
-
C++ signature :
|
|
7078
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5774
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
7079
5775
|
"""
|
|
7080
5776
|
|
|
7081
5777
|
def __init__(
|
|
@@ -7083,13 +5779,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
7083
5779
|
) -> None:
|
|
7084
5780
|
...
|
|
7085
5781
|
|
|
7086
|
-
b:
|
|
5782
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
7087
5783
|
"""
|
|
7088
|
-
|
|
7089
|
-
None( (placo.Task)arg1) -> object :
|
|
7090
|
-
|
|
7091
|
-
C++ signature :
|
|
7092
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5784
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
7093
5785
|
"""
|
|
7094
5786
|
|
|
7095
5787
|
def configure(
|
|
@@ -7123,13 +5815,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
7123
5815
|
"""
|
|
7124
5816
|
...
|
|
7125
5817
|
|
|
7126
|
-
name:
|
|
5818
|
+
name: str # std::string
|
|
7127
5819
|
"""
|
|
7128
|
-
|
|
7129
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
7130
|
-
|
|
7131
|
-
C++ signature :
|
|
7132
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
5820
|
+
Object name.
|
|
7133
5821
|
"""
|
|
7134
5822
|
|
|
7135
5823
|
priority: str
|
|
@@ -7148,13 +5836,6 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
7148
5836
|
|
|
7149
5837
|
class RelativeFrameTask:
|
|
7150
5838
|
T_a_b: any
|
|
7151
|
-
"""
|
|
7152
|
-
|
|
7153
|
-
None( (placo.RelativeFrameTask)arg1) -> object :
|
|
7154
|
-
|
|
7155
|
-
C++ signature :
|
|
7156
|
-
Eigen::Transform<double, 3, 2, 0> None(placo::kinematics::RelativeFrameTask {lvalue})
|
|
7157
|
-
"""
|
|
7158
5839
|
|
|
7159
5840
|
def __init__(
|
|
7160
5841
|
self,
|
|
@@ -7195,22 +5876,14 @@ None( (placo.RelativeFrameTask)arg1) -> object :
|
|
|
7195
5876
|
|
|
7196
5877
|
|
|
7197
5878
|
class RelativeOrientationTask:
|
|
7198
|
-
A:
|
|
5879
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
7199
5880
|
"""
|
|
7200
|
-
|
|
7201
|
-
None( (placo.Task)arg1) -> object :
|
|
7202
|
-
|
|
7203
|
-
C++ signature :
|
|
7204
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5881
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
7205
5882
|
"""
|
|
7206
5883
|
|
|
7207
|
-
R_a_b:
|
|
5884
|
+
R_a_b: numpy.ndarray # Eigen::Matrix3d
|
|
7208
5885
|
"""
|
|
7209
|
-
|
|
7210
|
-
None( (placo.RelativeOrientationTask)arg1) -> object :
|
|
7211
|
-
|
|
7212
|
-
C++ signature :
|
|
7213
|
-
Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5886
|
+
Target relative orientation of b in a.
|
|
7214
5887
|
"""
|
|
7215
5888
|
|
|
7216
5889
|
def __init__(
|
|
@@ -7224,13 +5897,9 @@ None( (placo.RelativeOrientationTask)arg1) -> object :
|
|
|
7224
5897
|
"""
|
|
7225
5898
|
...
|
|
7226
5899
|
|
|
7227
|
-
b:
|
|
5900
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
7228
5901
|
"""
|
|
7229
|
-
|
|
7230
|
-
None( (placo.Task)arg1) -> object :
|
|
7231
|
-
|
|
7232
|
-
C++ signature :
|
|
7233
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5902
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
7234
5903
|
"""
|
|
7235
5904
|
|
|
7236
5905
|
def configure(
|
|
@@ -7264,40 +5933,24 @@ None( (placo.Task)arg1) -> object :
|
|
|
7264
5933
|
"""
|
|
7265
5934
|
...
|
|
7266
5935
|
|
|
7267
|
-
frame_a: any
|
|
5936
|
+
frame_a: any # pinocchio::FrameIndex
|
|
7268
5937
|
"""
|
|
7269
|
-
|
|
7270
|
-
None( (placo.RelativeOrientationTask)arg1) -> int :
|
|
7271
|
-
|
|
7272
|
-
C++ signature :
|
|
7273
|
-
unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5938
|
+
Frame A.
|
|
7274
5939
|
"""
|
|
7275
5940
|
|
|
7276
|
-
frame_b: any
|
|
5941
|
+
frame_b: any # pinocchio::FrameIndex
|
|
7277
5942
|
"""
|
|
7278
|
-
|
|
7279
|
-
None( (placo.RelativeOrientationTask)arg1) -> int :
|
|
7280
|
-
|
|
7281
|
-
C++ signature :
|
|
7282
|
-
unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5943
|
+
Frame B.
|
|
7283
5944
|
"""
|
|
7284
5945
|
|
|
7285
|
-
mask:
|
|
5946
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
7286
5947
|
"""
|
|
7287
|
-
|
|
7288
|
-
None( (placo.RelativeOrientationTask)arg1) -> placo.AxisesMask :
|
|
7289
|
-
|
|
7290
|
-
C++ signature :
|
|
7291
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5948
|
+
Mask.
|
|
7292
5949
|
"""
|
|
7293
5950
|
|
|
7294
|
-
name:
|
|
5951
|
+
name: str # std::string
|
|
7295
5952
|
"""
|
|
7296
|
-
|
|
7297
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
7298
|
-
|
|
7299
|
-
C++ signature :
|
|
7300
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
5953
|
+
Object name.
|
|
7301
5954
|
"""
|
|
7302
5955
|
|
|
7303
5956
|
priority: str
|
|
@@ -7315,13 +5968,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
7315
5968
|
|
|
7316
5969
|
|
|
7317
5970
|
class RelativePositionTask:
|
|
7318
|
-
A:
|
|
5971
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
7319
5972
|
"""
|
|
7320
|
-
|
|
7321
|
-
None( (placo.Task)arg1) -> object :
|
|
7322
|
-
|
|
7323
|
-
C++ signature :
|
|
7324
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5973
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
7325
5974
|
"""
|
|
7326
5975
|
|
|
7327
5976
|
def __init__(
|
|
@@ -7335,13 +5984,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
7335
5984
|
"""
|
|
7336
5985
|
...
|
|
7337
5986
|
|
|
7338
|
-
b:
|
|
5987
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
7339
5988
|
"""
|
|
7340
|
-
|
|
7341
|
-
None( (placo.Task)arg1) -> object :
|
|
7342
|
-
|
|
7343
|
-
C++ signature :
|
|
7344
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
5989
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
7345
5990
|
"""
|
|
7346
5991
|
|
|
7347
5992
|
def configure(
|
|
@@ -7375,40 +6020,24 @@ None( (placo.Task)arg1) -> object :
|
|
|
7375
6020
|
"""
|
|
7376
6021
|
...
|
|
7377
6022
|
|
|
7378
|
-
frame_a: any
|
|
6023
|
+
frame_a: any # pinocchio::FrameIndex
|
|
7379
6024
|
"""
|
|
7380
|
-
|
|
7381
|
-
None( (placo.RelativePositionTask)arg1) -> int :
|
|
7382
|
-
|
|
7383
|
-
C++ signature :
|
|
7384
|
-
unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6025
|
+
Frame A.
|
|
7385
6026
|
"""
|
|
7386
6027
|
|
|
7387
|
-
frame_b: any
|
|
6028
|
+
frame_b: any # pinocchio::FrameIndex
|
|
7388
6029
|
"""
|
|
7389
|
-
|
|
7390
|
-
None( (placo.RelativePositionTask)arg1) -> int :
|
|
7391
|
-
|
|
7392
|
-
C++ signature :
|
|
7393
|
-
unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6030
|
+
Frame B.
|
|
7394
6031
|
"""
|
|
7395
6032
|
|
|
7396
|
-
mask:
|
|
6033
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
7397
6034
|
"""
|
|
7398
|
-
|
|
7399
|
-
None( (placo.RelativePositionTask)arg1) -> placo.AxisesMask :
|
|
7400
|
-
|
|
7401
|
-
C++ signature :
|
|
7402
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6035
|
+
Mask.
|
|
7403
6036
|
"""
|
|
7404
6037
|
|
|
7405
|
-
name:
|
|
6038
|
+
name: str # std::string
|
|
7406
6039
|
"""
|
|
7407
|
-
|
|
7408
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
7409
|
-
|
|
7410
|
-
C++ signature :
|
|
7411
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
6040
|
+
Object name.
|
|
7412
6041
|
"""
|
|
7413
6042
|
|
|
7414
6043
|
priority: str
|
|
@@ -7416,13 +6045,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
7416
6045
|
Priority [str]
|
|
7417
6046
|
"""
|
|
7418
6047
|
|
|
7419
|
-
target:
|
|
6048
|
+
target: numpy.ndarray # Eigen::Vector3d
|
|
7420
6049
|
"""
|
|
7421
|
-
|
|
7422
|
-
None( (placo.RelativePositionTask)arg1) -> object :
|
|
7423
|
-
|
|
7424
|
-
C++ signature :
|
|
7425
|
-
Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6050
|
+
Target position of B in A.
|
|
7426
6051
|
"""
|
|
7427
6052
|
|
|
7428
6053
|
def update(
|
|
@@ -7467,13 +6092,9 @@ class RobotWrapper:
|
|
|
7467
6092
|
"""
|
|
7468
6093
|
...
|
|
7469
6094
|
|
|
7470
|
-
collision_model: any
|
|
6095
|
+
collision_model: any # pinocchio::GeometryModel
|
|
7471
6096
|
"""
|
|
7472
|
-
|
|
7473
|
-
None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
7474
|
-
|
|
7475
|
-
C++ signature :
|
|
7476
|
-
pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6097
|
+
Pinocchio collision model.
|
|
7477
6098
|
"""
|
|
7478
6099
|
|
|
7479
6100
|
def com_jacobian(
|
|
@@ -7514,7 +6135,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7514
6135
|
"""
|
|
7515
6136
|
Computes all minimum distances between current collision pairs.
|
|
7516
6137
|
|
|
7517
|
-
:return: <Element 'para' at
|
|
6138
|
+
:return: <Element 'para' at 0xffb37a540ef0>
|
|
7518
6139
|
"""
|
|
7519
6140
|
...
|
|
7520
6141
|
|
|
@@ -7527,7 +6148,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7527
6148
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
7528
6149
|
|
|
7529
6150
|
:param any frame: the frame for which we want the jacobian
|
|
7530
|
-
:return: <Element 'para' at
|
|
6151
|
+
:return: <Element 'para' at 0xffb37a541620>
|
|
7531
6152
|
"""
|
|
7532
6153
|
...
|
|
7533
6154
|
|
|
@@ -7540,7 +6161,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7540
6161
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
7541
6162
|
|
|
7542
6163
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7543
|
-
:return: <Element 'para' at
|
|
6164
|
+
:return: <Element 'para' at 0xffb37a5431f0>
|
|
7544
6165
|
"""
|
|
7545
6166
|
...
|
|
7546
6167
|
|
|
@@ -7724,13 +6345,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7724
6345
|
"""
|
|
7725
6346
|
...
|
|
7726
6347
|
|
|
7727
|
-
model: any
|
|
6348
|
+
model: any # pinocchio::Model
|
|
7728
6349
|
"""
|
|
7729
|
-
|
|
7730
|
-
None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
7731
|
-
|
|
7732
|
-
C++ signature :
|
|
7733
|
-
pinocchio::ModelTpl<double, 0, pinocchio::JointCollectionDefaultTpl> {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6350
|
+
Pinocchio model.
|
|
7734
6351
|
"""
|
|
7735
6352
|
|
|
7736
6353
|
def neutral_state(
|
|
@@ -7778,7 +6395,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7778
6395
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
7779
6396
|
|
|
7780
6397
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7781
|
-
:return: <Element 'para' at
|
|
6398
|
+
:return: <Element 'para' at 0xffb37a5406d0>
|
|
7782
6399
|
"""
|
|
7783
6400
|
...
|
|
7784
6401
|
|
|
@@ -7926,13 +6543,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7926
6543
|
"""
|
|
7927
6544
|
...
|
|
7928
6545
|
|
|
7929
|
-
state:
|
|
6546
|
+
state: RobotWrapper_State # placo::model::RobotWrapper::State
|
|
7930
6547
|
"""
|
|
7931
|
-
|
|
7932
|
-
None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
|
|
7933
|
-
|
|
7934
|
-
C++ signature :
|
|
7935
|
-
placo::model::RobotWrapper::State {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6548
|
+
Robot's current state.
|
|
7936
6549
|
"""
|
|
7937
6550
|
|
|
7938
6551
|
def static_gravity_compensation_torques(
|
|
@@ -7988,13 +6601,9 @@ None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
|
|
|
7988
6601
|
"""
|
|
7989
6602
|
...
|
|
7990
6603
|
|
|
7991
|
-
visual_model: any
|
|
6604
|
+
visual_model: any # pinocchio::GeometryModel
|
|
7992
6605
|
"""
|
|
7993
|
-
|
|
7994
|
-
None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
7995
|
-
|
|
7996
|
-
C++ signature :
|
|
7997
|
-
pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6606
|
+
Pinocchio visual model.
|
|
7998
6607
|
"""
|
|
7999
6608
|
|
|
8000
6609
|
|
|
@@ -8004,31 +6613,19 @@ class RobotWrapper_State:
|
|
|
8004
6613
|
) -> None:
|
|
8005
6614
|
...
|
|
8006
6615
|
|
|
8007
|
-
q:
|
|
6616
|
+
q: numpy.ndarray # Eigen::VectorXd
|
|
8008
6617
|
"""
|
|
8009
|
-
|
|
8010
|
-
None( (placo.RobotWrapper_State)arg1) -> object :
|
|
8011
|
-
|
|
8012
|
-
C++ signature :
|
|
8013
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
|
|
6618
|
+
joints configuration $q$
|
|
8014
6619
|
"""
|
|
8015
6620
|
|
|
8016
|
-
qd:
|
|
6621
|
+
qd: numpy.ndarray # Eigen::VectorXd
|
|
8017
6622
|
"""
|
|
8018
|
-
|
|
8019
|
-
None( (placo.RobotWrapper_State)arg1) -> object :
|
|
8020
|
-
|
|
8021
|
-
C++ signature :
|
|
8022
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
|
|
6623
|
+
joints velocity $\dot q$
|
|
8023
6624
|
"""
|
|
8024
6625
|
|
|
8025
|
-
qdd:
|
|
6626
|
+
qdd: numpy.ndarray # Eigen::VectorXd
|
|
8026
6627
|
"""
|
|
8027
|
-
|
|
8028
|
-
None( (placo.RobotWrapper_State)arg1) -> object :
|
|
8029
|
-
|
|
8030
|
-
C++ signature :
|
|
8031
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
|
|
6628
|
+
joints acceleration $\ddot q$
|
|
8032
6629
|
"""
|
|
8033
6630
|
|
|
8034
6631
|
|
|
@@ -8038,14 +6635,7 @@ class Segment:
|
|
|
8038
6635
|
) -> any:
|
|
8039
6636
|
...
|
|
8040
6637
|
|
|
8041
|
-
end:
|
|
8042
|
-
"""
|
|
8043
|
-
|
|
8044
|
-
None( (placo.Segment)arg1) -> object :
|
|
8045
|
-
|
|
8046
|
-
C++ signature :
|
|
8047
|
-
Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::tools::Segment {lvalue})
|
|
8048
|
-
"""
|
|
6638
|
+
end: numpy.ndarray # Eigen::Vector2d
|
|
8049
6639
|
|
|
8050
6640
|
def half_line_pass_through(
|
|
8051
6641
|
self,
|
|
@@ -8148,14 +6738,7 @@ None( (placo.Segment)arg1) -> object :
|
|
|
8148
6738
|
) -> float:
|
|
8149
6739
|
...
|
|
8150
6740
|
|
|
8151
|
-
start:
|
|
8152
|
-
"""
|
|
8153
|
-
|
|
8154
|
-
None( (placo.Segment)arg1) -> object :
|
|
8155
|
-
|
|
8156
|
-
C++ signature :
|
|
8157
|
-
Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::tools::Segment {lvalue})
|
|
8158
|
-
"""
|
|
6741
|
+
start: numpy.ndarray # Eigen::Vector2d
|
|
8159
6742
|
|
|
8160
6743
|
|
|
8161
6744
|
class Sparsity:
|
|
@@ -8189,13 +6772,9 @@ class Sparsity:
|
|
|
8189
6772
|
"""
|
|
8190
6773
|
...
|
|
8191
6774
|
|
|
8192
|
-
intervals:
|
|
6775
|
+
intervals: list[SparsityInterval] # std::vector<placo::problem::Sparsity::Interval>
|
|
8193
6776
|
"""
|
|
8194
|
-
|
|
8195
|
-
None( (placo.Sparsity)arg1) -> numpy.ndarray :
|
|
8196
|
-
|
|
8197
|
-
C++ signature :
|
|
8198
|
-
Eigen::Matrix<int, -1, -1, 0, -1, -1> None(placo::problem::Sparsity)
|
|
6777
|
+
Intervals of non-sparse columns.
|
|
8199
6778
|
"""
|
|
8200
6779
|
|
|
8201
6780
|
def print_intervals(
|
|
@@ -8213,22 +6792,14 @@ class SparsityInterval:
|
|
|
8213
6792
|
) -> None:
|
|
8214
6793
|
...
|
|
8215
6794
|
|
|
8216
|
-
end:
|
|
6795
|
+
end: int # int
|
|
8217
6796
|
"""
|
|
8218
|
-
|
|
8219
|
-
None( (placo.SparsityInterval)arg1) -> int :
|
|
8220
|
-
|
|
8221
|
-
C++ signature :
|
|
8222
|
-
int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
|
|
6797
|
+
End of interval.
|
|
8223
6798
|
"""
|
|
8224
6799
|
|
|
8225
|
-
start:
|
|
6800
|
+
start: int # int
|
|
8226
6801
|
"""
|
|
8227
|
-
|
|
8228
|
-
None( (placo.SparsityInterval)arg1) -> int :
|
|
8229
|
-
|
|
8230
|
-
C++ signature :
|
|
8231
|
-
int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
|
|
6802
|
+
Start of interval.
|
|
8232
6803
|
"""
|
|
8233
6804
|
|
|
8234
6805
|
|
|
@@ -8244,23 +6815,9 @@ class Support:
|
|
|
8244
6815
|
) -> None:
|
|
8245
6816
|
...
|
|
8246
6817
|
|
|
8247
|
-
elapsed_ratio:
|
|
8248
|
-
"""
|
|
8249
|
-
|
|
8250
|
-
None( (placo.Support)arg1) -> float :
|
|
8251
|
-
|
|
8252
|
-
C++ signature :
|
|
8253
|
-
double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8254
|
-
"""
|
|
8255
|
-
|
|
8256
|
-
end: any
|
|
8257
|
-
"""
|
|
8258
|
-
|
|
8259
|
-
None( (placo.Support)arg1) -> bool :
|
|
6818
|
+
elapsed_ratio: float # double
|
|
8260
6819
|
|
|
8261
|
-
|
|
8262
|
-
bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8263
|
-
"""
|
|
6820
|
+
end: bool # bool
|
|
8264
6821
|
|
|
8265
6822
|
def footstep_frame(
|
|
8266
6823
|
self,
|
|
@@ -8273,14 +6830,7 @@ None( (placo.Support)arg1) -> bool :
|
|
|
8273
6830
|
"""
|
|
8274
6831
|
...
|
|
8275
6832
|
|
|
8276
|
-
footsteps:
|
|
8277
|
-
"""
|
|
8278
|
-
|
|
8279
|
-
None( (placo.Support)arg1) -> object :
|
|
8280
|
-
|
|
8281
|
-
C++ signature :
|
|
8282
|
-
std::vector<placo::humanoid::FootstepsPlanner::Footstep, std::allocator<placo::humanoid::FootstepsPlanner::Footstep> > {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8283
|
-
"""
|
|
6833
|
+
footsteps: list[Footstep] # std::vector<placo::humanoid::FootstepsPlanner::Footstep>
|
|
8284
6834
|
|
|
8285
6835
|
def frame(
|
|
8286
6836
|
self,
|
|
@@ -8318,46 +6868,18 @@ None( (placo.Support)arg1) -> object :
|
|
|
8318
6868
|
"""
|
|
8319
6869
|
...
|
|
8320
6870
|
|
|
8321
|
-
start:
|
|
8322
|
-
"""
|
|
8323
|
-
|
|
8324
|
-
None( (placo.Support)arg1) -> bool :
|
|
8325
|
-
|
|
8326
|
-
C++ signature :
|
|
8327
|
-
bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8328
|
-
"""
|
|
6871
|
+
start: bool # bool
|
|
8329
6872
|
|
|
8330
6873
|
def support_polygon(
|
|
8331
6874
|
self,
|
|
8332
6875
|
) -> list[numpy.ndarray]:
|
|
8333
6876
|
...
|
|
8334
6877
|
|
|
8335
|
-
t_start:
|
|
8336
|
-
"""
|
|
8337
|
-
|
|
8338
|
-
None( (placo.Support)arg1) -> float :
|
|
8339
|
-
|
|
8340
|
-
C++ signature :
|
|
8341
|
-
double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8342
|
-
"""
|
|
8343
|
-
|
|
8344
|
-
target_world_dcm: any
|
|
8345
|
-
"""
|
|
8346
|
-
|
|
8347
|
-
None( (placo.Support)arg1) -> object :
|
|
8348
|
-
|
|
8349
|
-
C++ signature :
|
|
8350
|
-
Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8351
|
-
"""
|
|
6878
|
+
t_start: float # double
|
|
8352
6879
|
|
|
8353
|
-
|
|
8354
|
-
"""
|
|
8355
|
-
|
|
8356
|
-
None( (placo.Support)arg1) -> float :
|
|
6880
|
+
target_world_dcm: numpy.ndarray # Eigen::Vector2d
|
|
8357
6881
|
|
|
8358
|
-
|
|
8359
|
-
double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8360
|
-
"""
|
|
6882
|
+
time_ratio: float # double
|
|
8361
6883
|
|
|
8362
6884
|
|
|
8363
6885
|
class Supports:
|
|
@@ -8506,26 +7028,18 @@ class SwingFootTrajectory:
|
|
|
8506
7028
|
|
|
8507
7029
|
|
|
8508
7030
|
class Task:
|
|
8509
|
-
A:
|
|
7031
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
8510
7032
|
"""
|
|
8511
|
-
|
|
8512
|
-
None( (placo.Task)arg1) -> object :
|
|
8513
|
-
|
|
8514
|
-
C++ signature :
|
|
8515
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
7033
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
8516
7034
|
"""
|
|
8517
7035
|
|
|
8518
7036
|
def __init__(
|
|
8519
7037
|
) -> any:
|
|
8520
7038
|
...
|
|
8521
7039
|
|
|
8522
|
-
b:
|
|
7040
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
8523
7041
|
"""
|
|
8524
|
-
|
|
8525
|
-
None( (placo.Task)arg1) -> object :
|
|
8526
|
-
|
|
8527
|
-
C++ signature :
|
|
8528
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
7042
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
8529
7043
|
"""
|
|
8530
7044
|
|
|
8531
7045
|
def configure(
|
|
@@ -8559,13 +7073,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
8559
7073
|
"""
|
|
8560
7074
|
...
|
|
8561
7075
|
|
|
8562
|
-
name:
|
|
7076
|
+
name: str # std::string
|
|
8563
7077
|
"""
|
|
8564
|
-
|
|
8565
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
8566
|
-
|
|
8567
|
-
C++ signature :
|
|
8568
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
7078
|
+
Object name.
|
|
8569
7079
|
"""
|
|
8570
7080
|
|
|
8571
7081
|
priority: str
|
|
@@ -8592,58 +7102,34 @@ class TaskContact:
|
|
|
8592
7102
|
"""
|
|
8593
7103
|
...
|
|
8594
7104
|
|
|
8595
|
-
active:
|
|
7105
|
+
active: bool # bool
|
|
8596
7106
|
"""
|
|
8597
|
-
|
|
8598
|
-
None( (placo.Contact)arg1) -> bool :
|
|
8599
|
-
|
|
8600
|
-
C++ signature :
|
|
8601
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7107
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
8602
7108
|
"""
|
|
8603
7109
|
|
|
8604
|
-
mu:
|
|
7110
|
+
mu: float # double
|
|
8605
7111
|
"""
|
|
8606
|
-
|
|
8607
|
-
None( (placo.Contact)arg1) -> float :
|
|
8608
|
-
|
|
8609
|
-
C++ signature :
|
|
8610
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7112
|
+
Coefficient of friction (if relevant)
|
|
8611
7113
|
"""
|
|
8612
7114
|
|
|
8613
|
-
weight_forces:
|
|
7115
|
+
weight_forces: float # double
|
|
8614
7116
|
"""
|
|
8615
|
-
|
|
8616
|
-
None( (placo.Contact)arg1) -> float :
|
|
8617
|
-
|
|
8618
|
-
C++ signature :
|
|
8619
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7117
|
+
Weight of forces for the optimization (if relevant)
|
|
8620
7118
|
"""
|
|
8621
7119
|
|
|
8622
|
-
weight_moments:
|
|
7120
|
+
weight_moments: float # double
|
|
8623
7121
|
"""
|
|
8624
|
-
|
|
8625
|
-
None( (placo.Contact)arg1) -> float :
|
|
8626
|
-
|
|
8627
|
-
C++ signature :
|
|
8628
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7122
|
+
Weight of moments for optimization (if relevant)
|
|
8629
7123
|
"""
|
|
8630
7124
|
|
|
8631
|
-
weight_tangentials:
|
|
7125
|
+
weight_tangentials: float # double
|
|
8632
7126
|
"""
|
|
8633
|
-
|
|
8634
|
-
None( (placo.Contact)arg1) -> float :
|
|
8635
|
-
|
|
8636
|
-
C++ signature :
|
|
8637
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7127
|
+
Extra cost for tangential forces.
|
|
8638
7128
|
"""
|
|
8639
7129
|
|
|
8640
|
-
wrench:
|
|
7130
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
8641
7131
|
"""
|
|
8642
|
-
|
|
8643
|
-
None( (placo.Contact)arg1) -> object :
|
|
8644
|
-
|
|
8645
|
-
C++ signature :
|
|
8646
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7132
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
8647
7133
|
"""
|
|
8648
7134
|
|
|
8649
7135
|
|
|
@@ -8669,31 +7155,19 @@ class Variable:
|
|
|
8669
7155
|
"""
|
|
8670
7156
|
...
|
|
8671
7157
|
|
|
8672
|
-
k_end:
|
|
7158
|
+
k_end: int # int
|
|
8673
7159
|
"""
|
|
8674
|
-
|
|
8675
|
-
None( (placo.Variable)arg1) -> int :
|
|
8676
|
-
|
|
8677
|
-
C++ signature :
|
|
8678
|
-
int {lvalue} None(placo::problem::Variable {lvalue})
|
|
7160
|
+
End offset in the Problem.
|
|
8679
7161
|
"""
|
|
8680
7162
|
|
|
8681
|
-
k_start:
|
|
7163
|
+
k_start: int # int
|
|
8682
7164
|
"""
|
|
8683
|
-
|
|
8684
|
-
None( (placo.Variable)arg1) -> int :
|
|
8685
|
-
|
|
8686
|
-
C++ signature :
|
|
8687
|
-
int {lvalue} None(placo::problem::Variable {lvalue})
|
|
7165
|
+
Start offset in the Problem.
|
|
8688
7166
|
"""
|
|
8689
7167
|
|
|
8690
|
-
value:
|
|
7168
|
+
value: numpy.ndarray # Eigen::VectorXd
|
|
8691
7169
|
"""
|
|
8692
|
-
|
|
8693
|
-
None( (placo.Variable)arg1) -> object :
|
|
8694
|
-
|
|
8695
|
-
C++ signature :
|
|
8696
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Variable {lvalue})
|
|
7170
|
+
Variable value, populated by Problem after a solve.
|
|
8697
7171
|
"""
|
|
8698
7172
|
|
|
8699
7173
|
|
|
@@ -8716,14 +7190,7 @@ class WPGTrajectory:
|
|
|
8716
7190
|
"""
|
|
8717
7191
|
...
|
|
8718
7192
|
|
|
8719
|
-
com_target_z:
|
|
8720
|
-
"""
|
|
8721
|
-
|
|
8722
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
8723
|
-
|
|
8724
|
-
C++ signature :
|
|
8725
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8726
|
-
"""
|
|
7193
|
+
com_target_z: float # double
|
|
8727
7194
|
|
|
8728
7195
|
def get_R_world_trunk(
|
|
8729
7196
|
self,
|
|
@@ -8875,28 +7342,14 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8875
7342
|
) -> numpy.ndarray:
|
|
8876
7343
|
...
|
|
8877
7344
|
|
|
8878
|
-
parts:
|
|
8879
|
-
"""
|
|
8880
|
-
|
|
8881
|
-
None( (placo.WPGTrajectory)arg1) -> object :
|
|
8882
|
-
|
|
8883
|
-
C++ signature :
|
|
8884
|
-
std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart, std::allocator<placo::humanoid::WalkPatternGenerator::TrajectoryPart> > {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8885
|
-
"""
|
|
7345
|
+
parts: list[WPGTrajectoryPart] # std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart>
|
|
8886
7346
|
|
|
8887
7347
|
def print_parts_timings(
|
|
8888
7348
|
self,
|
|
8889
7349
|
) -> None:
|
|
8890
7350
|
...
|
|
8891
7351
|
|
|
8892
|
-
replan_success:
|
|
8893
|
-
"""
|
|
8894
|
-
|
|
8895
|
-
None( (placo.WPGTrajectory)arg1) -> bool :
|
|
8896
|
-
|
|
8897
|
-
C++ signature :
|
|
8898
|
-
bool {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8899
|
-
"""
|
|
7352
|
+
replan_success: bool # bool
|
|
8900
7353
|
|
|
8901
7354
|
def support_is_both(
|
|
8902
7355
|
self,
|
|
@@ -8910,41 +7363,13 @@ None( (placo.WPGTrajectory)arg1) -> bool :
|
|
|
8910
7363
|
) -> any:
|
|
8911
7364
|
...
|
|
8912
7365
|
|
|
8913
|
-
t_end:
|
|
8914
|
-
"""
|
|
8915
|
-
|
|
8916
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
8917
|
-
|
|
8918
|
-
C++ signature :
|
|
8919
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8920
|
-
"""
|
|
8921
|
-
|
|
8922
|
-
t_start: any
|
|
8923
|
-
"""
|
|
8924
|
-
|
|
8925
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
8926
|
-
|
|
8927
|
-
C++ signature :
|
|
8928
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8929
|
-
"""
|
|
7366
|
+
t_end: float # double
|
|
8930
7367
|
|
|
8931
|
-
|
|
8932
|
-
"""
|
|
8933
|
-
|
|
8934
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
8935
|
-
|
|
8936
|
-
C++ signature :
|
|
8937
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8938
|
-
"""
|
|
7368
|
+
t_start: float # double
|
|
8939
7369
|
|
|
8940
|
-
|
|
8941
|
-
"""
|
|
8942
|
-
|
|
8943
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
7370
|
+
trunk_pitch: float # double
|
|
8944
7371
|
|
|
8945
|
-
|
|
8946
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8947
|
-
"""
|
|
7372
|
+
trunk_roll: float # double
|
|
8948
7373
|
|
|
8949
7374
|
|
|
8950
7375
|
class WPGTrajectoryPart:
|
|
@@ -8955,32 +7380,11 @@ class WPGTrajectoryPart:
|
|
|
8955
7380
|
) -> None:
|
|
8956
7381
|
...
|
|
8957
7382
|
|
|
8958
|
-
support:
|
|
8959
|
-
"""
|
|
8960
|
-
|
|
8961
|
-
None( (placo.WPGTrajectoryPart)arg1) -> placo.Support :
|
|
8962
|
-
|
|
8963
|
-
C++ signature :
|
|
8964
|
-
placo::humanoid::FootstepsPlanner::Support {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
|
|
8965
|
-
"""
|
|
8966
|
-
|
|
8967
|
-
t_end: any
|
|
8968
|
-
"""
|
|
8969
|
-
|
|
8970
|
-
None( (placo.WPGTrajectoryPart)arg1) -> float :
|
|
8971
|
-
|
|
8972
|
-
C++ signature :
|
|
8973
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
|
|
8974
|
-
"""
|
|
7383
|
+
support: Support # placo::humanoid::FootstepsPlanner::Support
|
|
8975
7384
|
|
|
8976
|
-
|
|
8977
|
-
"""
|
|
8978
|
-
|
|
8979
|
-
None( (placo.WPGTrajectoryPart)arg1) -> float :
|
|
7385
|
+
t_end: float # double
|
|
8980
7386
|
|
|
8981
|
-
|
|
8982
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
|
|
8983
|
-
"""
|
|
7387
|
+
t_start: float # double
|
|
8984
7388
|
|
|
8985
7389
|
|
|
8986
7390
|
class WalkPatternGenerator:
|
|
@@ -9058,23 +7462,9 @@ class WalkPatternGenerator:
|
|
|
9058
7462
|
"""
|
|
9059
7463
|
...
|
|
9060
7464
|
|
|
9061
|
-
soft:
|
|
9062
|
-
"""
|
|
9063
|
-
|
|
9064
|
-
None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
9065
|
-
|
|
9066
|
-
C++ signature :
|
|
9067
|
-
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9068
|
-
"""
|
|
7465
|
+
soft: bool # bool
|
|
9069
7466
|
|
|
9070
|
-
stop_end_support_weight:
|
|
9071
|
-
"""
|
|
9072
|
-
|
|
9073
|
-
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
9074
|
-
|
|
9075
|
-
C++ signature :
|
|
9076
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9077
|
-
"""
|
|
7467
|
+
stop_end_support_weight: float # double
|
|
9078
7468
|
|
|
9079
7469
|
def support_default_duration(
|
|
9080
7470
|
self,
|
|
@@ -9103,14 +7493,7 @@ None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
|
9103
7493
|
"""
|
|
9104
7494
|
...
|
|
9105
7495
|
|
|
9106
|
-
zmp_in_support_weight:
|
|
9107
|
-
"""
|
|
9108
|
-
|
|
9109
|
-
None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
9110
|
-
|
|
9111
|
-
C++ signature :
|
|
9112
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9113
|
-
"""
|
|
7496
|
+
zmp_in_support_weight: float # double
|
|
9114
7497
|
|
|
9115
7498
|
|
|
9116
7499
|
class WalkTasks:
|
|
@@ -9119,32 +7502,11 @@ class WalkTasks:
|
|
|
9119
7502
|
) -> None:
|
|
9120
7503
|
...
|
|
9121
7504
|
|
|
9122
|
-
com_task:
|
|
9123
|
-
"""
|
|
9124
|
-
|
|
9125
|
-
None( (placo.WalkTasks)arg1) -> placo.CoMTask :
|
|
9126
|
-
|
|
9127
|
-
C++ signature :
|
|
9128
|
-
placo::kinematics::CoMTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9129
|
-
"""
|
|
9130
|
-
|
|
9131
|
-
com_x: any
|
|
9132
|
-
"""
|
|
9133
|
-
|
|
9134
|
-
None( (placo.WalkTasks)arg1) -> float :
|
|
9135
|
-
|
|
9136
|
-
C++ signature :
|
|
9137
|
-
double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9138
|
-
"""
|
|
7505
|
+
com_task: CoMTask # placo::kinematics::CoMTask
|
|
9139
7506
|
|
|
9140
|
-
|
|
9141
|
-
"""
|
|
9142
|
-
|
|
9143
|
-
None( (placo.WalkTasks)arg1) -> float :
|
|
7507
|
+
com_x: float # double
|
|
9144
7508
|
|
|
9145
|
-
|
|
9146
|
-
double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9147
|
-
"""
|
|
7509
|
+
com_y: float # double
|
|
9148
7510
|
|
|
9149
7511
|
def get_tasks_error(
|
|
9150
7512
|
self,
|
|
@@ -9158,14 +7520,7 @@ None( (placo.WalkTasks)arg1) -> float :
|
|
|
9158
7520
|
) -> None:
|
|
9159
7521
|
...
|
|
9160
7522
|
|
|
9161
|
-
left_foot_task:
|
|
9162
|
-
"""
|
|
9163
|
-
|
|
9164
|
-
None( (placo.WalkTasks)arg1) -> placo.FrameTask :
|
|
9165
|
-
|
|
9166
|
-
C++ signature :
|
|
9167
|
-
placo::kinematics::FrameTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9168
|
-
"""
|
|
7523
|
+
left_foot_task: FrameTask # placo::kinematics::FrameTask
|
|
9169
7524
|
|
|
9170
7525
|
def reach_initial_pose(
|
|
9171
7526
|
self,
|
|
@@ -9181,59 +7536,17 @@ None( (placo.WalkTasks)arg1) -> placo.FrameTask :
|
|
|
9181
7536
|
) -> None:
|
|
9182
7537
|
...
|
|
9183
7538
|
|
|
9184
|
-
right_foot_task:
|
|
9185
|
-
"""
|
|
9186
|
-
|
|
9187
|
-
None( (placo.WalkTasks)arg1) -> placo.FrameTask :
|
|
9188
|
-
|
|
9189
|
-
C++ signature :
|
|
9190
|
-
placo::kinematics::FrameTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9191
|
-
"""
|
|
9192
|
-
|
|
9193
|
-
scaled: any
|
|
9194
|
-
"""
|
|
9195
|
-
|
|
9196
|
-
None( (placo.WalkTasks)arg1) -> bool :
|
|
9197
|
-
|
|
9198
|
-
C++ signature :
|
|
9199
|
-
bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9200
|
-
"""
|
|
9201
|
-
|
|
9202
|
-
solver: any
|
|
9203
|
-
"""
|
|
9204
|
-
|
|
9205
|
-
None( (placo.WalkTasks)arg1) -> placo.KinematicsSolver :
|
|
9206
|
-
|
|
9207
|
-
C++ signature :
|
|
9208
|
-
placo::kinematics::KinematicsSolver None(placo::humanoid::WalkTasks {lvalue})
|
|
9209
|
-
"""
|
|
9210
|
-
|
|
9211
|
-
trunk_mode: any
|
|
9212
|
-
"""
|
|
9213
|
-
|
|
9214
|
-
None( (placo.WalkTasks)arg1) -> bool :
|
|
7539
|
+
right_foot_task: FrameTask # placo::kinematics::FrameTask
|
|
9215
7540
|
|
|
9216
|
-
|
|
9217
|
-
bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9218
|
-
"""
|
|
7541
|
+
scaled: bool # bool
|
|
9219
7542
|
|
|
9220
|
-
|
|
9221
|
-
"""
|
|
9222
|
-
|
|
9223
|
-
None( (placo.WalkTasks)arg1) -> placo.OrientationTask :
|
|
7543
|
+
solver: KinematicsSolver # placo::kinematics::KinematicsSolver
|
|
9224
7544
|
|
|
9225
|
-
|
|
9226
|
-
placo::kinematics::OrientationTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9227
|
-
"""
|
|
7545
|
+
trunk_mode: bool # bool
|
|
9228
7546
|
|
|
9229
|
-
|
|
9230
|
-
"""
|
|
9231
|
-
|
|
9232
|
-
None( (placo.WalkTasks)arg1) -> placo.PositionTask :
|
|
7547
|
+
trunk_orientation_task: OrientationTask # placo::kinematics::OrientationTask
|
|
9233
7548
|
|
|
9234
|
-
|
|
9235
|
-
placo::kinematics::PositionTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9236
|
-
"""
|
|
7549
|
+
trunk_task: PositionTask # placo::kinematics::PositionTask
|
|
9237
7550
|
|
|
9238
7551
|
def update_tasks(
|
|
9239
7552
|
self,
|
|
@@ -9251,22 +7564,14 @@ None( (placo.WalkTasks)arg1) -> placo.PositionTask :
|
|
|
9251
7564
|
|
|
9252
7565
|
|
|
9253
7566
|
class WheelTask:
|
|
9254
|
-
A:
|
|
7567
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
9255
7568
|
"""
|
|
9256
|
-
|
|
9257
|
-
None( (placo.Task)arg1) -> object :
|
|
9258
|
-
|
|
9259
|
-
C++ signature :
|
|
9260
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
7569
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
9261
7570
|
"""
|
|
9262
7571
|
|
|
9263
|
-
T_world_surface:
|
|
7572
|
+
T_world_surface: numpy.ndarray # Eigen::Affine3d
|
|
9264
7573
|
"""
|
|
9265
|
-
|
|
9266
|
-
None( (placo.WheelTask)arg1) -> object :
|
|
9267
|
-
|
|
9268
|
-
C++ signature :
|
|
9269
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7574
|
+
Target position in the world.
|
|
9270
7575
|
"""
|
|
9271
7576
|
|
|
9272
7577
|
def __init__(
|
|
@@ -9280,13 +7585,9 @@ None( (placo.WheelTask)arg1) -> object :
|
|
|
9280
7585
|
"""
|
|
9281
7586
|
...
|
|
9282
7587
|
|
|
9283
|
-
b:
|
|
7588
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
9284
7589
|
"""
|
|
9285
|
-
|
|
9286
|
-
None( (placo.Task)arg1) -> object :
|
|
9287
|
-
|
|
9288
|
-
C++ signature :
|
|
9289
|
-
Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
|
|
7590
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
9290
7591
|
"""
|
|
9291
7592
|
|
|
9292
7593
|
def configure(
|
|
@@ -9320,31 +7621,19 @@ None( (placo.Task)arg1) -> object :
|
|
|
9320
7621
|
"""
|
|
9321
7622
|
...
|
|
9322
7623
|
|
|
9323
|
-
joint:
|
|
7624
|
+
joint: str # std::string
|
|
9324
7625
|
"""
|
|
9325
|
-
|
|
9326
|
-
None( (placo.WheelTask)arg1) -> str :
|
|
9327
|
-
|
|
9328
|
-
C++ signature :
|
|
9329
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7626
|
+
Frame.
|
|
9330
7627
|
"""
|
|
9331
7628
|
|
|
9332
|
-
name:
|
|
7629
|
+
name: str # std::string
|
|
9333
7630
|
"""
|
|
9334
|
-
|
|
9335
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
9336
|
-
|
|
9337
|
-
C++ signature :
|
|
9338
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
7631
|
+
Object name.
|
|
9339
7632
|
"""
|
|
9340
7633
|
|
|
9341
|
-
omniwheel:
|
|
7634
|
+
omniwheel: bool # bool
|
|
9342
7635
|
"""
|
|
9343
|
-
|
|
9344
|
-
None( (placo.WheelTask)arg1) -> bool :
|
|
9345
|
-
|
|
9346
|
-
C++ signature :
|
|
9347
|
-
bool {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7636
|
+
Omniwheel (can slide laterally)
|
|
9348
7637
|
"""
|
|
9349
7638
|
|
|
9350
7639
|
priority: str
|
|
@@ -9352,13 +7641,9 @@ None( (placo.WheelTask)arg1) -> bool :
|
|
|
9352
7641
|
Priority [str]
|
|
9353
7642
|
"""
|
|
9354
7643
|
|
|
9355
|
-
radius:
|
|
7644
|
+
radius: float # double
|
|
9356
7645
|
"""
|
|
9357
|
-
|
|
9358
|
-
None( (placo.WheelTask)arg1) -> float :
|
|
9359
|
-
|
|
9360
|
-
C++ signature :
|
|
9361
|
-
double {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7646
|
+
Wheel radius.
|
|
9362
7647
|
"""
|
|
9363
7648
|
|
|
9364
7649
|
def update(
|
|
@@ -9382,13 +7667,9 @@ class YawConstraint:
|
|
|
9382
7667
|
"""
|
|
9383
7668
|
...
|
|
9384
7669
|
|
|
9385
|
-
angle_max:
|
|
7670
|
+
angle_max: float # double
|
|
9386
7671
|
"""
|
|
9387
|
-
|
|
9388
|
-
None( (placo.YawConstraint)arg1) -> float :
|
|
9389
|
-
|
|
9390
|
-
C++ signature :
|
|
9391
|
-
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
7672
|
+
Maximum angle allowable by the yaw constraint (yaw is taken for x-axis of b around z-axis in a)
|
|
9392
7673
|
"""
|
|
9393
7674
|
|
|
9394
7675
|
def configure(
|
|
@@ -9406,13 +7687,9 @@ None( (placo.YawConstraint)arg1) -> float :
|
|
|
9406
7687
|
"""
|
|
9407
7688
|
...
|
|
9408
7689
|
|
|
9409
|
-
name:
|
|
7690
|
+
name: str # std::string
|
|
9410
7691
|
"""
|
|
9411
|
-
|
|
9412
|
-
None( (placo.Prioritized)arg1) -> str :
|
|
9413
|
-
|
|
9414
|
-
C++ signature :
|
|
9415
|
-
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
7692
|
+
Object name.
|
|
9416
7693
|
"""
|
|
9417
7694
|
|
|
9418
7695
|
priority: str
|