placo 0.9.6__0-cp310-cp310-manylinux_2_28_aarch64.whl → 0.9.7__0-cp310-cp310-manylinux_2_28_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of placo might be problematic. Click here for more details.
- cmeel.prefix/lib/liblibplaco.so +0 -0
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi +726 -2464
- cmeel.prefix/lib/python3.10/site-packages/placo.so +0 -0
- {placo-0.9.6.dist-info → placo-0.9.7.dist-info}/METADATA +2 -2
- placo-0.9.7.dist-info/RECORD +12 -0
- placo-0.9.6.dist-info/RECORD +0 -12
- {placo-0.9.6.dist-info → placo-0.9.7.dist-info}/WHEEL +0 -0
- {placo-0.9.6.dist-info → placo-0.9.7.dist-info}/licenses/LICENSE +0 -0
- {placo-0.9.6.dist-info → placo-0.9.7.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,14 @@ None( (placo.DummyWalk)arg1) -> object :
|
|
|
1357
1069
|
) -> any:
|
|
1358
1070
|
...
|
|
1359
1071
|
|
|
1360
|
-
feet_spacing:
|
|
1072
|
+
feet_spacing: float # double
|
|
1361
1073
|
"""
|
|
1362
|
-
|
|
1363
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1364
|
-
|
|
1365
|
-
C++ signature :
|
|
1366
|
-
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1074
|
+
Feet spacing [m].
|
|
1367
1075
|
"""
|
|
1368
1076
|
|
|
1369
|
-
lift_height:
|
|
1077
|
+
lift_height: float # double
|
|
1370
1078
|
"""
|
|
1371
|
-
|
|
1372
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1373
|
-
|
|
1374
|
-
C++ signature :
|
|
1375
|
-
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1079
|
+
Lift height [m].
|
|
1376
1080
|
"""
|
|
1377
1081
|
|
|
1378
1082
|
def next_step(
|
|
@@ -1401,49 +1105,29 @@ None( (placo.DummyWalk)arg1) -> float :
|
|
|
1401
1105
|
"""
|
|
1402
1106
|
...
|
|
1403
1107
|
|
|
1404
|
-
robot:
|
|
1108
|
+
robot: RobotWrapper # placo::model::RobotWrapper
|
|
1405
1109
|
"""
|
|
1406
|
-
|
|
1407
|
-
None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
|
|
1408
|
-
|
|
1409
|
-
C++ signature :
|
|
1410
|
-
placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1110
|
+
Robot wrapper.
|
|
1411
1111
|
"""
|
|
1412
1112
|
|
|
1413
|
-
solver:
|
|
1113
|
+
solver: KinematicsSolver # placo::kinematics::KinematicsSolver
|
|
1414
1114
|
"""
|
|
1415
|
-
|
|
1416
|
-
None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
|
|
1417
|
-
|
|
1418
|
-
C++ signature :
|
|
1419
|
-
placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1115
|
+
Kinematics solver.
|
|
1420
1116
|
"""
|
|
1421
1117
|
|
|
1422
|
-
support_left:
|
|
1118
|
+
support_left: bool # bool
|
|
1423
1119
|
"""
|
|
1424
|
-
|
|
1425
|
-
None( (placo.DummyWalk)arg1) -> bool :
|
|
1426
|
-
|
|
1427
|
-
C++ signature :
|
|
1428
|
-
bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1120
|
+
Whether the current support is left or right.
|
|
1429
1121
|
"""
|
|
1430
1122
|
|
|
1431
|
-
trunk_height:
|
|
1123
|
+
trunk_height: float # double
|
|
1432
1124
|
"""
|
|
1433
|
-
|
|
1434
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1435
|
-
|
|
1436
|
-
C++ signature :
|
|
1437
|
-
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1125
|
+
Trunk height [m].
|
|
1438
1126
|
"""
|
|
1439
1127
|
|
|
1440
|
-
trunk_pitch:
|
|
1128
|
+
trunk_pitch: float # double
|
|
1441
1129
|
"""
|
|
1442
|
-
|
|
1443
|
-
None( (placo.DummyWalk)arg1) -> float :
|
|
1444
|
-
|
|
1445
|
-
C++ signature :
|
|
1446
|
-
double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
|
|
1130
|
+
Trunk pitch angle [rad].
|
|
1447
1131
|
"""
|
|
1448
1132
|
|
|
1449
1133
|
def update(
|
|
@@ -1468,13 +1152,9 @@ None( (placo.DummyWalk)arg1) -> float :
|
|
|
1468
1152
|
|
|
1469
1153
|
|
|
1470
1154
|
class DynamicsCoMTask:
|
|
1471
|
-
A:
|
|
1155
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1472
1156
|
"""
|
|
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})
|
|
1157
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1478
1158
|
"""
|
|
1479
1159
|
|
|
1480
1160
|
def __init__(
|
|
@@ -1483,13 +1163,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1483
1163
|
) -> None:
|
|
1484
1164
|
...
|
|
1485
1165
|
|
|
1486
|
-
b:
|
|
1166
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1487
1167
|
"""
|
|
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})
|
|
1168
|
+
b vector in Ax = b, where x is the accelerations
|
|
1493
1169
|
"""
|
|
1494
1170
|
|
|
1495
1171
|
def configure(
|
|
@@ -1507,76 +1183,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1507
1183
|
"""
|
|
1508
1184
|
...
|
|
1509
1185
|
|
|
1510
|
-
ddtarget_world:
|
|
1186
|
+
ddtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
1511
1187
|
"""
|
|
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})
|
|
1188
|
+
Target acceleration in the world.
|
|
1517
1189
|
"""
|
|
1518
1190
|
|
|
1519
|
-
derror:
|
|
1191
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1520
1192
|
"""
|
|
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})
|
|
1193
|
+
Current velocity error vector.
|
|
1526
1194
|
"""
|
|
1527
1195
|
|
|
1528
|
-
dtarget_world:
|
|
1196
|
+
dtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
1529
1197
|
"""
|
|
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})
|
|
1198
|
+
Target velocity to reach in robot frame.
|
|
1535
1199
|
"""
|
|
1536
1200
|
|
|
1537
|
-
error:
|
|
1201
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1538
1202
|
"""
|
|
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})
|
|
1203
|
+
Current error vector.
|
|
1544
1204
|
"""
|
|
1545
1205
|
|
|
1546
|
-
kd:
|
|
1206
|
+
kd: float # double
|
|
1547
1207
|
"""
|
|
1548
|
-
|
|
1549
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1550
|
-
|
|
1551
|
-
C++ signature :
|
|
1552
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1208
|
+
D gain for position control (if negative, will be critically damped)
|
|
1553
1209
|
"""
|
|
1554
1210
|
|
|
1555
|
-
kp:
|
|
1211
|
+
kp: float # double
|
|
1556
1212
|
"""
|
|
1557
|
-
|
|
1558
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1559
|
-
|
|
1560
|
-
C++ signature :
|
|
1561
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1213
|
+
K gain for position control.
|
|
1562
1214
|
"""
|
|
1563
1215
|
|
|
1564
|
-
mask:
|
|
1216
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
1565
1217
|
"""
|
|
1566
|
-
|
|
1567
|
-
None( (placo.DynamicsCoMTask)arg1) -> placo.AxisesMask :
|
|
1568
|
-
|
|
1569
|
-
C++ signature :
|
|
1570
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::CoMTask {lvalue})
|
|
1218
|
+
Axises mask.
|
|
1571
1219
|
"""
|
|
1572
1220
|
|
|
1573
|
-
name:
|
|
1221
|
+
name: str # std::string
|
|
1574
1222
|
"""
|
|
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})
|
|
1223
|
+
Object name.
|
|
1580
1224
|
"""
|
|
1581
1225
|
|
|
1582
1226
|
priority: str
|
|
@@ -1584,13 +1228,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1584
1228
|
Priority [str]
|
|
1585
1229
|
"""
|
|
1586
1230
|
|
|
1587
|
-
target_world:
|
|
1231
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
1588
1232
|
"""
|
|
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})
|
|
1233
|
+
Target to reach in world frame.
|
|
1594
1234
|
"""
|
|
1595
1235
|
|
|
1596
1236
|
|
|
@@ -1614,13 +1254,9 @@ class DynamicsConstraint:
|
|
|
1614
1254
|
"""
|
|
1615
1255
|
...
|
|
1616
1256
|
|
|
1617
|
-
name:
|
|
1257
|
+
name: str # std::string
|
|
1618
1258
|
"""
|
|
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})
|
|
1259
|
+
Object name.
|
|
1624
1260
|
"""
|
|
1625
1261
|
|
|
1626
1262
|
priority: str
|
|
@@ -1631,13 +1267,6 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1631
1267
|
|
|
1632
1268
|
class DynamicsFrameTask:
|
|
1633
1269
|
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
1270
|
|
|
1642
1271
|
def __init__(
|
|
1643
1272
|
arg1: object,
|
|
@@ -1673,13 +1302,9 @@ None( (placo.DynamicsFrameTask)arg1) -> object :
|
|
|
1673
1302
|
|
|
1674
1303
|
|
|
1675
1304
|
class DynamicsGearTask:
|
|
1676
|
-
A:
|
|
1305
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1677
1306
|
"""
|
|
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})
|
|
1307
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1683
1308
|
"""
|
|
1684
1309
|
|
|
1685
1310
|
def __init__(
|
|
@@ -1702,13 +1327,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1702
1327
|
"""
|
|
1703
1328
|
...
|
|
1704
1329
|
|
|
1705
|
-
b:
|
|
1330
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1706
1331
|
"""
|
|
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})
|
|
1332
|
+
b vector in Ax = b, where x is the accelerations
|
|
1712
1333
|
"""
|
|
1713
1334
|
|
|
1714
1335
|
def configure(
|
|
@@ -1726,49 +1347,29 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1726
1347
|
"""
|
|
1727
1348
|
...
|
|
1728
1349
|
|
|
1729
|
-
derror:
|
|
1350
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1730
1351
|
"""
|
|
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})
|
|
1352
|
+
Current velocity error vector.
|
|
1736
1353
|
"""
|
|
1737
1354
|
|
|
1738
|
-
error:
|
|
1355
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1739
1356
|
"""
|
|
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})
|
|
1357
|
+
Current error vector.
|
|
1745
1358
|
"""
|
|
1746
1359
|
|
|
1747
|
-
kd:
|
|
1360
|
+
kd: float # double
|
|
1748
1361
|
"""
|
|
1749
|
-
|
|
1750
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1751
|
-
|
|
1752
|
-
C++ signature :
|
|
1753
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1362
|
+
D gain for position control (if negative, will be critically damped)
|
|
1754
1363
|
"""
|
|
1755
1364
|
|
|
1756
|
-
kp:
|
|
1365
|
+
kp: float # double
|
|
1757
1366
|
"""
|
|
1758
|
-
|
|
1759
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1760
|
-
|
|
1761
|
-
C++ signature :
|
|
1762
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1367
|
+
K gain for position control.
|
|
1763
1368
|
"""
|
|
1764
1369
|
|
|
1765
|
-
name:
|
|
1370
|
+
name: str # std::string
|
|
1766
1371
|
"""
|
|
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})
|
|
1372
|
+
Object name.
|
|
1772
1373
|
"""
|
|
1773
1374
|
|
|
1774
1375
|
priority: str
|
|
@@ -1793,13 +1394,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1793
1394
|
|
|
1794
1395
|
|
|
1795
1396
|
class DynamicsJointsTask:
|
|
1796
|
-
A:
|
|
1397
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1797
1398
|
"""
|
|
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})
|
|
1399
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1803
1400
|
"""
|
|
1804
1401
|
|
|
1805
1402
|
def __init__(
|
|
@@ -1807,13 +1404,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1807
1404
|
) -> None:
|
|
1808
1405
|
...
|
|
1809
1406
|
|
|
1810
|
-
b:
|
|
1407
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1811
1408
|
"""
|
|
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})
|
|
1409
|
+
b vector in Ax = b, where x is the accelerations
|
|
1817
1410
|
"""
|
|
1818
1411
|
|
|
1819
1412
|
def configure(
|
|
@@ -1831,22 +1424,14 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1831
1424
|
"""
|
|
1832
1425
|
...
|
|
1833
1426
|
|
|
1834
|
-
derror:
|
|
1427
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1835
1428
|
"""
|
|
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})
|
|
1429
|
+
Current velocity error vector.
|
|
1841
1430
|
"""
|
|
1842
1431
|
|
|
1843
|
-
error:
|
|
1432
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1844
1433
|
"""
|
|
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})
|
|
1434
|
+
Current error vector.
|
|
1850
1435
|
"""
|
|
1851
1436
|
|
|
1852
1437
|
def get_joint(
|
|
@@ -1860,31 +1445,19 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1860
1445
|
"""
|
|
1861
1446
|
...
|
|
1862
1447
|
|
|
1863
|
-
kd:
|
|
1448
|
+
kd: float # double
|
|
1864
1449
|
"""
|
|
1865
|
-
|
|
1866
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1867
|
-
|
|
1868
|
-
C++ signature :
|
|
1869
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1450
|
+
D gain for position control (if negative, will be critically damped)
|
|
1870
1451
|
"""
|
|
1871
1452
|
|
|
1872
|
-
kp:
|
|
1453
|
+
kp: float # double
|
|
1873
1454
|
"""
|
|
1874
|
-
|
|
1875
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
1876
|
-
|
|
1877
|
-
C++ signature :
|
|
1878
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1455
|
+
K gain for position control.
|
|
1879
1456
|
"""
|
|
1880
1457
|
|
|
1881
|
-
name:
|
|
1458
|
+
name: str # std::string
|
|
1882
1459
|
"""
|
|
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})
|
|
1460
|
+
Object name.
|
|
1888
1461
|
"""
|
|
1889
1462
|
|
|
1890
1463
|
priority: str
|
|
@@ -1923,22 +1496,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
1923
1496
|
|
|
1924
1497
|
|
|
1925
1498
|
class DynamicsOrientationTask:
|
|
1926
|
-
A:
|
|
1499
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
1927
1500
|
"""
|
|
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})
|
|
1501
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
1933
1502
|
"""
|
|
1934
1503
|
|
|
1935
|
-
R_world_frame:
|
|
1504
|
+
R_world_frame: numpy.ndarray # Eigen::Matrix3d
|
|
1936
1505
|
"""
|
|
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})
|
|
1506
|
+
Target orientation.
|
|
1942
1507
|
"""
|
|
1943
1508
|
|
|
1944
1509
|
def __init__(
|
|
@@ -1948,13 +1513,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
|
1948
1513
|
) -> None:
|
|
1949
1514
|
...
|
|
1950
1515
|
|
|
1951
|
-
b:
|
|
1516
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
1952
1517
|
"""
|
|
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})
|
|
1518
|
+
b vector in Ax = b, where x is the accelerations
|
|
1958
1519
|
"""
|
|
1959
1520
|
|
|
1960
1521
|
def configure(
|
|
@@ -1972,76 +1533,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
1972
1533
|
"""
|
|
1973
1534
|
...
|
|
1974
1535
|
|
|
1975
|
-
derror:
|
|
1536
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
1976
1537
|
"""
|
|
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})
|
|
1538
|
+
Current velocity error vector.
|
|
1982
1539
|
"""
|
|
1983
1540
|
|
|
1984
|
-
domega_world:
|
|
1541
|
+
domega_world: numpy.ndarray # Eigen::Vector3d
|
|
1985
1542
|
"""
|
|
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})
|
|
1543
|
+
Target angular acceleration.
|
|
1991
1544
|
"""
|
|
1992
1545
|
|
|
1993
|
-
error:
|
|
1546
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
1994
1547
|
"""
|
|
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})
|
|
1548
|
+
Current error vector.
|
|
2000
1549
|
"""
|
|
2001
1550
|
|
|
2002
|
-
kd:
|
|
1551
|
+
kd: float # double
|
|
2003
1552
|
"""
|
|
2004
|
-
|
|
2005
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2006
|
-
|
|
2007
|
-
C++ signature :
|
|
2008
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1553
|
+
D gain for position control (if negative, will be critically damped)
|
|
2009
1554
|
"""
|
|
2010
1555
|
|
|
2011
|
-
kp:
|
|
1556
|
+
kp: float # double
|
|
2012
1557
|
"""
|
|
2013
|
-
|
|
2014
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2015
|
-
|
|
2016
|
-
C++ signature :
|
|
2017
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1558
|
+
K gain for position control.
|
|
2018
1559
|
"""
|
|
2019
1560
|
|
|
2020
|
-
mask:
|
|
1561
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2021
1562
|
"""
|
|
2022
|
-
|
|
2023
|
-
None( (placo.DynamicsOrientationTask)arg1) -> placo.AxisesMask :
|
|
2024
|
-
|
|
2025
|
-
C++ signature :
|
|
2026
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::OrientationTask {lvalue})
|
|
1563
|
+
Mask.
|
|
2027
1564
|
"""
|
|
2028
1565
|
|
|
2029
|
-
name:
|
|
1566
|
+
name: str # std::string
|
|
2030
1567
|
"""
|
|
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})
|
|
1568
|
+
Object name.
|
|
2036
1569
|
"""
|
|
2037
1570
|
|
|
2038
|
-
omega_world:
|
|
1571
|
+
omega_world: numpy.ndarray # Eigen::Vector3d
|
|
2039
1572
|
"""
|
|
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})
|
|
1573
|
+
Target angular velocity.
|
|
2045
1574
|
"""
|
|
2046
1575
|
|
|
2047
1576
|
priority: str
|
|
@@ -2051,13 +1580,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
|
|
|
2051
1580
|
|
|
2052
1581
|
|
|
2053
1582
|
class DynamicsPositionTask:
|
|
2054
|
-
A:
|
|
1583
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2055
1584
|
"""
|
|
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})
|
|
1585
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2061
1586
|
"""
|
|
2062
1587
|
|
|
2063
1588
|
def __init__(
|
|
@@ -2067,13 +1592,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2067
1592
|
) -> None:
|
|
2068
1593
|
...
|
|
2069
1594
|
|
|
2070
|
-
b:
|
|
1595
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
2071
1596
|
"""
|
|
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})
|
|
1597
|
+
b vector in Ax = b, where x is the accelerations
|
|
2077
1598
|
"""
|
|
2078
1599
|
|
|
2079
1600
|
def configure(
|
|
@@ -2091,85 +1612,49 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2091
1612
|
"""
|
|
2092
1613
|
...
|
|
2093
1614
|
|
|
2094
|
-
ddtarget_world:
|
|
1615
|
+
ddtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
2095
1616
|
"""
|
|
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})
|
|
1617
|
+
Target acceleration in the world.
|
|
2101
1618
|
"""
|
|
2102
1619
|
|
|
2103
|
-
derror:
|
|
1620
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
2104
1621
|
"""
|
|
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})
|
|
1622
|
+
Current velocity error vector.
|
|
2110
1623
|
"""
|
|
2111
1624
|
|
|
2112
|
-
dtarget_world:
|
|
1625
|
+
dtarget_world: numpy.ndarray # Eigen::Vector3d
|
|
2113
1626
|
"""
|
|
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})
|
|
1627
|
+
Target velocity in the world.
|
|
2119
1628
|
"""
|
|
2120
1629
|
|
|
2121
|
-
error:
|
|
1630
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
2122
1631
|
"""
|
|
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})
|
|
1632
|
+
Current error vector.
|
|
2128
1633
|
"""
|
|
2129
1634
|
|
|
2130
|
-
frame_index: any
|
|
1635
|
+
frame_index: any # pinocchio::FrameIndex
|
|
2131
1636
|
"""
|
|
2132
|
-
|
|
2133
|
-
None( (placo.DynamicsPositionTask)arg1) -> int :
|
|
2134
|
-
|
|
2135
|
-
C++ signature :
|
|
2136
|
-
unsigned long {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1637
|
+
Frame.
|
|
2137
1638
|
"""
|
|
2138
1639
|
|
|
2139
|
-
kd:
|
|
1640
|
+
kd: float # double
|
|
2140
1641
|
"""
|
|
2141
|
-
|
|
2142
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2143
|
-
|
|
2144
|
-
C++ signature :
|
|
2145
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1642
|
+
D gain for position control (if negative, will be critically damped)
|
|
2146
1643
|
"""
|
|
2147
1644
|
|
|
2148
|
-
kp:
|
|
1645
|
+
kp: float # double
|
|
2149
1646
|
"""
|
|
2150
|
-
|
|
2151
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2152
|
-
|
|
2153
|
-
C++ signature :
|
|
2154
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1647
|
+
K gain for position control.
|
|
2155
1648
|
"""
|
|
2156
1649
|
|
|
2157
|
-
mask:
|
|
1650
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2158
1651
|
"""
|
|
2159
|
-
|
|
2160
|
-
None( (placo.DynamicsPositionTask)arg1) -> placo.AxisesMask :
|
|
2161
|
-
|
|
2162
|
-
C++ signature :
|
|
2163
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::PositionTask {lvalue})
|
|
1652
|
+
Mask.
|
|
2164
1653
|
"""
|
|
2165
1654
|
|
|
2166
|
-
name:
|
|
1655
|
+
name: str # std::string
|
|
2167
1656
|
"""
|
|
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})
|
|
1657
|
+
Object name.
|
|
2173
1658
|
"""
|
|
2174
1659
|
|
|
2175
1660
|
priority: str
|
|
@@ -2177,25 +1662,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
2177
1662
|
Priority [str]
|
|
2178
1663
|
"""
|
|
2179
1664
|
|
|
2180
|
-
target_world:
|
|
1665
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
2181
1666
|
"""
|
|
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})
|
|
1667
|
+
Target position in the world.
|
|
2187
1668
|
"""
|
|
2188
1669
|
|
|
2189
1670
|
|
|
2190
1671
|
class DynamicsRelativeFrameTask:
|
|
2191
1672
|
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
1673
|
|
|
2200
1674
|
def __init__(
|
|
2201
1675
|
arg1: object,
|
|
@@ -2231,22 +1705,14 @@ None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
|
|
|
2231
1705
|
|
|
2232
1706
|
|
|
2233
1707
|
class DynamicsRelativeOrientationTask:
|
|
2234
|
-
A:
|
|
1708
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2235
1709
|
"""
|
|
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})
|
|
1710
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2241
1711
|
"""
|
|
2242
1712
|
|
|
2243
|
-
R_a_b:
|
|
1713
|
+
R_a_b: numpy.ndarray # Eigen::Matrix3d
|
|
2244
1714
|
"""
|
|
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})
|
|
1715
|
+
Target relative orientation.
|
|
2250
1716
|
"""
|
|
2251
1717
|
|
|
2252
1718
|
def __init__(
|
|
@@ -2257,13 +1723,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
|
2257
1723
|
) -> None:
|
|
2258
1724
|
...
|
|
2259
1725
|
|
|
2260
|
-
b:
|
|
1726
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
2261
1727
|
"""
|
|
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})
|
|
1728
|
+
b vector in Ax = b, where x is the accelerations
|
|
2267
1729
|
"""
|
|
2268
1730
|
|
|
2269
1731
|
def configure(
|
|
@@ -2281,76 +1743,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2281
1743
|
"""
|
|
2282
1744
|
...
|
|
2283
1745
|
|
|
2284
|
-
derror:
|
|
1746
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
2285
1747
|
"""
|
|
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})
|
|
1748
|
+
Current velocity error vector.
|
|
2291
1749
|
"""
|
|
2292
1750
|
|
|
2293
|
-
domega_a_b:
|
|
1751
|
+
domega_a_b: numpy.ndarray # Eigen::Vector3d
|
|
2294
1752
|
"""
|
|
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})
|
|
1753
|
+
Target relative angular velocity.
|
|
2300
1754
|
"""
|
|
2301
1755
|
|
|
2302
|
-
error:
|
|
1756
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
2303
1757
|
"""
|
|
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})
|
|
1758
|
+
Current error vector.
|
|
2309
1759
|
"""
|
|
2310
1760
|
|
|
2311
|
-
kd:
|
|
1761
|
+
kd: float # double
|
|
2312
1762
|
"""
|
|
2313
|
-
|
|
2314
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2315
|
-
|
|
2316
|
-
C++ signature :
|
|
2317
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1763
|
+
D gain for position control (if negative, will be critically damped)
|
|
2318
1764
|
"""
|
|
2319
1765
|
|
|
2320
|
-
kp:
|
|
1766
|
+
kp: float # double
|
|
2321
1767
|
"""
|
|
2322
|
-
|
|
2323
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2324
|
-
|
|
2325
|
-
C++ signature :
|
|
2326
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1768
|
+
K gain for position control.
|
|
2327
1769
|
"""
|
|
2328
1770
|
|
|
2329
|
-
mask:
|
|
1771
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2330
1772
|
"""
|
|
2331
|
-
|
|
2332
|
-
None( (placo.DynamicsRelativeOrientationTask)arg1) -> placo.AxisesMask :
|
|
2333
|
-
|
|
2334
|
-
C++ signature :
|
|
2335
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
|
|
1773
|
+
Mask.
|
|
2336
1774
|
"""
|
|
2337
1775
|
|
|
2338
|
-
name:
|
|
1776
|
+
name: str # std::string
|
|
2339
1777
|
"""
|
|
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})
|
|
1778
|
+
Object name.
|
|
2345
1779
|
"""
|
|
2346
1780
|
|
|
2347
|
-
omega_a_b:
|
|
1781
|
+
omega_a_b: numpy.ndarray # Eigen::Vector3d
|
|
2348
1782
|
"""
|
|
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})
|
|
1783
|
+
Target relative angular velocity.
|
|
2354
1784
|
"""
|
|
2355
1785
|
|
|
2356
1786
|
priority: str
|
|
@@ -2360,13 +1790,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
|
|
|
2360
1790
|
|
|
2361
1791
|
|
|
2362
1792
|
class DynamicsRelativePositionTask:
|
|
2363
|
-
A:
|
|
1793
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2364
1794
|
"""
|
|
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})
|
|
1795
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2370
1796
|
"""
|
|
2371
1797
|
|
|
2372
1798
|
def __init__(
|
|
@@ -2377,13 +1803,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2377
1803
|
) -> None:
|
|
2378
1804
|
...
|
|
2379
1805
|
|
|
2380
|
-
b:
|
|
1806
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
2381
1807
|
"""
|
|
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})
|
|
1808
|
+
b vector in Ax = b, where x is the accelerations
|
|
2387
1809
|
"""
|
|
2388
1810
|
|
|
2389
1811
|
def configure(
|
|
@@ -2401,76 +1823,44 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
2401
1823
|
"""
|
|
2402
1824
|
...
|
|
2403
1825
|
|
|
2404
|
-
ddtarget:
|
|
1826
|
+
ddtarget: numpy.ndarray # Eigen::Vector3d
|
|
2405
1827
|
"""
|
|
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})
|
|
1828
|
+
Target relative acceleration.
|
|
2411
1829
|
"""
|
|
2412
1830
|
|
|
2413
|
-
derror:
|
|
1831
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
2414
1832
|
"""
|
|
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})
|
|
1833
|
+
Current velocity error vector.
|
|
2420
1834
|
"""
|
|
2421
1835
|
|
|
2422
|
-
dtarget:
|
|
1836
|
+
dtarget: numpy.ndarray # Eigen::Vector3d
|
|
2423
1837
|
"""
|
|
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})
|
|
1838
|
+
Target relative velocity.
|
|
2429
1839
|
"""
|
|
2430
1840
|
|
|
2431
|
-
error:
|
|
1841
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
2432
1842
|
"""
|
|
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})
|
|
1843
|
+
Current error vector.
|
|
2438
1844
|
"""
|
|
2439
1845
|
|
|
2440
|
-
kd:
|
|
1846
|
+
kd: float # double
|
|
2441
1847
|
"""
|
|
2442
|
-
|
|
2443
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2444
|
-
|
|
2445
|
-
C++ signature :
|
|
2446
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1848
|
+
D gain for position control (if negative, will be critically damped)
|
|
2447
1849
|
"""
|
|
2448
1850
|
|
|
2449
|
-
kp:
|
|
1851
|
+
kp: float # double
|
|
2450
1852
|
"""
|
|
2451
|
-
|
|
2452
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
2453
|
-
|
|
2454
|
-
C++ signature :
|
|
2455
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
1853
|
+
K gain for position control.
|
|
2456
1854
|
"""
|
|
2457
1855
|
|
|
2458
|
-
mask:
|
|
1856
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
2459
1857
|
"""
|
|
2460
|
-
|
|
2461
|
-
None( (placo.DynamicsRelativePositionTask)arg1) -> placo.AxisesMask :
|
|
2462
|
-
|
|
2463
|
-
C++ signature :
|
|
2464
|
-
placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
|
|
1858
|
+
Mask.
|
|
2465
1859
|
"""
|
|
2466
1860
|
|
|
2467
|
-
name:
|
|
1861
|
+
name: str # std::string
|
|
2468
1862
|
"""
|
|
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})
|
|
1863
|
+
Object name.
|
|
2474
1864
|
"""
|
|
2475
1865
|
|
|
2476
1866
|
priority: str
|
|
@@ -2478,13 +1868,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
2478
1868
|
Priority [str]
|
|
2479
1869
|
"""
|
|
2480
1870
|
|
|
2481
|
-
target:
|
|
1871
|
+
target: numpy.ndarray # Eigen::Vector3d
|
|
2482
1872
|
"""
|
|
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})
|
|
1873
|
+
Target relative position.
|
|
2488
1874
|
"""
|
|
2489
1875
|
|
|
2490
1876
|
|
|
@@ -2741,22 +2127,14 @@ class DynamicsSolver:
|
|
|
2741
2127
|
) -> int:
|
|
2742
2128
|
...
|
|
2743
2129
|
|
|
2744
|
-
damping:
|
|
2130
|
+
damping: float # double
|
|
2745
2131
|
"""
|
|
2746
|
-
|
|
2747
|
-
None( (placo.DynamicsSolver)arg1) -> float :
|
|
2748
|
-
|
|
2749
|
-
C++ signature :
|
|
2750
|
-
double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2132
|
+
Global damping that is added to all the joints.
|
|
2751
2133
|
"""
|
|
2752
2134
|
|
|
2753
|
-
dt:
|
|
2135
|
+
dt: float # double
|
|
2754
2136
|
"""
|
|
2755
|
-
|
|
2756
|
-
None( (placo.DynamicsSolver)arg1) -> float :
|
|
2757
|
-
|
|
2758
|
-
C++ signature :
|
|
2759
|
-
double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2137
|
+
Solver dt (seconds)
|
|
2760
2138
|
"""
|
|
2761
2139
|
|
|
2762
2140
|
def dump_status(
|
|
@@ -2803,13 +2181,9 @@ None( (placo.DynamicsSolver)arg1) -> float :
|
|
|
2803
2181
|
"""
|
|
2804
2182
|
...
|
|
2805
2183
|
|
|
2806
|
-
extra_force:
|
|
2184
|
+
extra_force: numpy.ndarray # Eigen::VectorXd
|
|
2807
2185
|
"""
|
|
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})
|
|
2186
|
+
Extra force to be added to the system (similar to non-linear terms)
|
|
2813
2187
|
"""
|
|
2814
2188
|
|
|
2815
2189
|
def get_contact(
|
|
@@ -2818,13 +2192,9 @@ None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
|
|
|
2818
2192
|
) -> Contact:
|
|
2819
2193
|
...
|
|
2820
2194
|
|
|
2821
|
-
gravity_only:
|
|
2195
|
+
gravity_only: bool # bool
|
|
2822
2196
|
"""
|
|
2823
|
-
|
|
2824
|
-
None( (placo.DynamicsSolver)arg1) -> bool :
|
|
2825
|
-
|
|
2826
|
-
C++ signature :
|
|
2827
|
-
bool {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2197
|
+
Use gravity only (no coriolis, no centrifugal)
|
|
2828
2198
|
"""
|
|
2829
2199
|
|
|
2830
2200
|
def mask_fbase(
|
|
@@ -2836,13 +2206,9 @@ None( (placo.DynamicsSolver)arg1) -> bool :
|
|
|
2836
2206
|
"""
|
|
2837
2207
|
...
|
|
2838
2208
|
|
|
2839
|
-
problem:
|
|
2209
|
+
problem: Problem # placo::problem::Problem
|
|
2840
2210
|
"""
|
|
2841
|
-
|
|
2842
|
-
None( (placo.DynamicsSolver)arg1) -> object :
|
|
2843
|
-
|
|
2844
|
-
C++ signature :
|
|
2845
|
-
placo::problem::Problem {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2211
|
+
Instance of the problem.
|
|
2846
2212
|
"""
|
|
2847
2213
|
|
|
2848
2214
|
def remove_constraint(
|
|
@@ -2876,14 +2242,7 @@ None( (placo.DynamicsSolver)arg1) -> object :
|
|
|
2876
2242
|
"""
|
|
2877
2243
|
...
|
|
2878
2244
|
|
|
2879
|
-
robot:
|
|
2880
|
-
"""
|
|
2881
|
-
|
|
2882
|
-
None( (placo.DynamicsSolver)arg1) -> object :
|
|
2883
|
-
|
|
2884
|
-
C++ signature :
|
|
2885
|
-
placo::model::RobotWrapper None(placo::dynamics::DynamicsSolver)
|
|
2886
|
-
"""
|
|
2245
|
+
robot: RobotWrapper # placo::model::RobotWrapper
|
|
2887
2246
|
|
|
2888
2247
|
def set_kd(
|
|
2889
2248
|
self,
|
|
@@ -2929,13 +2288,9 @@ None( (placo.DynamicsSolver)arg1) -> object :
|
|
|
2929
2288
|
) -> DynamicsSolverResult:
|
|
2930
2289
|
...
|
|
2931
2290
|
|
|
2932
|
-
torque_cost:
|
|
2291
|
+
torque_cost: float # double
|
|
2933
2292
|
"""
|
|
2934
|
-
|
|
2935
|
-
None( (placo.DynamicsSolver)arg1) -> float :
|
|
2936
|
-
|
|
2937
|
-
C++ signature :
|
|
2938
|
-
double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
|
|
2293
|
+
Cost for torque regularization (1e-3 by default)
|
|
2939
2294
|
"""
|
|
2940
2295
|
|
|
2941
2296
|
|
|
@@ -2945,41 +2300,13 @@ class DynamicsSolverResult:
|
|
|
2945
2300
|
) -> None:
|
|
2946
2301
|
...
|
|
2947
2302
|
|
|
2948
|
-
qdd:
|
|
2949
|
-
"""
|
|
2950
|
-
|
|
2951
|
-
None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
2303
|
+
qdd: numpy.ndarray # Eigen::VectorXd
|
|
2952
2304
|
|
|
2953
|
-
|
|
2954
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2955
|
-
"""
|
|
2305
|
+
success: bool # bool
|
|
2956
2306
|
|
|
2957
|
-
|
|
2958
|
-
"""
|
|
2959
|
-
|
|
2960
|
-
None( (placo.DynamicsSolverResult)arg1) -> bool :
|
|
2961
|
-
|
|
2962
|
-
C++ signature :
|
|
2963
|
-
bool {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2964
|
-
"""
|
|
2965
|
-
|
|
2966
|
-
tau: any
|
|
2967
|
-
"""
|
|
2968
|
-
|
|
2969
|
-
None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
2307
|
+
tau: numpy.ndarray # Eigen::VectorXd
|
|
2970
2308
|
|
|
2971
|
-
|
|
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 :
|
|
2979
|
-
|
|
2980
|
-
C++ signature :
|
|
2981
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
|
|
2982
|
-
"""
|
|
2309
|
+
tau_contacts: numpy.ndarray # Eigen::VectorXd
|
|
2983
2310
|
|
|
2984
2311
|
def tau_dict(
|
|
2985
2312
|
arg1: DynamicsSolverResult,
|
|
@@ -2989,26 +2316,18 @@ None( (placo.DynamicsSolverResult)arg1) -> object :
|
|
|
2989
2316
|
|
|
2990
2317
|
|
|
2991
2318
|
class DynamicsTask:
|
|
2992
|
-
A:
|
|
2319
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
2993
2320
|
"""
|
|
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})
|
|
2321
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
2999
2322
|
"""
|
|
3000
2323
|
|
|
3001
2324
|
def __init__(
|
|
3002
2325
|
) -> any:
|
|
3003
2326
|
...
|
|
3004
2327
|
|
|
3005
|
-
b:
|
|
2328
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
3006
2329
|
"""
|
|
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})
|
|
2330
|
+
b vector in Ax = b, where x is the accelerations
|
|
3012
2331
|
"""
|
|
3013
2332
|
|
|
3014
2333
|
def configure(
|
|
@@ -3026,49 +2345,29 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
3026
2345
|
"""
|
|
3027
2346
|
...
|
|
3028
2347
|
|
|
3029
|
-
derror:
|
|
2348
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
3030
2349
|
"""
|
|
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})
|
|
2350
|
+
Current velocity error vector.
|
|
3036
2351
|
"""
|
|
3037
2352
|
|
|
3038
|
-
error:
|
|
2353
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
3039
2354
|
"""
|
|
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})
|
|
2355
|
+
Current error vector.
|
|
3045
2356
|
"""
|
|
3046
2357
|
|
|
3047
|
-
kd:
|
|
2358
|
+
kd: float # double
|
|
3048
2359
|
"""
|
|
3049
|
-
|
|
3050
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3051
|
-
|
|
3052
|
-
C++ signature :
|
|
3053
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2360
|
+
D gain for position control (if negative, will be critically damped)
|
|
3054
2361
|
"""
|
|
3055
2362
|
|
|
3056
|
-
kp:
|
|
2363
|
+
kp: float # double
|
|
3057
2364
|
"""
|
|
3058
|
-
|
|
3059
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3060
|
-
|
|
3061
|
-
C++ signature :
|
|
3062
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2365
|
+
K gain for position control.
|
|
3063
2366
|
"""
|
|
3064
2367
|
|
|
3065
|
-
name:
|
|
2368
|
+
name: str # std::string
|
|
3066
2369
|
"""
|
|
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})
|
|
2370
|
+
Object name.
|
|
3072
2371
|
"""
|
|
3073
2372
|
|
|
3074
2373
|
priority: str
|
|
@@ -3078,13 +2377,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
3078
2377
|
|
|
3079
2378
|
|
|
3080
2379
|
class DynamicsTorqueTask:
|
|
3081
|
-
A:
|
|
2380
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
3082
2381
|
"""
|
|
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})
|
|
2382
|
+
A matrix in Ax = b, where x is the accelerations.
|
|
3088
2383
|
"""
|
|
3089
2384
|
|
|
3090
2385
|
def __init__(
|
|
@@ -3092,13 +2387,9 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
3092
2387
|
) -> None:
|
|
3093
2388
|
...
|
|
3094
2389
|
|
|
3095
|
-
b:
|
|
2390
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
3096
2391
|
"""
|
|
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})
|
|
2392
|
+
b vector in Ax = b, where x is the accelerations
|
|
3102
2393
|
"""
|
|
3103
2394
|
|
|
3104
2395
|
def configure(
|
|
@@ -3116,49 +2407,29 @@ None( (placo.DynamicsTask)arg1) -> object :
|
|
|
3116
2407
|
"""
|
|
3117
2408
|
...
|
|
3118
2409
|
|
|
3119
|
-
derror:
|
|
2410
|
+
derror: numpy.ndarray # Eigen::MatrixXd
|
|
3120
2411
|
"""
|
|
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})
|
|
2412
|
+
Current velocity error vector.
|
|
3126
2413
|
"""
|
|
3127
2414
|
|
|
3128
|
-
error:
|
|
2415
|
+
error: numpy.ndarray # Eigen::MatrixXd
|
|
3129
2416
|
"""
|
|
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})
|
|
2417
|
+
Current error vector.
|
|
3135
2418
|
"""
|
|
3136
2419
|
|
|
3137
|
-
kd:
|
|
2420
|
+
kd: float # double
|
|
3138
2421
|
"""
|
|
3139
|
-
|
|
3140
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3141
|
-
|
|
3142
|
-
C++ signature :
|
|
3143
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2422
|
+
D gain for position control (if negative, will be critically damped)
|
|
3144
2423
|
"""
|
|
3145
2424
|
|
|
3146
|
-
kp:
|
|
2425
|
+
kp: float # double
|
|
3147
2426
|
"""
|
|
3148
|
-
|
|
3149
|
-
None( (placo.DynamicsTask)arg1) -> float :
|
|
3150
|
-
|
|
3151
|
-
C++ signature :
|
|
3152
|
-
double {lvalue} None(placo::dynamics::Task {lvalue})
|
|
2427
|
+
K gain for position control.
|
|
3153
2428
|
"""
|
|
3154
2429
|
|
|
3155
|
-
name:
|
|
2430
|
+
name: str # std::string
|
|
3156
2431
|
"""
|
|
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})
|
|
2432
|
+
Object name.
|
|
3162
2433
|
"""
|
|
3163
2434
|
|
|
3164
2435
|
priority: str
|
|
@@ -3196,13 +2467,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
3196
2467
|
|
|
3197
2468
|
|
|
3198
2469
|
class Expression:
|
|
3199
|
-
A:
|
|
2470
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
3200
2471
|
"""
|
|
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})
|
|
2472
|
+
Expression A matrix, in Ax + b.
|
|
3206
2473
|
"""
|
|
3207
2474
|
|
|
3208
2475
|
def __init__(
|
|
@@ -3210,13 +2477,9 @@ None( (placo.Expression)arg1) -> object :
|
|
|
3210
2477
|
) -> any:
|
|
3211
2478
|
...
|
|
3212
2479
|
|
|
3213
|
-
b:
|
|
2480
|
+
b: numpy.ndarray # Eigen::VectorXd
|
|
3214
2481
|
"""
|
|
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})
|
|
2482
|
+
Expression b vector, in Ax + b.
|
|
3220
2483
|
"""
|
|
3221
2484
|
|
|
3222
2485
|
def cols(
|
|
@@ -3345,76 +2608,38 @@ class ExternalWrenchContact:
|
|
|
3345
2608
|
"""
|
|
3346
2609
|
...
|
|
3347
2610
|
|
|
3348
|
-
active:
|
|
3349
|
-
"""
|
|
3350
|
-
|
|
3351
|
-
None( (placo.Contact)arg1) -> bool :
|
|
3352
|
-
|
|
3353
|
-
C++ signature :
|
|
3354
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
3355
|
-
"""
|
|
3356
|
-
|
|
3357
|
-
frame_index: any
|
|
2611
|
+
active: bool # bool
|
|
3358
2612
|
"""
|
|
3359
|
-
|
|
3360
|
-
None( (placo.ExternalWrenchContact)arg1) -> int :
|
|
3361
|
-
|
|
3362
|
-
C++ signature :
|
|
3363
|
-
unsigned long {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
|
|
2613
|
+
true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
|
|
3364
2614
|
"""
|
|
3365
2615
|
|
|
3366
|
-
|
|
3367
|
-
"""
|
|
3368
|
-
|
|
3369
|
-
None( (placo.Contact)arg1) -> float :
|
|
2616
|
+
frame_index: any # pinocchio::FrameIndex
|
|
3370
2617
|
|
|
3371
|
-
|
|
3372
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2618
|
+
mu: float # double
|
|
3373
2619
|
"""
|
|
3374
|
-
|
|
3375
|
-
w_ext: any
|
|
2620
|
+
Coefficient of friction (if relevant)
|
|
3376
2621
|
"""
|
|
3377
|
-
|
|
3378
|
-
None( (placo.ExternalWrenchContact)arg1) -> object :
|
|
3379
2622
|
|
|
3380
|
-
|
|
3381
|
-
Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
|
|
3382
|
-
"""
|
|
2623
|
+
w_ext: numpy.ndarray # Eigen::VectorXd
|
|
3383
2624
|
|
|
3384
|
-
weight_forces:
|
|
2625
|
+
weight_forces: float # double
|
|
3385
2626
|
"""
|
|
3386
|
-
|
|
3387
|
-
None( (placo.Contact)arg1) -> float :
|
|
3388
|
-
|
|
3389
|
-
C++ signature :
|
|
3390
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2627
|
+
Weight of forces for the optimization (if relevant)
|
|
3391
2628
|
"""
|
|
3392
2629
|
|
|
3393
|
-
weight_moments:
|
|
2630
|
+
weight_moments: float # double
|
|
3394
2631
|
"""
|
|
3395
|
-
|
|
3396
|
-
None( (placo.Contact)arg1) -> float :
|
|
3397
|
-
|
|
3398
|
-
C++ signature :
|
|
3399
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2632
|
+
Weight of moments for optimization (if relevant)
|
|
3400
2633
|
"""
|
|
3401
2634
|
|
|
3402
|
-
weight_tangentials:
|
|
2635
|
+
weight_tangentials: float # double
|
|
3403
2636
|
"""
|
|
3404
|
-
|
|
3405
|
-
None( (placo.Contact)arg1) -> float :
|
|
3406
|
-
|
|
3407
|
-
C++ signature :
|
|
3408
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
2637
|
+
Extra cost for tangential forces.
|
|
3409
2638
|
"""
|
|
3410
2639
|
|
|
3411
|
-
wrench:
|
|
2640
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
3412
2641
|
"""
|
|
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})
|
|
2642
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
3418
2643
|
"""
|
|
3419
2644
|
|
|
3420
2645
|
|
|
@@ -3508,32 +2733,11 @@ class Footstep:
|
|
|
3508
2733
|
) -> any:
|
|
3509
2734
|
...
|
|
3510
2735
|
|
|
3511
|
-
foot_length:
|
|
3512
|
-
"""
|
|
3513
|
-
|
|
3514
|
-
None( (placo.Footstep)arg1) -> float :
|
|
2736
|
+
foot_length: float # double
|
|
3515
2737
|
|
|
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 :
|
|
2738
|
+
foot_width: float # double
|
|
3533
2739
|
|
|
3534
|
-
|
|
3535
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
|
|
3536
|
-
"""
|
|
2740
|
+
frame: numpy.ndarray # Eigen::Affine3d
|
|
3537
2741
|
|
|
3538
2742
|
def overlap(
|
|
3539
2743
|
self,
|
|
@@ -3557,14 +2761,7 @@ None( (placo.Footstep)arg1) -> object :
|
|
|
3557
2761
|
) -> None:
|
|
3558
2762
|
...
|
|
3559
2763
|
|
|
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
|
-
"""
|
|
2764
|
+
side: any # placo::humanoid::HumanoidRobot::Side
|
|
3568
2765
|
|
|
3569
2766
|
def support_polygon(
|
|
3570
2767
|
self,
|
|
@@ -3793,13 +2990,6 @@ class FootstepsPlannerRepetitive:
|
|
|
3793
2990
|
|
|
3794
2991
|
class FrameTask:
|
|
3795
2992
|
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
2993
|
|
|
3804
2994
|
def __init__(
|
|
3805
2995
|
self,
|
|
@@ -3838,13 +3028,9 @@ None( (placo.FrameTask)arg1) -> object :
|
|
|
3838
3028
|
|
|
3839
3029
|
|
|
3840
3030
|
class GearTask:
|
|
3841
|
-
A:
|
|
3031
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
3842
3032
|
"""
|
|
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})
|
|
3033
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
3848
3034
|
"""
|
|
3849
3035
|
|
|
3850
3036
|
def __init__(
|
|
@@ -3870,13 +3056,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
3870
3056
|
"""
|
|
3871
3057
|
...
|
|
3872
3058
|
|
|
3873
|
-
b:
|
|
3059
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
3874
3060
|
"""
|
|
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})
|
|
3061
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
3880
3062
|
"""
|
|
3881
3063
|
|
|
3882
3064
|
def configure(
|
|
@@ -3910,13 +3092,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
3910
3092
|
"""
|
|
3911
3093
|
...
|
|
3912
3094
|
|
|
3913
|
-
name:
|
|
3095
|
+
name: str # std::string
|
|
3914
3096
|
"""
|
|
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})
|
|
3097
|
+
Object name.
|
|
3920
3098
|
"""
|
|
3921
3099
|
|
|
3922
3100
|
priority: str
|
|
@@ -3954,14 +3132,7 @@ class HumanoidParameters:
|
|
|
3954
3132
|
) -> None:
|
|
3955
3133
|
...
|
|
3956
3134
|
|
|
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
|
-
"""
|
|
3135
|
+
dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
3965
3136
|
|
|
3966
3137
|
def double_support_duration(
|
|
3967
3138
|
self,
|
|
@@ -3971,13 +3142,9 @@ None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
|
|
|
3971
3142
|
"""
|
|
3972
3143
|
...
|
|
3973
3144
|
|
|
3974
|
-
double_support_ratio:
|
|
3145
|
+
double_support_ratio: float # double
|
|
3975
3146
|
"""
|
|
3976
|
-
|
|
3977
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
3978
|
-
|
|
3979
|
-
C++ signature :
|
|
3980
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3147
|
+
Duration ratio between single support and double support.
|
|
3981
3148
|
"""
|
|
3982
3149
|
|
|
3983
3150
|
def double_support_timesteps(
|
|
@@ -4005,49 +3172,29 @@ None( (placo.HumanoidParameters)arg1) -> float :
|
|
|
4005
3172
|
"""
|
|
4006
3173
|
...
|
|
4007
3174
|
|
|
4008
|
-
feet_spacing:
|
|
3175
|
+
feet_spacing: float # double
|
|
4009
3176
|
"""
|
|
4010
|
-
|
|
4011
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4012
|
-
|
|
4013
|
-
C++ signature :
|
|
4014
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3177
|
+
Lateral spacing between feet [m].
|
|
4015
3178
|
"""
|
|
4016
3179
|
|
|
4017
|
-
foot_length:
|
|
3180
|
+
foot_length: float # double
|
|
4018
3181
|
"""
|
|
4019
|
-
|
|
4020
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4021
|
-
|
|
4022
|
-
C++ signature :
|
|
4023
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3182
|
+
Foot length [m].
|
|
4024
3183
|
"""
|
|
4025
3184
|
|
|
4026
|
-
foot_width:
|
|
3185
|
+
foot_width: float # double
|
|
4027
3186
|
"""
|
|
4028
|
-
|
|
4029
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4030
|
-
|
|
4031
|
-
C++ signature :
|
|
4032
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3187
|
+
Foot width [m].
|
|
4033
3188
|
"""
|
|
4034
3189
|
|
|
4035
|
-
foot_zmp_target_x:
|
|
3190
|
+
foot_zmp_target_x: float # double
|
|
4036
3191
|
"""
|
|
4037
|
-
|
|
4038
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4039
|
-
|
|
4040
|
-
C++ signature :
|
|
4041
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3192
|
+
Target offset for the ZMP x reference trajectory in the foot frame [m].
|
|
4042
3193
|
"""
|
|
4043
3194
|
|
|
4044
|
-
foot_zmp_target_y:
|
|
3195
|
+
foot_zmp_target_y: float # double
|
|
4045
3196
|
"""
|
|
4046
|
-
|
|
4047
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4048
|
-
|
|
4049
|
-
C++ signature :
|
|
4050
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3197
|
+
Target offset for the ZMP x reference trajectory in the foot frame, positive is "outward" [m].
|
|
4051
3198
|
"""
|
|
4052
3199
|
|
|
4053
3200
|
def has_double_support(
|
|
@@ -4058,40 +3205,21 @@ None( (placo.HumanoidParameters)arg1) -> float :
|
|
|
4058
3205
|
"""
|
|
4059
3206
|
...
|
|
4060
3207
|
|
|
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
|
-
"""
|
|
3208
|
+
op_space_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
|
|
4069
3209
|
|
|
4070
|
-
planned_timesteps:
|
|
3210
|
+
planned_timesteps: int # int
|
|
4071
3211
|
"""
|
|
4072
|
-
|
|
4073
|
-
None( (placo.HumanoidParameters)arg1) -> int :
|
|
4074
|
-
|
|
4075
|
-
C++ signature :
|
|
4076
|
-
int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3212
|
+
Planning horizon for the CoM trajectory.
|
|
4077
3213
|
"""
|
|
4078
3214
|
|
|
4079
|
-
single_support_duration:
|
|
3215
|
+
single_support_duration: float # double
|
|
4080
3216
|
"""
|
|
4081
|
-
|
|
4082
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4083
|
-
|
|
4084
|
-
C++ signature :
|
|
4085
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3217
|
+
Single support duration [s].
|
|
4086
3218
|
"""
|
|
4087
3219
|
|
|
4088
|
-
single_support_timesteps:
|
|
3220
|
+
single_support_timesteps: int # int
|
|
4089
3221
|
"""
|
|
4090
|
-
|
|
4091
|
-
None( (placo.HumanoidParameters)arg1) -> int :
|
|
4092
|
-
|
|
4093
|
-
C++ signature :
|
|
4094
|
-
int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3222
|
+
Number of timesteps for one single support.
|
|
4095
3223
|
"""
|
|
4096
3224
|
|
|
4097
3225
|
def startend_double_support_duration(
|
|
@@ -4102,13 +3230,9 @@ None( (placo.HumanoidParameters)arg1) -> int :
|
|
|
4102
3230
|
"""
|
|
4103
3231
|
...
|
|
4104
3232
|
|
|
4105
|
-
startend_double_support_ratio:
|
|
3233
|
+
startend_double_support_ratio: float # double
|
|
4106
3234
|
"""
|
|
4107
|
-
|
|
4108
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4109
|
-
|
|
4110
|
-
C++ signature :
|
|
4111
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3235
|
+
Duration ratio between single support and start/end double support.
|
|
4112
3236
|
"""
|
|
4113
3237
|
|
|
4114
3238
|
def startend_double_support_timesteps(
|
|
@@ -4119,103 +3243,59 @@ None( (placo.HumanoidParameters)arg1) -> float :
|
|
|
4119
3243
|
"""
|
|
4120
3244
|
...
|
|
4121
3245
|
|
|
4122
|
-
walk_com_height:
|
|
3246
|
+
walk_com_height: float # double
|
|
4123
3247
|
"""
|
|
4124
|
-
|
|
4125
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4126
|
-
|
|
4127
|
-
C++ signature :
|
|
4128
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3248
|
+
Target CoM height while walking [m].
|
|
4129
3249
|
"""
|
|
4130
3250
|
|
|
4131
|
-
walk_dtheta_spacing:
|
|
3251
|
+
walk_dtheta_spacing: float # double
|
|
4132
3252
|
"""
|
|
4133
|
-
|
|
4134
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4135
|
-
|
|
4136
|
-
C++ signature :
|
|
4137
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3253
|
+
How much we need to space the feet per dtheta [m/rad].
|
|
4138
3254
|
"""
|
|
4139
3255
|
|
|
4140
|
-
walk_foot_height:
|
|
3256
|
+
walk_foot_height: float # double
|
|
4141
3257
|
"""
|
|
4142
|
-
|
|
4143
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4144
|
-
|
|
4145
|
-
C++ signature :
|
|
4146
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3258
|
+
How height the feet are rising while walking [m].
|
|
4147
3259
|
"""
|
|
4148
3260
|
|
|
4149
|
-
walk_foot_rise_ratio:
|
|
3261
|
+
walk_foot_rise_ratio: float # double
|
|
4150
3262
|
"""
|
|
4151
|
-
|
|
4152
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4153
|
-
|
|
4154
|
-
C++ signature :
|
|
4155
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3263
|
+
ratio of time spent at foot height during the step
|
|
4156
3264
|
"""
|
|
4157
3265
|
|
|
4158
|
-
walk_max_dtheta:
|
|
3266
|
+
walk_max_dtheta: float # double
|
|
4159
3267
|
"""
|
|
4160
|
-
|
|
4161
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4162
|
-
|
|
4163
|
-
C++ signature :
|
|
4164
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3268
|
+
Maximum step (yaw)
|
|
4165
3269
|
"""
|
|
4166
3270
|
|
|
4167
|
-
walk_max_dx_backward:
|
|
3271
|
+
walk_max_dx_backward: float # double
|
|
4168
3272
|
"""
|
|
4169
|
-
|
|
4170
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4171
|
-
|
|
4172
|
-
C++ signature :
|
|
4173
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3273
|
+
Maximum step (backward)
|
|
4174
3274
|
"""
|
|
4175
3275
|
|
|
4176
|
-
walk_max_dx_forward:
|
|
3276
|
+
walk_max_dx_forward: float # double
|
|
4177
3277
|
"""
|
|
4178
|
-
|
|
4179
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4180
|
-
|
|
4181
|
-
C++ signature :
|
|
4182
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3278
|
+
Maximum step (forward)
|
|
4183
3279
|
"""
|
|
4184
3280
|
|
|
4185
|
-
walk_max_dy:
|
|
3281
|
+
walk_max_dy: float # double
|
|
4186
3282
|
"""
|
|
4187
|
-
|
|
4188
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4189
|
-
|
|
4190
|
-
C++ signature :
|
|
4191
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3283
|
+
Maximum step (lateral)
|
|
4192
3284
|
"""
|
|
4193
3285
|
|
|
4194
|
-
walk_trunk_pitch:
|
|
3286
|
+
walk_trunk_pitch: float # double
|
|
4195
3287
|
"""
|
|
4196
|
-
|
|
4197
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4198
|
-
|
|
4199
|
-
C++ signature :
|
|
4200
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3288
|
+
Trunk pitch while walking [rad].
|
|
4201
3289
|
"""
|
|
4202
3290
|
|
|
4203
|
-
zmp_margin:
|
|
3291
|
+
zmp_margin: float # double
|
|
4204
3292
|
"""
|
|
4205
|
-
|
|
4206
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4207
|
-
|
|
4208
|
-
C++ signature :
|
|
4209
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3293
|
+
Margin for the ZMP to live in the support polygon [m].
|
|
4210
3294
|
"""
|
|
4211
3295
|
|
|
4212
|
-
zmp_reference_weight:
|
|
3296
|
+
zmp_reference_weight: float # double
|
|
4213
3297
|
"""
|
|
4214
|
-
|
|
4215
|
-
None( (placo.HumanoidParameters)arg1) -> float :
|
|
4216
|
-
|
|
4217
|
-
C++ signature :
|
|
4218
|
-
double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
|
|
3298
|
+
Weight for ZMP reference in the solver.
|
|
4219
3299
|
"""
|
|
4220
3300
|
|
|
4221
3301
|
|
|
@@ -4245,13 +3325,9 @@ class HumanoidRobot:
|
|
|
4245
3325
|
"""
|
|
4246
3326
|
...
|
|
4247
3327
|
|
|
4248
|
-
collision_model: any
|
|
3328
|
+
collision_model: any # pinocchio::GeometryModel
|
|
4249
3329
|
"""
|
|
4250
|
-
|
|
4251
|
-
None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
4252
|
-
|
|
4253
|
-
C++ signature :
|
|
4254
|
-
pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3330
|
+
Pinocchio collision model.
|
|
4255
3331
|
"""
|
|
4256
3332
|
|
|
4257
3333
|
def com_jacobian(
|
|
@@ -4305,7 +3381,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4305
3381
|
"""
|
|
4306
3382
|
Computes all minimum distances between current collision pairs.
|
|
4307
3383
|
|
|
4308
|
-
:return: <Element 'para' at
|
|
3384
|
+
:return: <Element 'para' at 0xffadcdef7f60>
|
|
4309
3385
|
"""
|
|
4310
3386
|
...
|
|
4311
3387
|
|
|
@@ -4337,7 +3413,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4337
3413
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
4338
3414
|
|
|
4339
3415
|
:param any frame: the frame for which we want the jacobian
|
|
4340
|
-
:return: <Element 'para' at
|
|
3416
|
+
:return: <Element 'para' at 0xffadcdef74c0>
|
|
4341
3417
|
"""
|
|
4342
3418
|
...
|
|
4343
3419
|
|
|
@@ -4350,7 +3426,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4350
3426
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
4351
3427
|
|
|
4352
3428
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4353
|
-
:return: <Element 'para' at
|
|
3429
|
+
:return: <Element 'para' at 0xffadcdef5b70>
|
|
4354
3430
|
"""
|
|
4355
3431
|
...
|
|
4356
3432
|
|
|
@@ -4595,13 +3671,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4595
3671
|
"""
|
|
4596
3672
|
...
|
|
4597
3673
|
|
|
4598
|
-
model: any
|
|
3674
|
+
model: any # pinocchio::Model
|
|
4599
3675
|
"""
|
|
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})
|
|
3676
|
+
Pinocchio model.
|
|
4605
3677
|
"""
|
|
4606
3678
|
|
|
4607
3679
|
def neutral_state(
|
|
@@ -4656,7 +3728,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4656
3728
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
4657
3729
|
|
|
4658
3730
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4659
|
-
:return: <Element 'para' at
|
|
3731
|
+
:return: <Element 'para' at 0xffadcdf57a10>
|
|
4660
3732
|
"""
|
|
4661
3733
|
...
|
|
4662
3734
|
|
|
@@ -4810,13 +3882,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4810
3882
|
"""
|
|
4811
3883
|
...
|
|
4812
3884
|
|
|
4813
|
-
state:
|
|
3885
|
+
state: RobotWrapper_State # placo::model::RobotWrapper::State
|
|
4814
3886
|
"""
|
|
4815
|
-
|
|
4816
|
-
None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
|
|
4817
|
-
|
|
4818
|
-
C++ signature :
|
|
4819
|
-
placo::model::RobotWrapper::State {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3887
|
+
Robot's current state.
|
|
4820
3888
|
"""
|
|
4821
3889
|
|
|
4822
3890
|
def static_gravity_compensation_torques(
|
|
@@ -4834,22 +3902,14 @@ None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
|
|
|
4834
3902
|
) -> dict:
|
|
4835
3903
|
...
|
|
4836
3904
|
|
|
4837
|
-
support_is_both:
|
|
3905
|
+
support_is_both: bool # bool
|
|
4838
3906
|
"""
|
|
4839
|
-
|
|
4840
|
-
None( (placo.HumanoidRobot)arg1) -> bool :
|
|
4841
|
-
|
|
4842
|
-
C++ signature :
|
|
4843
|
-
bool {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3907
|
+
Are both feet supporting the robot.
|
|
4844
3908
|
"""
|
|
4845
3909
|
|
|
4846
|
-
support_side: any
|
|
3910
|
+
support_side: any # placo::humanoid::HumanoidRobot::Side
|
|
4847
3911
|
"""
|
|
4848
|
-
|
|
4849
|
-
None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
4850
|
-
|
|
4851
|
-
C++ signature :
|
|
4852
|
-
placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3912
|
+
The current side (left or right) associated with T_world_support.
|
|
4853
3913
|
"""
|
|
4854
3914
|
|
|
4855
3915
|
def torques_from_acceleration_with_fixed_frame(
|
|
@@ -4910,13 +3970,9 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
|
|
|
4910
3970
|
"""
|
|
4911
3971
|
...
|
|
4912
3972
|
|
|
4913
|
-
visual_model: any
|
|
3973
|
+
visual_model: any # pinocchio::GeometryModel
|
|
4914
3974
|
"""
|
|
4915
|
-
|
|
4916
|
-
None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
4917
|
-
|
|
4918
|
-
C++ signature :
|
|
4919
|
-
pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
|
|
3975
|
+
Pinocchio visual model.
|
|
4920
3976
|
"""
|
|
4921
3977
|
|
|
4922
3978
|
def zmp(
|
|
@@ -5019,31 +4075,19 @@ class Integrator:
|
|
|
5019
4075
|
"""
|
|
5020
4076
|
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
4077
|
"""
|
|
5022
|
-
A:
|
|
4078
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5023
4079
|
"""
|
|
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})
|
|
4080
|
+
The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
|
|
5029
4081
|
"""
|
|
5030
4082
|
|
|
5031
|
-
B:
|
|
4083
|
+
B: numpy.ndarray # Eigen::MatrixXd
|
|
5032
4084
|
"""
|
|
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})
|
|
4085
|
+
The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
|
|
5038
4086
|
"""
|
|
5039
4087
|
|
|
5040
|
-
M:
|
|
4088
|
+
M: numpy.ndarray # Eigen::MatrixXd
|
|
5041
4089
|
"""
|
|
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})
|
|
4090
|
+
The continuous system matrix.
|
|
5047
4091
|
"""
|
|
5048
4092
|
|
|
5049
4093
|
def __init__(
|
|
@@ -5077,13 +4121,9 @@ None( (placo.Integrator)arg1) -> object :
|
|
|
5077
4121
|
"""
|
|
5078
4122
|
...
|
|
5079
4123
|
|
|
5080
|
-
final_transition_matrix:
|
|
4124
|
+
final_transition_matrix: numpy.ndarray # Eigen::MatrixXd
|
|
5081
4125
|
"""
|
|
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})
|
|
4126
|
+
Caching the discrete matrix for the last step.
|
|
5087
4127
|
"""
|
|
5088
4128
|
|
|
5089
4129
|
def get_trajectory(
|
|
@@ -5094,13 +4134,9 @@ None( (placo.Integrator)arg1) -> object :
|
|
|
5094
4134
|
"""
|
|
5095
4135
|
...
|
|
5096
4136
|
|
|
5097
|
-
t_start:
|
|
4137
|
+
t_start: float # double
|
|
5098
4138
|
"""
|
|
5099
|
-
|
|
5100
|
-
None( (placo.Integrator)arg1) -> float :
|
|
5101
|
-
|
|
5102
|
-
C++ signature :
|
|
5103
|
-
double {lvalue} None(placo::problem::Integrator {lvalue})
|
|
4139
|
+
Time offset for the trajectory.
|
|
5104
4140
|
"""
|
|
5105
4141
|
|
|
5106
4142
|
@staticmethod
|
|
@@ -5153,13 +4189,9 @@ class IntegratorTrajectory:
|
|
|
5153
4189
|
|
|
5154
4190
|
|
|
5155
4191
|
class JointSpaceHalfSpacesConstraint:
|
|
5156
|
-
A:
|
|
4192
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5157
4193
|
"""
|
|
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})
|
|
4194
|
+
Matrix A in Aq <= b.
|
|
5163
4195
|
"""
|
|
5164
4196
|
|
|
5165
4197
|
def __init__(
|
|
@@ -5172,13 +4204,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
|
|
|
5172
4204
|
"""
|
|
5173
4205
|
...
|
|
5174
4206
|
|
|
5175
|
-
b:
|
|
4207
|
+
b: numpy.ndarray # Eigen::VectorXd
|
|
5176
4208
|
"""
|
|
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})
|
|
4209
|
+
Vector b in Aq <= b.
|
|
5182
4210
|
"""
|
|
5183
4211
|
|
|
5184
4212
|
def configure(
|
|
@@ -5196,13 +4224,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
|
|
|
5196
4224
|
"""
|
|
5197
4225
|
...
|
|
5198
4226
|
|
|
5199
|
-
name:
|
|
4227
|
+
name: str # std::string
|
|
5200
4228
|
"""
|
|
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})
|
|
4229
|
+
Object name.
|
|
5206
4230
|
"""
|
|
5207
4231
|
|
|
5208
4232
|
priority: str
|
|
@@ -5212,13 +4236,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
5212
4236
|
|
|
5213
4237
|
|
|
5214
4238
|
class JointsTask:
|
|
5215
|
-
A:
|
|
4239
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5216
4240
|
"""
|
|
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})
|
|
4241
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
5222
4242
|
"""
|
|
5223
4243
|
|
|
5224
4244
|
def __init__(
|
|
@@ -5229,13 +4249,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5229
4249
|
"""
|
|
5230
4250
|
...
|
|
5231
4251
|
|
|
5232
|
-
b:
|
|
4252
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
5233
4253
|
"""
|
|
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})
|
|
4254
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
5239
4255
|
"""
|
|
5240
4256
|
|
|
5241
4257
|
def configure(
|
|
@@ -5280,13 +4296,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5280
4296
|
"""
|
|
5281
4297
|
...
|
|
5282
4298
|
|
|
5283
|
-
name:
|
|
4299
|
+
name: str # std::string
|
|
5284
4300
|
"""
|
|
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})
|
|
4301
|
+
Object name.
|
|
5290
4302
|
"""
|
|
5291
4303
|
|
|
5292
4304
|
priority: str
|
|
@@ -5342,13 +4354,9 @@ class KinematicsConstraint:
|
|
|
5342
4354
|
"""
|
|
5343
4355
|
...
|
|
5344
4356
|
|
|
5345
|
-
name:
|
|
4357
|
+
name: str # std::string
|
|
5346
4358
|
"""
|
|
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})
|
|
4359
|
+
Object name.
|
|
5352
4360
|
"""
|
|
5353
4361
|
|
|
5354
4362
|
priority: str
|
|
@@ -5358,13 +4366,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
5358
4366
|
|
|
5359
4367
|
|
|
5360
4368
|
class KinematicsSolver:
|
|
5361
|
-
N:
|
|
4369
|
+
N: int # int
|
|
5362
4370
|
"""
|
|
5363
|
-
|
|
5364
|
-
None( (placo.KinematicsSolver)arg1) -> int :
|
|
5365
|
-
|
|
5366
|
-
C++ signature :
|
|
5367
|
-
int {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4371
|
+
Size of the problem (number of variables)
|
|
5368
4372
|
"""
|
|
5369
4373
|
|
|
5370
4374
|
def __init__(
|
|
@@ -5678,13 +4682,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5678
4682
|
"""
|
|
5679
4683
|
...
|
|
5680
4684
|
|
|
5681
|
-
dt:
|
|
4685
|
+
dt: float # double
|
|
5682
4686
|
"""
|
|
5683
|
-
|
|
5684
|
-
None( (placo.KinematicsSolver)arg1) -> float :
|
|
5685
|
-
|
|
5686
|
-
C++ signature :
|
|
5687
|
-
double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4687
|
+
solver dt (for speeds limiting)
|
|
5688
4688
|
"""
|
|
5689
4689
|
|
|
5690
4690
|
def dump_status(
|
|
@@ -5733,13 +4733,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
|
|
|
5733
4733
|
"""
|
|
5734
4734
|
...
|
|
5735
4735
|
|
|
5736
|
-
problem:
|
|
4736
|
+
problem: Problem # placo::problem::Problem
|
|
5737
4737
|
"""
|
|
5738
|
-
|
|
5739
|
-
None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
5740
|
-
|
|
5741
|
-
C++ signature :
|
|
5742
|
-
placo::problem::Problem {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4738
|
+
The underlying QP problem.
|
|
5743
4739
|
"""
|
|
5744
4740
|
|
|
5745
4741
|
def remove_constraint(
|
|
@@ -5764,22 +4760,14 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
|
|
|
5764
4760
|
"""
|
|
5765
4761
|
...
|
|
5766
4762
|
|
|
5767
|
-
robot:
|
|
4763
|
+
robot: RobotWrapper # placo::model::RobotWrapper
|
|
5768
4764
|
"""
|
|
5769
|
-
|
|
5770
|
-
None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
|
|
5771
|
-
|
|
5772
|
-
C++ signature :
|
|
5773
|
-
placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
|
|
4765
|
+
The robot controlled by this solver.
|
|
5774
4766
|
"""
|
|
5775
4767
|
|
|
5776
|
-
scale:
|
|
4768
|
+
scale: float # double
|
|
5777
4769
|
"""
|
|
5778
|
-
|
|
5779
|
-
None( (placo.KinematicsSolver)arg1) -> float :
|
|
5780
|
-
|
|
5781
|
-
C++ signature :
|
|
5782
|
-
double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
|
|
4770
|
+
scale obtained when using tasks scaling
|
|
5783
4771
|
"""
|
|
5784
4772
|
|
|
5785
4773
|
def solve(
|
|
@@ -5814,13 +4802,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
|
|
|
5814
4802
|
|
|
5815
4803
|
|
|
5816
4804
|
class KineticEnergyRegularizationTask:
|
|
5817
|
-
A:
|
|
4805
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
5818
4806
|
"""
|
|
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})
|
|
4807
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
5824
4808
|
"""
|
|
5825
4809
|
|
|
5826
4810
|
def __init__(
|
|
@@ -5828,13 +4812,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5828
4812
|
) -> None:
|
|
5829
4813
|
...
|
|
5830
4814
|
|
|
5831
|
-
b:
|
|
4815
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
5832
4816
|
"""
|
|
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})
|
|
4817
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
5838
4818
|
"""
|
|
5839
4819
|
|
|
5840
4820
|
def configure(
|
|
@@ -5868,13 +4848,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
5868
4848
|
"""
|
|
5869
4849
|
...
|
|
5870
4850
|
|
|
5871
|
-
name:
|
|
4851
|
+
name: str # std::string
|
|
5872
4852
|
"""
|
|
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})
|
|
4853
|
+
Object name.
|
|
5878
4854
|
"""
|
|
5879
4855
|
|
|
5880
4856
|
priority: str
|
|
@@ -5934,14 +4910,7 @@ class LIPM:
|
|
|
5934
4910
|
) -> Expression:
|
|
5935
4911
|
...
|
|
5936
4912
|
|
|
5937
|
-
dt:
|
|
5938
|
-
"""
|
|
5939
|
-
|
|
5940
|
-
None( (placo.LIPM)arg1) -> float :
|
|
5941
|
-
|
|
5942
|
-
C++ signature :
|
|
5943
|
-
double {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
5944
|
-
"""
|
|
4913
|
+
dt: float # double
|
|
5945
4914
|
|
|
5946
4915
|
def dzmp(
|
|
5947
4916
|
self,
|
|
@@ -5971,31 +4940,10 @@ None( (placo.LIPM)arg1) -> float :
|
|
|
5971
4940
|
...
|
|
5972
4941
|
|
|
5973
4942
|
t_end: any
|
|
5974
|
-
"""
|
|
5975
|
-
|
|
5976
|
-
None( (placo.LIPM)arg1) -> float :
|
|
5977
4943
|
|
|
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 :
|
|
4944
|
+
t_start: float # double
|
|
5995
4945
|
|
|
5996
|
-
|
|
5997
|
-
int {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
5998
|
-
"""
|
|
4946
|
+
timesteps: int # int
|
|
5999
4947
|
|
|
6000
4948
|
def vel(
|
|
6001
4949
|
self,
|
|
@@ -6003,41 +4951,13 @@ None( (placo.LIPM)arg1) -> int :
|
|
|
6003
4951
|
) -> Expression:
|
|
6004
4952
|
...
|
|
6005
4953
|
|
|
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 :
|
|
4954
|
+
x: Integrator # placo::problem::Integrator
|
|
6028
4955
|
|
|
6029
|
-
|
|
6030
|
-
placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
6031
|
-
"""
|
|
4956
|
+
x_var: Variable # placo::problem::Variable
|
|
6032
4957
|
|
|
6033
|
-
|
|
6034
|
-
"""
|
|
6035
|
-
|
|
6036
|
-
None( (placo.LIPM)arg1) -> object :
|
|
4958
|
+
y: Integrator # placo::problem::Integrator
|
|
6037
4959
|
|
|
6038
|
-
|
|
6039
|
-
placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
|
|
6040
|
-
"""
|
|
4960
|
+
y_var: Variable # placo::problem::Variable
|
|
6041
4961
|
|
|
6042
4962
|
def zmp(
|
|
6043
4963
|
self,
|
|
@@ -6100,13 +5020,9 @@ class LIPMTrajectory:
|
|
|
6100
5020
|
|
|
6101
5021
|
|
|
6102
5022
|
class LineContact:
|
|
6103
|
-
R_world_surface:
|
|
5023
|
+
R_world_surface: numpy.ndarray # Eigen::Matrix3d
|
|
6104
5024
|
"""
|
|
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})
|
|
5025
|
+
rotation matrix expressing the surface frame in the world frame (for unilateral contact)
|
|
6110
5026
|
"""
|
|
6111
5027
|
|
|
6112
5028
|
def __init__(
|
|
@@ -6119,31 +5035,19 @@ None( (placo.PointContact)arg1) -> numpy.ndarray :
|
|
|
6119
5035
|
"""
|
|
6120
5036
|
...
|
|
6121
5037
|
|
|
6122
|
-
active:
|
|
5038
|
+
active: bool # bool
|
|
6123
5039
|
"""
|
|
6124
|
-
|
|
6125
|
-
None( (placo.Contact)arg1) -> bool :
|
|
6126
|
-
|
|
6127
|
-
C++ signature :
|
|
6128
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5040
|
+
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
5041
|
"""
|
|
6130
5042
|
|
|
6131
|
-
length:
|
|
5043
|
+
length: float # double
|
|
6132
5044
|
"""
|
|
6133
|
-
|
|
6134
|
-
None( (placo.LineContact)arg1) -> float :
|
|
6135
|
-
|
|
6136
|
-
C++ signature :
|
|
6137
|
-
double {lvalue} None(placo::dynamics::LineContact {lvalue})
|
|
5045
|
+
Rectangular contact length along local x-axis.
|
|
6138
5046
|
"""
|
|
6139
5047
|
|
|
6140
|
-
mu:
|
|
5048
|
+
mu: float # double
|
|
6141
5049
|
"""
|
|
6142
|
-
|
|
6143
|
-
None( (placo.Contact)arg1) -> float :
|
|
6144
|
-
|
|
6145
|
-
C++ signature :
|
|
6146
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5050
|
+
Coefficient of friction (if relevant)
|
|
6147
5051
|
"""
|
|
6148
5052
|
|
|
6149
5053
|
def orientation_task(
|
|
@@ -6156,49 +5060,29 @@ None( (placo.Contact)arg1) -> float :
|
|
|
6156
5060
|
) -> DynamicsPositionTask:
|
|
6157
5061
|
...
|
|
6158
5062
|
|
|
6159
|
-
unilateral:
|
|
5063
|
+
unilateral: bool # bool
|
|
6160
5064
|
"""
|
|
6161
|
-
|
|
6162
|
-
None( (placo.LineContact)arg1) -> bool :
|
|
6163
|
-
|
|
6164
|
-
C++ signature :
|
|
6165
|
-
bool {lvalue} None(placo::dynamics::LineContact {lvalue})
|
|
5065
|
+
true for unilateral contact with the ground
|
|
6166
5066
|
"""
|
|
6167
5067
|
|
|
6168
|
-
weight_forces:
|
|
5068
|
+
weight_forces: float # double
|
|
6169
5069
|
"""
|
|
6170
|
-
|
|
6171
|
-
None( (placo.Contact)arg1) -> float :
|
|
6172
|
-
|
|
6173
|
-
C++ signature :
|
|
6174
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5070
|
+
Weight of forces for the optimization (if relevant)
|
|
6175
5071
|
"""
|
|
6176
5072
|
|
|
6177
|
-
weight_moments:
|
|
5073
|
+
weight_moments: float # double
|
|
6178
5074
|
"""
|
|
6179
|
-
|
|
6180
|
-
None( (placo.Contact)arg1) -> float :
|
|
6181
|
-
|
|
6182
|
-
C++ signature :
|
|
6183
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5075
|
+
Weight of moments for optimization (if relevant)
|
|
6184
5076
|
"""
|
|
6185
5077
|
|
|
6186
|
-
weight_tangentials:
|
|
5078
|
+
weight_tangentials: float # double
|
|
6187
5079
|
"""
|
|
6188
|
-
|
|
6189
|
-
None( (placo.Contact)arg1) -> float :
|
|
6190
|
-
|
|
6191
|
-
C++ signature :
|
|
6192
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5080
|
+
Extra cost for tangential forces.
|
|
6193
5081
|
"""
|
|
6194
5082
|
|
|
6195
|
-
wrench:
|
|
5083
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
6196
5084
|
"""
|
|
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})
|
|
5085
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
6202
5086
|
"""
|
|
6203
5087
|
|
|
6204
5088
|
def zmp(
|
|
@@ -6211,13 +5095,9 @@ None( (placo.Contact)arg1) -> object :
|
|
|
6211
5095
|
|
|
6212
5096
|
|
|
6213
5097
|
class ManipulabilityTask:
|
|
6214
|
-
A:
|
|
5098
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
6215
5099
|
"""
|
|
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})
|
|
5100
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
6221
5101
|
"""
|
|
6222
5102
|
|
|
6223
5103
|
def __init__(
|
|
@@ -6228,13 +5108,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
6228
5108
|
) -> any:
|
|
6229
5109
|
...
|
|
6230
5110
|
|
|
6231
|
-
b:
|
|
5111
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
6232
5112
|
"""
|
|
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})
|
|
5113
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
6238
5114
|
"""
|
|
6239
5115
|
|
|
6240
5116
|
def configure(
|
|
@@ -6269,39 +5145,20 @@ None( (placo.Task)arg1) -> object :
|
|
|
6269
5145
|
...
|
|
6270
5146
|
|
|
6271
5147
|
lambda_: any
|
|
6272
|
-
"""
|
|
6273
|
-
|
|
6274
|
-
None( (placo.ManipulabilityTask)arg1) -> float :
|
|
6275
|
-
|
|
6276
|
-
C++ signature :
|
|
6277
|
-
double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
|
|
6278
|
-
"""
|
|
6279
5148
|
|
|
6280
|
-
manipulability:
|
|
5149
|
+
manipulability: float # double
|
|
6281
5150
|
"""
|
|
6282
|
-
|
|
6283
|
-
None( (placo.ManipulabilityTask)arg1) -> float :
|
|
6284
|
-
|
|
6285
|
-
C++ signature :
|
|
6286
|
-
double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
|
|
5151
|
+
The last computed manipulability value.
|
|
6287
5152
|
"""
|
|
6288
5153
|
|
|
6289
|
-
minimize:
|
|
5154
|
+
minimize: bool # bool
|
|
6290
5155
|
"""
|
|
6291
|
-
|
|
6292
|
-
None( (placo.ManipulabilityTask)arg1) -> bool :
|
|
6293
|
-
|
|
6294
|
-
C++ signature :
|
|
6295
|
-
bool {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
|
|
5156
|
+
Should the manipulability be minimized (can be useful to find singularities)
|
|
6296
5157
|
"""
|
|
6297
5158
|
|
|
6298
|
-
name:
|
|
5159
|
+
name: str # std::string
|
|
6299
5160
|
"""
|
|
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})
|
|
5161
|
+
Object name.
|
|
6305
5162
|
"""
|
|
6306
5163
|
|
|
6307
5164
|
priority: str
|
|
@@ -6319,22 +5176,14 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
6319
5176
|
|
|
6320
5177
|
|
|
6321
5178
|
class OrientationTask:
|
|
6322
|
-
A:
|
|
5179
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
6323
5180
|
"""
|
|
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})
|
|
5181
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
6329
5182
|
"""
|
|
6330
5183
|
|
|
6331
|
-
R_world_frame:
|
|
5184
|
+
R_world_frame: numpy.ndarray # Eigen::Matrix3d
|
|
6332
5185
|
"""
|
|
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})
|
|
5186
|
+
Target frame orientation in the world.
|
|
6338
5187
|
"""
|
|
6339
5188
|
|
|
6340
5189
|
def __init__(
|
|
@@ -6347,13 +5196,9 @@ None( (placo.OrientationTask)arg1) -> object :
|
|
|
6347
5196
|
"""
|
|
6348
5197
|
...
|
|
6349
5198
|
|
|
6350
|
-
b:
|
|
5199
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
6351
5200
|
"""
|
|
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})
|
|
5201
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
6357
5202
|
"""
|
|
6358
5203
|
|
|
6359
5204
|
def configure(
|
|
@@ -6387,31 +5232,19 @@ None( (placo.Task)arg1) -> object :
|
|
|
6387
5232
|
"""
|
|
6388
5233
|
...
|
|
6389
5234
|
|
|
6390
|
-
frame_index: any
|
|
5235
|
+
frame_index: any # pinocchio::FrameIndex
|
|
6391
5236
|
"""
|
|
6392
|
-
|
|
6393
|
-
None( (placo.OrientationTask)arg1) -> int :
|
|
6394
|
-
|
|
6395
|
-
C++ signature :
|
|
6396
|
-
unsigned long {lvalue} None(placo::kinematics::OrientationTask {lvalue})
|
|
5237
|
+
Frame.
|
|
6397
5238
|
"""
|
|
6398
5239
|
|
|
6399
|
-
mask:
|
|
5240
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
6400
5241
|
"""
|
|
6401
|
-
|
|
6402
|
-
None( (placo.OrientationTask)arg1) -> placo.AxisesMask :
|
|
6403
|
-
|
|
6404
|
-
C++ signature :
|
|
6405
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::OrientationTask {lvalue})
|
|
5242
|
+
Mask.
|
|
6406
5243
|
"""
|
|
6407
5244
|
|
|
6408
|
-
name:
|
|
5245
|
+
name: str # std::string
|
|
6409
5246
|
"""
|
|
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})
|
|
5247
|
+
Object name.
|
|
6415
5248
|
"""
|
|
6416
5249
|
|
|
6417
5250
|
priority: str
|
|
@@ -6429,13 +5262,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
6429
5262
|
|
|
6430
5263
|
|
|
6431
5264
|
class PointContact:
|
|
6432
|
-
R_world_surface:
|
|
5265
|
+
R_world_surface: numpy.ndarray # Eigen::Matrix3d
|
|
6433
5266
|
"""
|
|
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})
|
|
5267
|
+
rotation matrix expressing the surface frame in the world frame (for unilateral contact)
|
|
6439
5268
|
"""
|
|
6440
5269
|
|
|
6441
5270
|
def __init__(
|
|
@@ -6448,22 +5277,14 @@ None( (placo.PointContact)arg1) -> object :
|
|
|
6448
5277
|
"""
|
|
6449
5278
|
...
|
|
6450
5279
|
|
|
6451
|
-
active:
|
|
5280
|
+
active: bool # bool
|
|
6452
5281
|
"""
|
|
6453
|
-
|
|
6454
|
-
None( (placo.Contact)arg1) -> bool :
|
|
6455
|
-
|
|
6456
|
-
C++ signature :
|
|
6457
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5282
|
+
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
5283
|
"""
|
|
6459
5284
|
|
|
6460
|
-
mu:
|
|
5285
|
+
mu: float # double
|
|
6461
5286
|
"""
|
|
6462
|
-
|
|
6463
|
-
None( (placo.Contact)arg1) -> float :
|
|
6464
|
-
|
|
6465
|
-
C++ signature :
|
|
6466
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5287
|
+
Coefficient of friction (if relevant)
|
|
6467
5288
|
"""
|
|
6468
5289
|
|
|
6469
5290
|
def position_task(
|
|
@@ -6471,49 +5292,29 @@ None( (placo.Contact)arg1) -> float :
|
|
|
6471
5292
|
) -> DynamicsPositionTask:
|
|
6472
5293
|
...
|
|
6473
5294
|
|
|
6474
|
-
unilateral:
|
|
5295
|
+
unilateral: bool # bool
|
|
6475
5296
|
"""
|
|
6476
|
-
|
|
6477
|
-
None( (placo.PointContact)arg1) -> bool :
|
|
6478
|
-
|
|
6479
|
-
C++ signature :
|
|
6480
|
-
bool {lvalue} None(placo::dynamics::PointContact {lvalue})
|
|
5297
|
+
true for unilateral contact with the ground
|
|
6481
5298
|
"""
|
|
6482
5299
|
|
|
6483
|
-
weight_forces:
|
|
5300
|
+
weight_forces: float # double
|
|
6484
5301
|
"""
|
|
6485
|
-
|
|
6486
|
-
None( (placo.Contact)arg1) -> float :
|
|
6487
|
-
|
|
6488
|
-
C++ signature :
|
|
6489
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5302
|
+
Weight of forces for the optimization (if relevant)
|
|
6490
5303
|
"""
|
|
6491
5304
|
|
|
6492
|
-
weight_moments:
|
|
5305
|
+
weight_moments: float # double
|
|
6493
5306
|
"""
|
|
6494
|
-
|
|
6495
|
-
None( (placo.Contact)arg1) -> float :
|
|
6496
|
-
|
|
6497
|
-
C++ signature :
|
|
6498
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5307
|
+
Weight of moments for optimization (if relevant)
|
|
6499
5308
|
"""
|
|
6500
5309
|
|
|
6501
|
-
weight_tangentials:
|
|
5310
|
+
weight_tangentials: float # double
|
|
6502
5311
|
"""
|
|
6503
|
-
|
|
6504
|
-
None( (placo.Contact)arg1) -> float :
|
|
6505
|
-
|
|
6506
|
-
C++ signature :
|
|
6507
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5312
|
+
Extra cost for tangential forces.
|
|
6508
5313
|
"""
|
|
6509
5314
|
|
|
6510
|
-
wrench:
|
|
5315
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
6511
5316
|
"""
|
|
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})
|
|
5317
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
6517
5318
|
"""
|
|
6518
5319
|
|
|
6519
5320
|
|
|
@@ -6553,13 +5354,9 @@ class Polynom:
|
|
|
6553
5354
|
) -> any:
|
|
6554
5355
|
...
|
|
6555
5356
|
|
|
6556
|
-
coefficients:
|
|
5357
|
+
coefficients: numpy.ndarray # Eigen::VectorXd
|
|
6557
5358
|
"""
|
|
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})
|
|
5359
|
+
coefficients, from highest to lowest
|
|
6563
5360
|
"""
|
|
6564
5361
|
|
|
6565
5362
|
@staticmethod
|
|
@@ -6591,13 +5388,9 @@ None( (placo.Polynom)arg1) -> object :
|
|
|
6591
5388
|
|
|
6592
5389
|
|
|
6593
5390
|
class PositionTask:
|
|
6594
|
-
A:
|
|
5391
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
6595
5392
|
"""
|
|
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})
|
|
5393
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
6601
5394
|
"""
|
|
6602
5395
|
|
|
6603
5396
|
def __init__(
|
|
@@ -6610,13 +5403,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
6610
5403
|
"""
|
|
6611
5404
|
...
|
|
6612
5405
|
|
|
6613
|
-
b:
|
|
5406
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
6614
5407
|
"""
|
|
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})
|
|
5408
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
6620
5409
|
"""
|
|
6621
5410
|
|
|
6622
5411
|
def configure(
|
|
@@ -6650,31 +5439,19 @@ None( (placo.Task)arg1) -> object :
|
|
|
6650
5439
|
"""
|
|
6651
5440
|
...
|
|
6652
5441
|
|
|
6653
|
-
frame_index: any
|
|
5442
|
+
frame_index: any # pinocchio::FrameIndex
|
|
6654
5443
|
"""
|
|
6655
|
-
|
|
6656
|
-
None( (placo.PositionTask)arg1) -> int :
|
|
6657
|
-
|
|
6658
|
-
C++ signature :
|
|
6659
|
-
unsigned long {lvalue} None(placo::kinematics::PositionTask {lvalue})
|
|
5444
|
+
Frame.
|
|
6660
5445
|
"""
|
|
6661
5446
|
|
|
6662
|
-
mask:
|
|
5447
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
6663
5448
|
"""
|
|
6664
|
-
|
|
6665
|
-
None( (placo.PositionTask)arg1) -> placo.AxisesMask :
|
|
6666
|
-
|
|
6667
|
-
C++ signature :
|
|
6668
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::PositionTask {lvalue})
|
|
5449
|
+
Mask.
|
|
6669
5450
|
"""
|
|
6670
5451
|
|
|
6671
|
-
name:
|
|
5452
|
+
name: str # std::string
|
|
6672
5453
|
"""
|
|
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})
|
|
5454
|
+
Object name.
|
|
6678
5455
|
"""
|
|
6679
5456
|
|
|
6680
5457
|
priority: str
|
|
@@ -6682,13 +5459,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
6682
5459
|
Priority [str]
|
|
6683
5460
|
"""
|
|
6684
5461
|
|
|
6685
|
-
target_world:
|
|
5462
|
+
target_world: numpy.ndarray # Eigen::Vector3d
|
|
6686
5463
|
"""
|
|
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)
|
|
5464
|
+
Target position in the world.
|
|
6692
5465
|
"""
|
|
6693
5466
|
|
|
6694
5467
|
def update(
|
|
@@ -6721,13 +5494,9 @@ class Prioritized:
|
|
|
6721
5494
|
"""
|
|
6722
5495
|
...
|
|
6723
5496
|
|
|
6724
|
-
name:
|
|
5497
|
+
name: str # std::string
|
|
6725
5498
|
"""
|
|
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})
|
|
5499
|
+
Object name.
|
|
6731
5500
|
"""
|
|
6732
5501
|
|
|
6733
5502
|
priority: str
|
|
@@ -6788,13 +5557,9 @@ class Problem:
|
|
|
6788
5557
|
"""
|
|
6789
5558
|
...
|
|
6790
5559
|
|
|
6791
|
-
determined_variables:
|
|
5560
|
+
determined_variables: int # int
|
|
6792
5561
|
"""
|
|
6793
|
-
|
|
6794
|
-
None( (placo.Problem)arg1) -> int :
|
|
6795
|
-
|
|
6796
|
-
C++ signature :
|
|
6797
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5562
|
+
Number of determined variables.
|
|
6798
5563
|
"""
|
|
6799
5564
|
|
|
6800
5565
|
def dump_status(
|
|
@@ -6802,76 +5567,44 @@ None( (placo.Problem)arg1) -> int :
|
|
|
6802
5567
|
) -> None:
|
|
6803
5568
|
...
|
|
6804
5569
|
|
|
6805
|
-
free_variables:
|
|
5570
|
+
free_variables: int # int
|
|
6806
5571
|
"""
|
|
6807
|
-
|
|
6808
|
-
None( (placo.Problem)arg1) -> int :
|
|
6809
|
-
|
|
6810
|
-
C++ signature :
|
|
6811
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5572
|
+
Number of free variables to solve.
|
|
6812
5573
|
"""
|
|
6813
5574
|
|
|
6814
|
-
n_equalities:
|
|
5575
|
+
n_equalities: int # int
|
|
6815
5576
|
"""
|
|
6816
|
-
|
|
6817
|
-
None( (placo.Problem)arg1) -> int :
|
|
6818
|
-
|
|
6819
|
-
C++ signature :
|
|
6820
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5577
|
+
Number of equalities.
|
|
6821
5578
|
"""
|
|
6822
5579
|
|
|
6823
|
-
n_inequalities:
|
|
5580
|
+
n_inequalities: int # int
|
|
6824
5581
|
"""
|
|
6825
|
-
|
|
6826
|
-
None( (placo.Problem)arg1) -> int :
|
|
6827
|
-
|
|
6828
|
-
C++ signature :
|
|
6829
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5582
|
+
Number of inequality constraints.
|
|
6830
5583
|
"""
|
|
6831
5584
|
|
|
6832
|
-
n_variables:
|
|
5585
|
+
n_variables: int # int
|
|
6833
5586
|
"""
|
|
6834
|
-
|
|
6835
|
-
None( (placo.Problem)arg1) -> int :
|
|
6836
|
-
|
|
6837
|
-
C++ signature :
|
|
6838
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5587
|
+
Number of problem variables that need to be solved.
|
|
6839
5588
|
"""
|
|
6840
5589
|
|
|
6841
|
-
regularization:
|
|
5590
|
+
regularization: float # double
|
|
6842
5591
|
"""
|
|
6843
|
-
|
|
6844
|
-
None( (placo.Problem)arg1) -> float :
|
|
6845
|
-
|
|
6846
|
-
C++ signature :
|
|
6847
|
-
double {lvalue} None(placo::problem::Problem {lvalue})
|
|
5592
|
+
Default internal regularization.
|
|
6848
5593
|
"""
|
|
6849
5594
|
|
|
6850
|
-
rewrite_equalities:
|
|
5595
|
+
rewrite_equalities: bool # bool
|
|
6851
5596
|
"""
|
|
6852
|
-
|
|
6853
|
-
None( (placo.Problem)arg1) -> bool :
|
|
6854
|
-
|
|
6855
|
-
C++ signature :
|
|
6856
|
-
bool {lvalue} None(placo::problem::Problem {lvalue})
|
|
5597
|
+
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
5598
|
"""
|
|
6858
5599
|
|
|
6859
|
-
slack_variables:
|
|
5600
|
+
slack_variables: int # int
|
|
6860
5601
|
"""
|
|
6861
|
-
|
|
6862
|
-
None( (placo.Problem)arg1) -> int :
|
|
6863
|
-
|
|
6864
|
-
C++ signature :
|
|
6865
|
-
int {lvalue} None(placo::problem::Problem {lvalue})
|
|
5602
|
+
Number of slack variables in the solver.
|
|
6866
5603
|
"""
|
|
6867
5604
|
|
|
6868
|
-
slacks:
|
|
5605
|
+
slacks: numpy.ndarray # Eigen::VectorXd
|
|
6869
5606
|
"""
|
|
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)
|
|
5607
|
+
Computed slack variables.
|
|
6875
5608
|
"""
|
|
6876
5609
|
|
|
6877
5610
|
def solve(
|
|
@@ -6882,22 +5615,14 @@ None( (placo.Problem)arg1) -> numpy.ndarray :
|
|
|
6882
5615
|
"""
|
|
6883
5616
|
...
|
|
6884
5617
|
|
|
6885
|
-
use_sparsity:
|
|
5618
|
+
use_sparsity: bool # bool
|
|
6886
5619
|
"""
|
|
6887
|
-
|
|
6888
|
-
None( (placo.Problem)arg1) -> bool :
|
|
6889
|
-
|
|
6890
|
-
C++ signature :
|
|
6891
|
-
bool {lvalue} None(placo::problem::Problem {lvalue})
|
|
5620
|
+
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
5621
|
"""
|
|
6893
5622
|
|
|
6894
|
-
x:
|
|
5623
|
+
x: numpy.ndarray # Eigen::VectorXd
|
|
6895
5624
|
"""
|
|
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})
|
|
5625
|
+
Computed result.
|
|
6901
5626
|
"""
|
|
6902
5627
|
|
|
6903
5628
|
|
|
@@ -6922,40 +5647,24 @@ class ProblemConstraint:
|
|
|
6922
5647
|
"""
|
|
6923
5648
|
...
|
|
6924
5649
|
|
|
6925
|
-
expression:
|
|
5650
|
+
expression: Expression # placo::problem::Expression
|
|
6926
5651
|
"""
|
|
6927
|
-
|
|
6928
|
-
None( (placo.ProblemConstraint)arg1) -> object :
|
|
6929
|
-
|
|
6930
|
-
C++ signature :
|
|
6931
|
-
placo::problem::Expression {lvalue} None(placo::problem::ProblemConstraint {lvalue})
|
|
5652
|
+
The constraint expression (Ax + b)
|
|
6932
5653
|
"""
|
|
6933
5654
|
|
|
6934
|
-
is_active:
|
|
5655
|
+
is_active: bool # bool
|
|
6935
5656
|
"""
|
|
6936
|
-
|
|
6937
|
-
None( (placo.ProblemConstraint)arg1) -> bool :
|
|
6938
|
-
|
|
6939
|
-
C++ signature :
|
|
6940
|
-
bool {lvalue} None(placo::problem::ProblemConstraint {lvalue})
|
|
5657
|
+
This flag will be set by the solver if the constraint is active in the optimal solution.
|
|
6941
5658
|
"""
|
|
6942
5659
|
|
|
6943
|
-
priority: any
|
|
5660
|
+
priority: any # placo::problem::ProblemConstraint::Priority
|
|
6944
5661
|
"""
|
|
6945
|
-
|
|
6946
|
-
None( (placo.ProblemConstraint)arg1) -> str :
|
|
6947
|
-
|
|
6948
|
-
C++ signature :
|
|
6949
|
-
char const* None(placo::problem::ProblemConstraint)
|
|
5662
|
+
Constraint priority.
|
|
6950
5663
|
"""
|
|
6951
5664
|
|
|
6952
|
-
weight:
|
|
5665
|
+
weight: float # double
|
|
6953
5666
|
"""
|
|
6954
|
-
|
|
6955
|
-
None( (placo.ProblemConstraint)arg1) -> float :
|
|
6956
|
-
|
|
6957
|
-
C++ signature :
|
|
6958
|
-
double {lvalue} None(placo::problem::ProblemConstraint {lvalue})
|
|
5667
|
+
Constraint weight (for soft constraints)
|
|
6959
5668
|
"""
|
|
6960
5669
|
|
|
6961
5670
|
|
|
@@ -6997,58 +5706,34 @@ class PuppetContact:
|
|
|
6997
5706
|
"""
|
|
6998
5707
|
...
|
|
6999
5708
|
|
|
7000
|
-
active:
|
|
5709
|
+
active: bool # bool
|
|
7001
5710
|
"""
|
|
7002
|
-
|
|
7003
|
-
None( (placo.Contact)arg1) -> bool :
|
|
7004
|
-
|
|
7005
|
-
C++ signature :
|
|
7006
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5711
|
+
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
5712
|
"""
|
|
7008
5713
|
|
|
7009
|
-
mu:
|
|
5714
|
+
mu: float # double
|
|
7010
5715
|
"""
|
|
7011
|
-
|
|
7012
|
-
None( (placo.Contact)arg1) -> float :
|
|
7013
|
-
|
|
7014
|
-
C++ signature :
|
|
7015
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5716
|
+
Coefficient of friction (if relevant)
|
|
7016
5717
|
"""
|
|
7017
5718
|
|
|
7018
|
-
weight_forces:
|
|
5719
|
+
weight_forces: float # double
|
|
7019
5720
|
"""
|
|
7020
|
-
|
|
7021
|
-
None( (placo.Contact)arg1) -> float :
|
|
7022
|
-
|
|
7023
|
-
C++ signature :
|
|
7024
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5721
|
+
Weight of forces for the optimization (if relevant)
|
|
7025
5722
|
"""
|
|
7026
5723
|
|
|
7027
|
-
weight_moments:
|
|
5724
|
+
weight_moments: float # double
|
|
7028
5725
|
"""
|
|
7029
|
-
|
|
7030
|
-
None( (placo.Contact)arg1) -> float :
|
|
7031
|
-
|
|
7032
|
-
C++ signature :
|
|
7033
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5726
|
+
Weight of moments for optimization (if relevant)
|
|
7034
5727
|
"""
|
|
7035
5728
|
|
|
7036
|
-
weight_tangentials:
|
|
5729
|
+
weight_tangentials: float # double
|
|
7037
5730
|
"""
|
|
7038
|
-
|
|
7039
|
-
None( (placo.Contact)arg1) -> float :
|
|
7040
|
-
|
|
7041
|
-
C++ signature :
|
|
7042
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
5731
|
+
Extra cost for tangential forces.
|
|
7043
5732
|
"""
|
|
7044
5733
|
|
|
7045
|
-
wrench:
|
|
5734
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
7046
5735
|
"""
|
|
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})
|
|
5736
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
7052
5737
|
"""
|
|
7053
5738
|
|
|
7054
5739
|
|
|
@@ -7069,13 +5754,9 @@ class QPError:
|
|
|
7069
5754
|
|
|
7070
5755
|
|
|
7071
5756
|
class RegularizationTask:
|
|
7072
|
-
A:
|
|
5757
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
7073
5758
|
"""
|
|
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})
|
|
5759
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
7079
5760
|
"""
|
|
7080
5761
|
|
|
7081
5762
|
def __init__(
|
|
@@ -7083,13 +5764,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
7083
5764
|
) -> None:
|
|
7084
5765
|
...
|
|
7085
5766
|
|
|
7086
|
-
b:
|
|
5767
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
7087
5768
|
"""
|
|
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})
|
|
5769
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
7093
5770
|
"""
|
|
7094
5771
|
|
|
7095
5772
|
def configure(
|
|
@@ -7123,13 +5800,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
7123
5800
|
"""
|
|
7124
5801
|
...
|
|
7125
5802
|
|
|
7126
|
-
name:
|
|
5803
|
+
name: str # std::string
|
|
7127
5804
|
"""
|
|
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})
|
|
5805
|
+
Object name.
|
|
7133
5806
|
"""
|
|
7134
5807
|
|
|
7135
5808
|
priority: str
|
|
@@ -7148,13 +5821,6 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
7148
5821
|
|
|
7149
5822
|
class RelativeFrameTask:
|
|
7150
5823
|
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
5824
|
|
|
7159
5825
|
def __init__(
|
|
7160
5826
|
self,
|
|
@@ -7195,22 +5861,14 @@ None( (placo.RelativeFrameTask)arg1) -> object :
|
|
|
7195
5861
|
|
|
7196
5862
|
|
|
7197
5863
|
class RelativeOrientationTask:
|
|
7198
|
-
A:
|
|
5864
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
7199
5865
|
"""
|
|
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})
|
|
5866
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
7205
5867
|
"""
|
|
7206
5868
|
|
|
7207
|
-
R_a_b:
|
|
5869
|
+
R_a_b: numpy.ndarray # Eigen::Matrix3d
|
|
7208
5870
|
"""
|
|
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})
|
|
5871
|
+
Target relative orientation of b in a.
|
|
7214
5872
|
"""
|
|
7215
5873
|
|
|
7216
5874
|
def __init__(
|
|
@@ -7224,13 +5882,9 @@ None( (placo.RelativeOrientationTask)arg1) -> object :
|
|
|
7224
5882
|
"""
|
|
7225
5883
|
...
|
|
7226
5884
|
|
|
7227
|
-
b:
|
|
5885
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
7228
5886
|
"""
|
|
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})
|
|
5887
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
7234
5888
|
"""
|
|
7235
5889
|
|
|
7236
5890
|
def configure(
|
|
@@ -7264,40 +5918,24 @@ None( (placo.Task)arg1) -> object :
|
|
|
7264
5918
|
"""
|
|
7265
5919
|
...
|
|
7266
5920
|
|
|
7267
|
-
frame_a: any
|
|
5921
|
+
frame_a: any # pinocchio::FrameIndex
|
|
7268
5922
|
"""
|
|
7269
|
-
|
|
7270
|
-
None( (placo.RelativeOrientationTask)arg1) -> int :
|
|
7271
|
-
|
|
7272
|
-
C++ signature :
|
|
7273
|
-
unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5923
|
+
Frame A.
|
|
7274
5924
|
"""
|
|
7275
5925
|
|
|
7276
|
-
frame_b: any
|
|
5926
|
+
frame_b: any # pinocchio::FrameIndex
|
|
7277
5927
|
"""
|
|
7278
|
-
|
|
7279
|
-
None( (placo.RelativeOrientationTask)arg1) -> int :
|
|
7280
|
-
|
|
7281
|
-
C++ signature :
|
|
7282
|
-
unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5928
|
+
Frame B.
|
|
7283
5929
|
"""
|
|
7284
5930
|
|
|
7285
|
-
mask:
|
|
5931
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
7286
5932
|
"""
|
|
7287
|
-
|
|
7288
|
-
None( (placo.RelativeOrientationTask)arg1) -> placo.AxisesMask :
|
|
7289
|
-
|
|
7290
|
-
C++ signature :
|
|
7291
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
|
|
5933
|
+
Mask.
|
|
7292
5934
|
"""
|
|
7293
5935
|
|
|
7294
|
-
name:
|
|
5936
|
+
name: str # std::string
|
|
7295
5937
|
"""
|
|
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})
|
|
5938
|
+
Object name.
|
|
7301
5939
|
"""
|
|
7302
5940
|
|
|
7303
5941
|
priority: str
|
|
@@ -7315,13 +5953,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
7315
5953
|
|
|
7316
5954
|
|
|
7317
5955
|
class RelativePositionTask:
|
|
7318
|
-
A:
|
|
5956
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
7319
5957
|
"""
|
|
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})
|
|
5958
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
7325
5959
|
"""
|
|
7326
5960
|
|
|
7327
5961
|
def __init__(
|
|
@@ -7335,13 +5969,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
7335
5969
|
"""
|
|
7336
5970
|
...
|
|
7337
5971
|
|
|
7338
|
-
b:
|
|
5972
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
7339
5973
|
"""
|
|
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})
|
|
5974
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
7345
5975
|
"""
|
|
7346
5976
|
|
|
7347
5977
|
def configure(
|
|
@@ -7375,40 +6005,24 @@ None( (placo.Task)arg1) -> object :
|
|
|
7375
6005
|
"""
|
|
7376
6006
|
...
|
|
7377
6007
|
|
|
7378
|
-
frame_a: any
|
|
6008
|
+
frame_a: any # pinocchio::FrameIndex
|
|
7379
6009
|
"""
|
|
7380
|
-
|
|
7381
|
-
None( (placo.RelativePositionTask)arg1) -> int :
|
|
7382
|
-
|
|
7383
|
-
C++ signature :
|
|
7384
|
-
unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6010
|
+
Frame A.
|
|
7385
6011
|
"""
|
|
7386
6012
|
|
|
7387
|
-
frame_b: any
|
|
6013
|
+
frame_b: any # pinocchio::FrameIndex
|
|
7388
6014
|
"""
|
|
7389
|
-
|
|
7390
|
-
None( (placo.RelativePositionTask)arg1) -> int :
|
|
7391
|
-
|
|
7392
|
-
C++ signature :
|
|
7393
|
-
unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6015
|
+
Frame B.
|
|
7394
6016
|
"""
|
|
7395
6017
|
|
|
7396
|
-
mask:
|
|
6018
|
+
mask: AxisesMask # placo::tools::AxisesMask
|
|
7397
6019
|
"""
|
|
7398
|
-
|
|
7399
|
-
None( (placo.RelativePositionTask)arg1) -> placo.AxisesMask :
|
|
7400
|
-
|
|
7401
|
-
C++ signature :
|
|
7402
|
-
placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
|
|
6020
|
+
Mask.
|
|
7403
6021
|
"""
|
|
7404
6022
|
|
|
7405
|
-
name:
|
|
6023
|
+
name: str # std::string
|
|
7406
6024
|
"""
|
|
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})
|
|
6025
|
+
Object name.
|
|
7412
6026
|
"""
|
|
7413
6027
|
|
|
7414
6028
|
priority: str
|
|
@@ -7416,13 +6030,9 @@ None( (placo.Prioritized)arg1) -> str :
|
|
|
7416
6030
|
Priority [str]
|
|
7417
6031
|
"""
|
|
7418
6032
|
|
|
7419
|
-
target:
|
|
6033
|
+
target: numpy.ndarray # Eigen::Vector3d
|
|
7420
6034
|
"""
|
|
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})
|
|
6035
|
+
Target position of B in A.
|
|
7426
6036
|
"""
|
|
7427
6037
|
|
|
7428
6038
|
def update(
|
|
@@ -7467,13 +6077,9 @@ class RobotWrapper:
|
|
|
7467
6077
|
"""
|
|
7468
6078
|
...
|
|
7469
6079
|
|
|
7470
|
-
collision_model: any
|
|
6080
|
+
collision_model: any # pinocchio::GeometryModel
|
|
7471
6081
|
"""
|
|
7472
|
-
|
|
7473
|
-
None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
7474
|
-
|
|
7475
|
-
C++ signature :
|
|
7476
|
-
pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6082
|
+
Pinocchio collision model.
|
|
7477
6083
|
"""
|
|
7478
6084
|
|
|
7479
6085
|
def com_jacobian(
|
|
@@ -7514,7 +6120,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7514
6120
|
"""
|
|
7515
6121
|
Computes all minimum distances between current collision pairs.
|
|
7516
6122
|
|
|
7517
|
-
:return: <Element 'para' at
|
|
6123
|
+
:return: <Element 'para' at 0xffadcdf79030>
|
|
7518
6124
|
"""
|
|
7519
6125
|
...
|
|
7520
6126
|
|
|
@@ -7527,7 +6133,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7527
6133
|
Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
|
|
7528
6134
|
|
|
7529
6135
|
:param any frame: the frame for which we want the jacobian
|
|
7530
|
-
:return: <Element 'para' at
|
|
6136
|
+
:return: <Element 'para' at 0xffadcdf545e0>
|
|
7531
6137
|
"""
|
|
7532
6138
|
...
|
|
7533
6139
|
|
|
@@ -7540,7 +6146,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7540
6146
|
Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
|
|
7541
6147
|
|
|
7542
6148
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7543
|
-
:return: <Element 'para' at
|
|
6149
|
+
:return: <Element 'para' at 0xffadcdf558a0>
|
|
7544
6150
|
"""
|
|
7545
6151
|
...
|
|
7546
6152
|
|
|
@@ -7724,13 +6330,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7724
6330
|
"""
|
|
7725
6331
|
...
|
|
7726
6332
|
|
|
7727
|
-
model: any
|
|
6333
|
+
model: any # pinocchio::Model
|
|
7728
6334
|
"""
|
|
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})
|
|
6335
|
+
Pinocchio model.
|
|
7734
6336
|
"""
|
|
7735
6337
|
|
|
7736
6338
|
def neutral_state(
|
|
@@ -7778,7 +6380,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7778
6380
|
Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
|
|
7779
6381
|
|
|
7780
6382
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7781
|
-
:return: <Element 'para' at
|
|
6383
|
+
:return: <Element 'para' at 0xffadcdf79990>
|
|
7782
6384
|
"""
|
|
7783
6385
|
...
|
|
7784
6386
|
|
|
@@ -7926,13 +6528,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7926
6528
|
"""
|
|
7927
6529
|
...
|
|
7928
6530
|
|
|
7929
|
-
state:
|
|
6531
|
+
state: RobotWrapper_State # placo::model::RobotWrapper::State
|
|
7930
6532
|
"""
|
|
7931
|
-
|
|
7932
|
-
None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
|
|
7933
|
-
|
|
7934
|
-
C++ signature :
|
|
7935
|
-
placo::model::RobotWrapper::State {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6533
|
+
Robot's current state.
|
|
7936
6534
|
"""
|
|
7937
6535
|
|
|
7938
6536
|
def static_gravity_compensation_torques(
|
|
@@ -7988,13 +6586,9 @@ None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
|
|
|
7988
6586
|
"""
|
|
7989
6587
|
...
|
|
7990
6588
|
|
|
7991
|
-
visual_model: any
|
|
6589
|
+
visual_model: any # pinocchio::GeometryModel
|
|
7992
6590
|
"""
|
|
7993
|
-
|
|
7994
|
-
None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
|
|
7995
|
-
|
|
7996
|
-
C++ signature :
|
|
7997
|
-
pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
|
|
6591
|
+
Pinocchio visual model.
|
|
7998
6592
|
"""
|
|
7999
6593
|
|
|
8000
6594
|
|
|
@@ -8004,31 +6598,19 @@ class RobotWrapper_State:
|
|
|
8004
6598
|
) -> None:
|
|
8005
6599
|
...
|
|
8006
6600
|
|
|
8007
|
-
q:
|
|
6601
|
+
q: numpy.ndarray # Eigen::VectorXd
|
|
8008
6602
|
"""
|
|
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})
|
|
6603
|
+
joints configuration $q$
|
|
8014
6604
|
"""
|
|
8015
6605
|
|
|
8016
|
-
qd:
|
|
6606
|
+
qd: numpy.ndarray # Eigen::VectorXd
|
|
8017
6607
|
"""
|
|
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})
|
|
6608
|
+
joints velocity $\dot q$
|
|
8023
6609
|
"""
|
|
8024
6610
|
|
|
8025
|
-
qdd:
|
|
6611
|
+
qdd: numpy.ndarray # Eigen::VectorXd
|
|
8026
6612
|
"""
|
|
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})
|
|
6613
|
+
joints acceleration $\ddot q$
|
|
8032
6614
|
"""
|
|
8033
6615
|
|
|
8034
6616
|
|
|
@@ -8038,14 +6620,7 @@ class Segment:
|
|
|
8038
6620
|
) -> any:
|
|
8039
6621
|
...
|
|
8040
6622
|
|
|
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
|
-
"""
|
|
6623
|
+
end: numpy.ndarray # Eigen::Vector2d
|
|
8049
6624
|
|
|
8050
6625
|
def half_line_pass_through(
|
|
8051
6626
|
self,
|
|
@@ -8148,14 +6723,7 @@ None( (placo.Segment)arg1) -> object :
|
|
|
8148
6723
|
) -> float:
|
|
8149
6724
|
...
|
|
8150
6725
|
|
|
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
|
-
"""
|
|
6726
|
+
start: numpy.ndarray # Eigen::Vector2d
|
|
8159
6727
|
|
|
8160
6728
|
|
|
8161
6729
|
class Sparsity:
|
|
@@ -8189,13 +6757,9 @@ class Sparsity:
|
|
|
8189
6757
|
"""
|
|
8190
6758
|
...
|
|
8191
6759
|
|
|
8192
|
-
intervals:
|
|
6760
|
+
intervals: list[SparsityInterval] # std::vector<placo::problem::Sparsity::Interval>
|
|
8193
6761
|
"""
|
|
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)
|
|
6762
|
+
Intervals of non-sparse columns.
|
|
8199
6763
|
"""
|
|
8200
6764
|
|
|
8201
6765
|
def print_intervals(
|
|
@@ -8213,22 +6777,14 @@ class SparsityInterval:
|
|
|
8213
6777
|
) -> None:
|
|
8214
6778
|
...
|
|
8215
6779
|
|
|
8216
|
-
end:
|
|
6780
|
+
end: int # int
|
|
8217
6781
|
"""
|
|
8218
|
-
|
|
8219
|
-
None( (placo.SparsityInterval)arg1) -> int :
|
|
8220
|
-
|
|
8221
|
-
C++ signature :
|
|
8222
|
-
int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
|
|
6782
|
+
End of interval.
|
|
8223
6783
|
"""
|
|
8224
6784
|
|
|
8225
|
-
start:
|
|
6785
|
+
start: int # int
|
|
8226
6786
|
"""
|
|
8227
|
-
|
|
8228
|
-
None( (placo.SparsityInterval)arg1) -> int :
|
|
8229
|
-
|
|
8230
|
-
C++ signature :
|
|
8231
|
-
int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
|
|
6787
|
+
Start of interval.
|
|
8232
6788
|
"""
|
|
8233
6789
|
|
|
8234
6790
|
|
|
@@ -8244,23 +6800,9 @@ class Support:
|
|
|
8244
6800
|
) -> None:
|
|
8245
6801
|
...
|
|
8246
6802
|
|
|
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 :
|
|
6803
|
+
elapsed_ratio: float # double
|
|
8260
6804
|
|
|
8261
|
-
|
|
8262
|
-
bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8263
|
-
"""
|
|
6805
|
+
end: bool # bool
|
|
8264
6806
|
|
|
8265
6807
|
def footstep_frame(
|
|
8266
6808
|
self,
|
|
@@ -8273,14 +6815,7 @@ None( (placo.Support)arg1) -> bool :
|
|
|
8273
6815
|
"""
|
|
8274
6816
|
...
|
|
8275
6817
|
|
|
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
|
-
"""
|
|
6818
|
+
footsteps: list[Footstep] # std::vector<placo::humanoid::FootstepsPlanner::Footstep>
|
|
8284
6819
|
|
|
8285
6820
|
def frame(
|
|
8286
6821
|
self,
|
|
@@ -8318,46 +6853,18 @@ None( (placo.Support)arg1) -> object :
|
|
|
8318
6853
|
"""
|
|
8319
6854
|
...
|
|
8320
6855
|
|
|
8321
|
-
start:
|
|
8322
|
-
"""
|
|
8323
|
-
|
|
8324
|
-
None( (placo.Support)arg1) -> bool :
|
|
8325
|
-
|
|
8326
|
-
C++ signature :
|
|
8327
|
-
bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8328
|
-
"""
|
|
6856
|
+
start: bool # bool
|
|
8329
6857
|
|
|
8330
6858
|
def support_polygon(
|
|
8331
6859
|
self,
|
|
8332
6860
|
) -> list[numpy.ndarray]:
|
|
8333
6861
|
...
|
|
8334
6862
|
|
|
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
|
-
"""
|
|
6863
|
+
t_start: float # double
|
|
8352
6864
|
|
|
8353
|
-
|
|
8354
|
-
"""
|
|
8355
|
-
|
|
8356
|
-
None( (placo.Support)arg1) -> float :
|
|
6865
|
+
target_world_dcm: numpy.ndarray # Eigen::Vector2d
|
|
8357
6866
|
|
|
8358
|
-
|
|
8359
|
-
double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
|
|
8360
|
-
"""
|
|
6867
|
+
time_ratio: float # double
|
|
8361
6868
|
|
|
8362
6869
|
|
|
8363
6870
|
class Supports:
|
|
@@ -8506,26 +7013,18 @@ class SwingFootTrajectory:
|
|
|
8506
7013
|
|
|
8507
7014
|
|
|
8508
7015
|
class Task:
|
|
8509
|
-
A:
|
|
7016
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
8510
7017
|
"""
|
|
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})
|
|
7018
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
8516
7019
|
"""
|
|
8517
7020
|
|
|
8518
7021
|
def __init__(
|
|
8519
7022
|
) -> any:
|
|
8520
7023
|
...
|
|
8521
7024
|
|
|
8522
|
-
b:
|
|
7025
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
8523
7026
|
"""
|
|
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})
|
|
7027
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
8529
7028
|
"""
|
|
8530
7029
|
|
|
8531
7030
|
def configure(
|
|
@@ -8559,13 +7058,9 @@ None( (placo.Task)arg1) -> object :
|
|
|
8559
7058
|
"""
|
|
8560
7059
|
...
|
|
8561
7060
|
|
|
8562
|
-
name:
|
|
7061
|
+
name: str # std::string
|
|
8563
7062
|
"""
|
|
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})
|
|
7063
|
+
Object name.
|
|
8569
7064
|
"""
|
|
8570
7065
|
|
|
8571
7066
|
priority: str
|
|
@@ -8592,58 +7087,34 @@ class TaskContact:
|
|
|
8592
7087
|
"""
|
|
8593
7088
|
...
|
|
8594
7089
|
|
|
8595
|
-
active:
|
|
7090
|
+
active: bool # bool
|
|
8596
7091
|
"""
|
|
8597
|
-
|
|
8598
|
-
None( (placo.Contact)arg1) -> bool :
|
|
8599
|
-
|
|
8600
|
-
C++ signature :
|
|
8601
|
-
bool {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7092
|
+
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
7093
|
"""
|
|
8603
7094
|
|
|
8604
|
-
mu:
|
|
7095
|
+
mu: float # double
|
|
8605
7096
|
"""
|
|
8606
|
-
|
|
8607
|
-
None( (placo.Contact)arg1) -> float :
|
|
8608
|
-
|
|
8609
|
-
C++ signature :
|
|
8610
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7097
|
+
Coefficient of friction (if relevant)
|
|
8611
7098
|
"""
|
|
8612
7099
|
|
|
8613
|
-
weight_forces:
|
|
7100
|
+
weight_forces: float # double
|
|
8614
7101
|
"""
|
|
8615
|
-
|
|
8616
|
-
None( (placo.Contact)arg1) -> float :
|
|
8617
|
-
|
|
8618
|
-
C++ signature :
|
|
8619
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7102
|
+
Weight of forces for the optimization (if relevant)
|
|
8620
7103
|
"""
|
|
8621
7104
|
|
|
8622
|
-
weight_moments:
|
|
7105
|
+
weight_moments: float # double
|
|
8623
7106
|
"""
|
|
8624
|
-
|
|
8625
|
-
None( (placo.Contact)arg1) -> float :
|
|
8626
|
-
|
|
8627
|
-
C++ signature :
|
|
8628
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7107
|
+
Weight of moments for optimization (if relevant)
|
|
8629
7108
|
"""
|
|
8630
7109
|
|
|
8631
|
-
weight_tangentials:
|
|
7110
|
+
weight_tangentials: float # double
|
|
8632
7111
|
"""
|
|
8633
|
-
|
|
8634
|
-
None( (placo.Contact)arg1) -> float :
|
|
8635
|
-
|
|
8636
|
-
C++ signature :
|
|
8637
|
-
double {lvalue} None(placo::dynamics::Contact {lvalue})
|
|
7112
|
+
Extra cost for tangential forces.
|
|
8638
7113
|
"""
|
|
8639
7114
|
|
|
8640
|
-
wrench:
|
|
7115
|
+
wrench: numpy.ndarray # Eigen::VectorXd
|
|
8641
7116
|
"""
|
|
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})
|
|
7117
|
+
Wrench populated after the DynamicsSolver::solve call.
|
|
8647
7118
|
"""
|
|
8648
7119
|
|
|
8649
7120
|
|
|
@@ -8669,31 +7140,19 @@ class Variable:
|
|
|
8669
7140
|
"""
|
|
8670
7141
|
...
|
|
8671
7142
|
|
|
8672
|
-
k_end:
|
|
7143
|
+
k_end: int # int
|
|
8673
7144
|
"""
|
|
8674
|
-
|
|
8675
|
-
None( (placo.Variable)arg1) -> int :
|
|
8676
|
-
|
|
8677
|
-
C++ signature :
|
|
8678
|
-
int {lvalue} None(placo::problem::Variable {lvalue})
|
|
7145
|
+
End offset in the Problem.
|
|
8679
7146
|
"""
|
|
8680
7147
|
|
|
8681
|
-
k_start:
|
|
7148
|
+
k_start: int # int
|
|
8682
7149
|
"""
|
|
8683
|
-
|
|
8684
|
-
None( (placo.Variable)arg1) -> int :
|
|
8685
|
-
|
|
8686
|
-
C++ signature :
|
|
8687
|
-
int {lvalue} None(placo::problem::Variable {lvalue})
|
|
7150
|
+
Start offset in the Problem.
|
|
8688
7151
|
"""
|
|
8689
7152
|
|
|
8690
|
-
value:
|
|
7153
|
+
value: numpy.ndarray # Eigen::VectorXd
|
|
8691
7154
|
"""
|
|
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})
|
|
7155
|
+
Variable value, populated by Problem after a solve.
|
|
8697
7156
|
"""
|
|
8698
7157
|
|
|
8699
7158
|
|
|
@@ -8716,14 +7175,7 @@ class WPGTrajectory:
|
|
|
8716
7175
|
"""
|
|
8717
7176
|
...
|
|
8718
7177
|
|
|
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
|
-
"""
|
|
7178
|
+
com_target_z: float # double
|
|
8727
7179
|
|
|
8728
7180
|
def get_R_world_trunk(
|
|
8729
7181
|
self,
|
|
@@ -8875,28 +7327,14 @@ None( (placo.WPGTrajectory)arg1) -> float :
|
|
|
8875
7327
|
) -> numpy.ndarray:
|
|
8876
7328
|
...
|
|
8877
7329
|
|
|
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
|
-
"""
|
|
7330
|
+
parts: list[WPGTrajectoryPart] # std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart>
|
|
8886
7331
|
|
|
8887
7332
|
def print_parts_timings(
|
|
8888
7333
|
self,
|
|
8889
7334
|
) -> None:
|
|
8890
7335
|
...
|
|
8891
7336
|
|
|
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
|
-
"""
|
|
7337
|
+
replan_success: bool # bool
|
|
8900
7338
|
|
|
8901
7339
|
def support_is_both(
|
|
8902
7340
|
self,
|
|
@@ -8910,41 +7348,13 @@ None( (placo.WPGTrajectory)arg1) -> bool :
|
|
|
8910
7348
|
) -> any:
|
|
8911
7349
|
...
|
|
8912
7350
|
|
|
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
|
-
"""
|
|
7351
|
+
t_end: float # double
|
|
8930
7352
|
|
|
8931
|
-
|
|
8932
|
-
"""
|
|
8933
|
-
|
|
8934
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
8935
|
-
|
|
8936
|
-
C++ signature :
|
|
8937
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8938
|
-
"""
|
|
7353
|
+
t_start: float # double
|
|
8939
7354
|
|
|
8940
|
-
|
|
8941
|
-
"""
|
|
8942
|
-
|
|
8943
|
-
None( (placo.WPGTrajectory)arg1) -> float :
|
|
7355
|
+
trunk_pitch: float # double
|
|
8944
7356
|
|
|
8945
|
-
|
|
8946
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
|
|
8947
|
-
"""
|
|
7357
|
+
trunk_roll: float # double
|
|
8948
7358
|
|
|
8949
7359
|
|
|
8950
7360
|
class WPGTrajectoryPart:
|
|
@@ -8955,32 +7365,11 @@ class WPGTrajectoryPart:
|
|
|
8955
7365
|
) -> None:
|
|
8956
7366
|
...
|
|
8957
7367
|
|
|
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
|
-
"""
|
|
7368
|
+
support: Support # placo::humanoid::FootstepsPlanner::Support
|
|
8975
7369
|
|
|
8976
|
-
|
|
8977
|
-
"""
|
|
8978
|
-
|
|
8979
|
-
None( (placo.WPGTrajectoryPart)arg1) -> float :
|
|
7370
|
+
t_end: float # double
|
|
8980
7371
|
|
|
8981
|
-
|
|
8982
|
-
double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
|
|
8983
|
-
"""
|
|
7372
|
+
t_start: float # double
|
|
8984
7373
|
|
|
8985
7374
|
|
|
8986
7375
|
class WalkPatternGenerator:
|
|
@@ -9058,23 +7447,9 @@ class WalkPatternGenerator:
|
|
|
9058
7447
|
"""
|
|
9059
7448
|
...
|
|
9060
7449
|
|
|
9061
|
-
soft:
|
|
9062
|
-
"""
|
|
9063
|
-
|
|
9064
|
-
None( (placo.WalkPatternGenerator)arg1) -> bool :
|
|
9065
|
-
|
|
9066
|
-
C++ signature :
|
|
9067
|
-
bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
|
|
9068
|
-
"""
|
|
7450
|
+
soft: bool # bool
|
|
9069
7451
|
|
|
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
|
-
"""
|
|
7452
|
+
stop_end_support_weight: float # double
|
|
9078
7453
|
|
|
9079
7454
|
def support_default_duration(
|
|
9080
7455
|
self,
|
|
@@ -9103,14 +7478,7 @@ None( (placo.WalkPatternGenerator)arg1) -> float :
|
|
|
9103
7478
|
"""
|
|
9104
7479
|
...
|
|
9105
7480
|
|
|
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
|
-
"""
|
|
7481
|
+
zmp_in_support_weight: float # double
|
|
9114
7482
|
|
|
9115
7483
|
|
|
9116
7484
|
class WalkTasks:
|
|
@@ -9119,32 +7487,11 @@ class WalkTasks:
|
|
|
9119
7487
|
) -> None:
|
|
9120
7488
|
...
|
|
9121
7489
|
|
|
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
|
-
"""
|
|
7490
|
+
com_task: CoMTask # placo::kinematics::CoMTask
|
|
9139
7491
|
|
|
9140
|
-
|
|
9141
|
-
"""
|
|
9142
|
-
|
|
9143
|
-
None( (placo.WalkTasks)arg1) -> float :
|
|
7492
|
+
com_x: float # double
|
|
9144
7493
|
|
|
9145
|
-
|
|
9146
|
-
double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9147
|
-
"""
|
|
7494
|
+
com_y: float # double
|
|
9148
7495
|
|
|
9149
7496
|
def get_tasks_error(
|
|
9150
7497
|
self,
|
|
@@ -9158,14 +7505,7 @@ None( (placo.WalkTasks)arg1) -> float :
|
|
|
9158
7505
|
) -> None:
|
|
9159
7506
|
...
|
|
9160
7507
|
|
|
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
|
-
"""
|
|
7508
|
+
left_foot_task: FrameTask # placo::kinematics::FrameTask
|
|
9169
7509
|
|
|
9170
7510
|
def reach_initial_pose(
|
|
9171
7511
|
self,
|
|
@@ -9181,59 +7521,17 @@ None( (placo.WalkTasks)arg1) -> placo.FrameTask :
|
|
|
9181
7521
|
) -> None:
|
|
9182
7522
|
...
|
|
9183
7523
|
|
|
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 :
|
|
7524
|
+
right_foot_task: FrameTask # placo::kinematics::FrameTask
|
|
9215
7525
|
|
|
9216
|
-
|
|
9217
|
-
bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9218
|
-
"""
|
|
7526
|
+
scaled: bool # bool
|
|
9219
7527
|
|
|
9220
|
-
|
|
9221
|
-
"""
|
|
9222
|
-
|
|
9223
|
-
None( (placo.WalkTasks)arg1) -> placo.OrientationTask :
|
|
7528
|
+
solver: KinematicsSolver # placo::kinematics::KinematicsSolver
|
|
9224
7529
|
|
|
9225
|
-
|
|
9226
|
-
placo::kinematics::OrientationTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9227
|
-
"""
|
|
7530
|
+
trunk_mode: bool # bool
|
|
9228
7531
|
|
|
9229
|
-
|
|
9230
|
-
"""
|
|
9231
|
-
|
|
9232
|
-
None( (placo.WalkTasks)arg1) -> placo.PositionTask :
|
|
7532
|
+
trunk_orientation_task: OrientationTask # placo::kinematics::OrientationTask
|
|
9233
7533
|
|
|
9234
|
-
|
|
9235
|
-
placo::kinematics::PositionTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
|
|
9236
|
-
"""
|
|
7534
|
+
trunk_task: PositionTask # placo::kinematics::PositionTask
|
|
9237
7535
|
|
|
9238
7536
|
def update_tasks(
|
|
9239
7537
|
self,
|
|
@@ -9251,22 +7549,14 @@ None( (placo.WalkTasks)arg1) -> placo.PositionTask :
|
|
|
9251
7549
|
|
|
9252
7550
|
|
|
9253
7551
|
class WheelTask:
|
|
9254
|
-
A:
|
|
7552
|
+
A: numpy.ndarray # Eigen::MatrixXd
|
|
9255
7553
|
"""
|
|
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})
|
|
7554
|
+
Matrix A in the task Ax = b, where x are the joint delta positions.
|
|
9261
7555
|
"""
|
|
9262
7556
|
|
|
9263
|
-
T_world_surface:
|
|
7557
|
+
T_world_surface: numpy.ndarray # Eigen::Affine3d
|
|
9264
7558
|
"""
|
|
9265
|
-
|
|
9266
|
-
None( (placo.WheelTask)arg1) -> object :
|
|
9267
|
-
|
|
9268
|
-
C++ signature :
|
|
9269
|
-
Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7559
|
+
Target position in the world.
|
|
9270
7560
|
"""
|
|
9271
7561
|
|
|
9272
7562
|
def __init__(
|
|
@@ -9280,13 +7570,9 @@ None( (placo.WheelTask)arg1) -> object :
|
|
|
9280
7570
|
"""
|
|
9281
7571
|
...
|
|
9282
7572
|
|
|
9283
|
-
b:
|
|
7573
|
+
b: numpy.ndarray # Eigen::MatrixXd
|
|
9284
7574
|
"""
|
|
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})
|
|
7575
|
+
Vector b in the task Ax = b, where x are the joint delta positions.
|
|
9290
7576
|
"""
|
|
9291
7577
|
|
|
9292
7578
|
def configure(
|
|
@@ -9320,31 +7606,19 @@ None( (placo.Task)arg1) -> object :
|
|
|
9320
7606
|
"""
|
|
9321
7607
|
...
|
|
9322
7608
|
|
|
9323
|
-
joint:
|
|
7609
|
+
joint: str # std::string
|
|
9324
7610
|
"""
|
|
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})
|
|
7611
|
+
Frame.
|
|
9330
7612
|
"""
|
|
9331
7613
|
|
|
9332
|
-
name:
|
|
7614
|
+
name: str # std::string
|
|
9333
7615
|
"""
|
|
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})
|
|
7616
|
+
Object name.
|
|
9339
7617
|
"""
|
|
9340
7618
|
|
|
9341
|
-
omniwheel:
|
|
7619
|
+
omniwheel: bool # bool
|
|
9342
7620
|
"""
|
|
9343
|
-
|
|
9344
|
-
None( (placo.WheelTask)arg1) -> bool :
|
|
9345
|
-
|
|
9346
|
-
C++ signature :
|
|
9347
|
-
bool {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7621
|
+
Omniwheel (can slide laterally)
|
|
9348
7622
|
"""
|
|
9349
7623
|
|
|
9350
7624
|
priority: str
|
|
@@ -9352,13 +7626,9 @@ None( (placo.WheelTask)arg1) -> bool :
|
|
|
9352
7626
|
Priority [str]
|
|
9353
7627
|
"""
|
|
9354
7628
|
|
|
9355
|
-
radius:
|
|
7629
|
+
radius: float # double
|
|
9356
7630
|
"""
|
|
9357
|
-
|
|
9358
|
-
None( (placo.WheelTask)arg1) -> float :
|
|
9359
|
-
|
|
9360
|
-
C++ signature :
|
|
9361
|
-
double {lvalue} None(placo::kinematics::WheelTask {lvalue})
|
|
7631
|
+
Wheel radius.
|
|
9362
7632
|
"""
|
|
9363
7633
|
|
|
9364
7634
|
def update(
|
|
@@ -9382,13 +7652,9 @@ class YawConstraint:
|
|
|
9382
7652
|
"""
|
|
9383
7653
|
...
|
|
9384
7654
|
|
|
9385
|
-
angle_max:
|
|
7655
|
+
angle_max: float # double
|
|
9386
7656
|
"""
|
|
9387
|
-
|
|
9388
|
-
None( (placo.YawConstraint)arg1) -> float :
|
|
9389
|
-
|
|
9390
|
-
C++ signature :
|
|
9391
|
-
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
7657
|
+
Maximum angle allowable by the yaw constraint (yaw is taken for x-axis of b around z-axis in a)
|
|
9392
7658
|
"""
|
|
9393
7659
|
|
|
9394
7660
|
def configure(
|
|
@@ -9406,13 +7672,9 @@ None( (placo.YawConstraint)arg1) -> float :
|
|
|
9406
7672
|
"""
|
|
9407
7673
|
...
|
|
9408
7674
|
|
|
9409
|
-
name:
|
|
7675
|
+
name: str # std::string
|
|
9410
7676
|
"""
|
|
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})
|
|
7677
|
+
Object name.
|
|
9416
7678
|
"""
|
|
9417
7679
|
|
|
9418
7680
|
priority: str
|