placo 0.9.6__0-cp39-cp39-manylinux_2_28_aarch64.whl → 0.9.7__0-cp39-cp39-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.

@@ -121,13 +121,9 @@ class AvoidSelfCollisionsDynamicsConstraint:
121
121
  """
122
122
  ...
123
123
 
124
- name: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
2949
- """
2950
-
2951
- None( (placo.DynamicsSolverResult)arg1) -> object :
2303
+ qdd: numpy.ndarray # Eigen::VectorXd
2952
2304
 
2953
- C++ signature :
2954
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2955
- """
2305
+ success: bool # bool
2956
2306
 
2957
- success: any
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
- C++ signature :
2972
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2973
- """
2974
-
2975
- tau_contacts: any
2976
- """
2977
-
2978
- None( (placo.DynamicsSolverResult)arg1) -> object :
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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: any
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
- mu: any
3367
- """
3368
-
3369
- None( (placo.Contact)arg1) -> float :
2616
+ frame_index: any # pinocchio::FrameIndex
3370
2617
 
3371
- C++ signature :
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
- C++ signature :
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: any
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: any
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: any
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: any
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
 
@@ -3504,32 +2729,11 @@ class Footstep:
3504
2729
  ) -> any:
3505
2730
  ...
3506
2731
 
3507
- foot_length: any
3508
- """
3509
-
3510
- None( (placo.Footstep)arg1) -> float :
2732
+ foot_length: float # double
3511
2733
 
3512
- C++ signature :
3513
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3514
- """
3515
-
3516
- foot_width: any
3517
- """
3518
-
3519
- None( (placo.Footstep)arg1) -> float :
3520
-
3521
- C++ signature :
3522
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3523
- """
3524
-
3525
- frame: any
3526
- """
3527
-
3528
- None( (placo.Footstep)arg1) -> object :
2734
+ foot_width: float # double
3529
2735
 
3530
- C++ signature :
3531
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3532
- """
2736
+ frame: numpy.ndarray # Eigen::Affine3d
3533
2737
 
3534
2738
  def overlap(
3535
2739
  self,
@@ -3553,14 +2757,7 @@ None( (placo.Footstep)arg1) -> object :
3553
2757
  ) -> None:
3554
2758
  ...
3555
2759
 
3556
- side: any
3557
- """
3558
-
3559
- None( (placo.Footstep)arg1) -> placo.HumanoidRobot_Side :
3560
-
3561
- C++ signature :
3562
- placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3563
- """
2760
+ side: any # placo::humanoid::HumanoidRobot::Side
3564
2761
 
3565
2762
  def support_polygon(
3566
2763
  self,
@@ -3789,13 +2986,6 @@ class FootstepsPlannerRepetitive:
3789
2986
 
3790
2987
  class FrameTask:
3791
2988
  T_world_frame: any
3792
- """
3793
-
3794
- None( (placo.FrameTask)arg1) -> object :
3795
-
3796
- C++ signature :
3797
- Eigen::Transform<double, 3, 2, 0> None(placo::kinematics::FrameTask {lvalue})
3798
- """
3799
2989
 
3800
2990
  def __init__(
3801
2991
  self,
@@ -3834,13 +3024,9 @@ None( (placo.FrameTask)arg1) -> object :
3834
3024
 
3835
3025
 
3836
3026
  class GearTask:
3837
- A: any
3027
+ A: numpy.ndarray # Eigen::MatrixXd
3838
3028
  """
3839
-
3840
- None( (placo.Task)arg1) -> object :
3841
-
3842
- C++ signature :
3843
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
3029
+ Matrix A in the task Ax = b, where x are the joint delta positions.
3844
3030
  """
3845
3031
 
3846
3032
  def __init__(
@@ -3866,13 +3052,9 @@ None( (placo.Task)arg1) -> object :
3866
3052
  """
3867
3053
  ...
3868
3054
 
3869
- b: any
3055
+ b: numpy.ndarray # Eigen::MatrixXd
3870
3056
  """
3871
-
3872
- None( (placo.Task)arg1) -> object :
3873
-
3874
- C++ signature :
3875
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
3057
+ Vector b in the task Ax = b, where x are the joint delta positions.
3876
3058
  """
3877
3059
 
3878
3060
  def configure(
@@ -3906,13 +3088,9 @@ None( (placo.Task)arg1) -> object :
3906
3088
  """
3907
3089
  ...
3908
3090
 
3909
- name: any
3091
+ name: str # std::string
3910
3092
  """
3911
-
3912
- None( (placo.Prioritized)arg1) -> str :
3913
-
3914
- C++ signature :
3915
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
3093
+ Object name.
3916
3094
  """
3917
3095
 
3918
3096
  priority: str
@@ -3950,14 +3128,7 @@ class HumanoidParameters:
3950
3128
  ) -> None:
3951
3129
  ...
3952
3130
 
3953
- dcm_offset_polygon: any
3954
- """
3955
-
3956
- None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
3957
-
3958
- C++ signature :
3959
- 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})
3960
- """
3131
+ dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3961
3132
 
3962
3133
  def double_support_duration(
3963
3134
  self,
@@ -3967,13 +3138,9 @@ None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
3967
3138
  """
3968
3139
  ...
3969
3140
 
3970
- double_support_ratio: any
3141
+ double_support_ratio: float # double
3971
3142
  """
3972
-
3973
- None( (placo.HumanoidParameters)arg1) -> float :
3974
-
3975
- C++ signature :
3976
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3143
+ Duration ratio between single support and double support.
3977
3144
  """
3978
3145
 
3979
3146
  def double_support_timesteps(
@@ -4001,49 +3168,29 @@ None( (placo.HumanoidParameters)arg1) -> float :
4001
3168
  """
4002
3169
  ...
4003
3170
 
4004
- feet_spacing: any
3171
+ feet_spacing: float # double
4005
3172
  """
4006
-
4007
- None( (placo.HumanoidParameters)arg1) -> float :
4008
-
4009
- C++ signature :
4010
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3173
+ Lateral spacing between feet [m].
4011
3174
  """
4012
3175
 
4013
- foot_length: any
3176
+ foot_length: float # double
4014
3177
  """
4015
-
4016
- None( (placo.HumanoidParameters)arg1) -> float :
4017
-
4018
- C++ signature :
4019
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3178
+ Foot length [m].
4020
3179
  """
4021
3180
 
4022
- foot_width: any
3181
+ foot_width: float # double
4023
3182
  """
4024
-
4025
- None( (placo.HumanoidParameters)arg1) -> float :
4026
-
4027
- C++ signature :
4028
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3183
+ Foot width [m].
4029
3184
  """
4030
3185
 
4031
- foot_zmp_target_x: any
3186
+ foot_zmp_target_x: float # double
4032
3187
  """
4033
-
4034
- None( (placo.HumanoidParameters)arg1) -> float :
4035
-
4036
- C++ signature :
4037
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3188
+ Target offset for the ZMP x reference trajectory in the foot frame [m].
4038
3189
  """
4039
3190
 
4040
- foot_zmp_target_y: any
3191
+ foot_zmp_target_y: float # double
4041
3192
  """
4042
-
4043
- None( (placo.HumanoidParameters)arg1) -> float :
4044
-
4045
- C++ signature :
4046
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3193
+ Target offset for the ZMP x reference trajectory in the foot frame, positive is "outward" [m].
4047
3194
  """
4048
3195
 
4049
3196
  def has_double_support(
@@ -4054,40 +3201,21 @@ None( (placo.HumanoidParameters)arg1) -> float :
4054
3201
  """
4055
3202
  ...
4056
3203
 
4057
- op_space_polygon: any
4058
- """
4059
-
4060
- None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
4061
-
4062
- C++ signature :
4063
- 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})
4064
- """
3204
+ op_space_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
4065
3205
 
4066
- planned_timesteps: any
3206
+ planned_timesteps: int # int
4067
3207
  """
4068
-
4069
- None( (placo.HumanoidParameters)arg1) -> int :
4070
-
4071
- C++ signature :
4072
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3208
+ Planning horizon for the CoM trajectory.
4073
3209
  """
4074
3210
 
4075
- single_support_duration: any
3211
+ single_support_duration: float # double
4076
3212
  """
4077
-
4078
- None( (placo.HumanoidParameters)arg1) -> float :
4079
-
4080
- C++ signature :
4081
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3213
+ Single support duration [s].
4082
3214
  """
4083
3215
 
4084
- single_support_timesteps: any
3216
+ single_support_timesteps: int # int
4085
3217
  """
4086
-
4087
- None( (placo.HumanoidParameters)arg1) -> int :
4088
-
4089
- C++ signature :
4090
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3218
+ Number of timesteps for one single support.
4091
3219
  """
4092
3220
 
4093
3221
  def startend_double_support_duration(
@@ -4098,13 +3226,9 @@ None( (placo.HumanoidParameters)arg1) -> int :
4098
3226
  """
4099
3227
  ...
4100
3228
 
4101
- startend_double_support_ratio: any
3229
+ startend_double_support_ratio: float # double
4102
3230
  """
4103
-
4104
- None( (placo.HumanoidParameters)arg1) -> float :
4105
-
4106
- C++ signature :
4107
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3231
+ Duration ratio between single support and start/end double support.
4108
3232
  """
4109
3233
 
4110
3234
  def startend_double_support_timesteps(
@@ -4115,103 +3239,59 @@ None( (placo.HumanoidParameters)arg1) -> float :
4115
3239
  """
4116
3240
  ...
4117
3241
 
4118
- walk_com_height: any
3242
+ walk_com_height: float # double
4119
3243
  """
4120
-
4121
- None( (placo.HumanoidParameters)arg1) -> float :
4122
-
4123
- C++ signature :
4124
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3244
+ Target CoM height while walking [m].
4125
3245
  """
4126
3246
 
4127
- walk_dtheta_spacing: any
3247
+ walk_dtheta_spacing: float # double
4128
3248
  """
4129
-
4130
- None( (placo.HumanoidParameters)arg1) -> float :
4131
-
4132
- C++ signature :
4133
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3249
+ How much we need to space the feet per dtheta [m/rad].
4134
3250
  """
4135
3251
 
4136
- walk_foot_height: any
3252
+ walk_foot_height: float # double
4137
3253
  """
4138
-
4139
- None( (placo.HumanoidParameters)arg1) -> float :
4140
-
4141
- C++ signature :
4142
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3254
+ How height the feet are rising while walking [m].
4143
3255
  """
4144
3256
 
4145
- walk_foot_rise_ratio: any
3257
+ walk_foot_rise_ratio: float # double
4146
3258
  """
4147
-
4148
- None( (placo.HumanoidParameters)arg1) -> float :
4149
-
4150
- C++ signature :
4151
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3259
+ ratio of time spent at foot height during the step
4152
3260
  """
4153
3261
 
4154
- walk_max_dtheta: any
3262
+ walk_max_dtheta: float # double
4155
3263
  """
4156
-
4157
- None( (placo.HumanoidParameters)arg1) -> float :
4158
-
4159
- C++ signature :
4160
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3264
+ Maximum step (yaw)
4161
3265
  """
4162
3266
 
4163
- walk_max_dx_backward: any
3267
+ walk_max_dx_backward: float # double
4164
3268
  """
4165
-
4166
- None( (placo.HumanoidParameters)arg1) -> float :
4167
-
4168
- C++ signature :
4169
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3269
+ Maximum step (backward)
4170
3270
  """
4171
3271
 
4172
- walk_max_dx_forward: any
3272
+ walk_max_dx_forward: float # double
4173
3273
  """
4174
-
4175
- None( (placo.HumanoidParameters)arg1) -> float :
4176
-
4177
- C++ signature :
4178
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3274
+ Maximum step (forward)
4179
3275
  """
4180
3276
 
4181
- walk_max_dy: any
3277
+ walk_max_dy: float # double
4182
3278
  """
4183
-
4184
- None( (placo.HumanoidParameters)arg1) -> float :
4185
-
4186
- C++ signature :
4187
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3279
+ Maximum step (lateral)
4188
3280
  """
4189
3281
 
4190
- walk_trunk_pitch: any
3282
+ walk_trunk_pitch: float # double
4191
3283
  """
4192
-
4193
- None( (placo.HumanoidParameters)arg1) -> float :
4194
-
4195
- C++ signature :
4196
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3284
+ Trunk pitch while walking [rad].
4197
3285
  """
4198
3286
 
4199
- zmp_margin: any
3287
+ zmp_margin: float # double
4200
3288
  """
4201
-
4202
- None( (placo.HumanoidParameters)arg1) -> float :
4203
-
4204
- C++ signature :
4205
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3289
+ Margin for the ZMP to live in the support polygon [m].
4206
3290
  """
4207
3291
 
4208
- zmp_reference_weight: any
3292
+ zmp_reference_weight: float # double
4209
3293
  """
4210
-
4211
- None( (placo.HumanoidParameters)arg1) -> float :
4212
-
4213
- C++ signature :
4214
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3294
+ Weight for ZMP reference in the solver.
4215
3295
  """
4216
3296
 
4217
3297
 
@@ -4241,13 +3321,9 @@ class HumanoidRobot:
4241
3321
  """
4242
3322
  ...
4243
3323
 
4244
- collision_model: any
3324
+ collision_model: any # pinocchio::GeometryModel
4245
3325
  """
4246
-
4247
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4248
-
4249
- C++ signature :
4250
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3326
+ Pinocchio collision model.
4251
3327
  """
4252
3328
 
4253
3329
  def com_jacobian(
@@ -4301,7 +3377,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4301
3377
  """
4302
3378
  Computes all minimum distances between current collision pairs.
4303
3379
 
4304
- :return: <Element 'para' at 0xff87f0834770>
3380
+ :return: <Element 'para' at 0xffa8911a43b0>
4305
3381
  """
4306
3382
  ...
4307
3383
 
@@ -4333,7 +3409,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4333
3409
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4334
3410
 
4335
3411
  :param any frame: the frame for which we want the jacobian
4336
- :return: <Element 'para' at 0xff87f082dc70>
3412
+ :return: <Element 'para' at 0xffa89118ec70>
4337
3413
  """
4338
3414
  ...
4339
3415
 
@@ -4346,7 +3422,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4346
3422
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4347
3423
 
4348
3424
  :param any frame: the frame for which we want the jacobian time variation
4349
- :return: <Element 'para' at 0xff87f082a270>
3425
+ :return: <Element 'para' at 0xffa8911911d0>
4350
3426
  """
4351
3427
  ...
4352
3428
 
@@ -4591,13 +3667,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4591
3667
  """
4592
3668
  ...
4593
3669
 
4594
- model: any
3670
+ model: any # pinocchio::Model
4595
3671
  """
4596
-
4597
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4598
-
4599
- C++ signature :
4600
- pinocchio::ModelTpl<double, 0, pinocchio::JointCollectionDefaultTpl> {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3672
+ Pinocchio model.
4601
3673
  """
4602
3674
 
4603
3675
  def neutral_state(
@@ -4652,7 +3724,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4652
3724
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4653
3725
 
4654
3726
  :param bool stop_at_first: whether to stop at the first collision found
4655
- :return: <Element 'para' at 0xff87f0834e50>
3727
+ :return: <Element 'para' at 0xffa8911a4ef0>
4656
3728
  """
4657
3729
  ...
4658
3730
 
@@ -4806,13 +3878,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4806
3878
  """
4807
3879
  ...
4808
3880
 
4809
- state: any
3881
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
4810
3882
  """
4811
-
4812
- None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4813
-
4814
- C++ signature :
4815
- placo::model::RobotWrapper::State {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3883
+ Robot's current state.
4816
3884
  """
4817
3885
 
4818
3886
  def static_gravity_compensation_torques(
@@ -4830,22 +3898,14 @@ None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4830
3898
  ) -> dict:
4831
3899
  ...
4832
3900
 
4833
- support_is_both: any
3901
+ support_is_both: bool # bool
4834
3902
  """
4835
-
4836
- None( (placo.HumanoidRobot)arg1) -> bool :
4837
-
4838
- C++ signature :
4839
- bool {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3903
+ Are both feet supporting the robot.
4840
3904
  """
4841
3905
 
4842
- support_side: any
3906
+ support_side: any # placo::humanoid::HumanoidRobot::Side
4843
3907
  """
4844
-
4845
- None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4846
-
4847
- C++ signature :
4848
- placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3908
+ The current side (left or right) associated with T_world_support.
4849
3909
  """
4850
3910
 
4851
3911
  def torques_from_acceleration_with_fixed_frame(
@@ -4906,13 +3966,9 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4906
3966
  """
4907
3967
  ...
4908
3968
 
4909
- visual_model: any
3969
+ visual_model: any # pinocchio::GeometryModel
4910
3970
  """
4911
-
4912
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4913
-
4914
- C++ signature :
4915
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3971
+ Pinocchio visual model.
4916
3972
  """
4917
3973
 
4918
3974
  def zmp(
@@ -5011,31 +4067,19 @@ class Integrator:
5011
4067
  """
5012
4068
  Integrator can be used to efficiently build expressions and values over a decision variable that is integrated over time with a given linear system.
5013
4069
  """
5014
- A: any
4070
+ A: numpy.ndarray # Eigen::MatrixXd
5015
4071
  """
5016
-
5017
- None( (placo.Integrator)arg1) -> object :
5018
-
5019
- C++ signature :
5020
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4072
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5021
4073
  """
5022
4074
 
5023
- B: any
4075
+ B: numpy.ndarray # Eigen::MatrixXd
5024
4076
  """
5025
-
5026
- None( (placo.Integrator)arg1) -> object :
5027
-
5028
- C++ signature :
5029
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4077
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5030
4078
  """
5031
4079
 
5032
- M: any
4080
+ M: numpy.ndarray # Eigen::MatrixXd
5033
4081
  """
5034
-
5035
- None( (placo.Integrator)arg1) -> object :
5036
-
5037
- C++ signature :
5038
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4082
+ The continuous system matrix.
5039
4083
  """
5040
4084
 
5041
4085
  def __init__(
@@ -5069,13 +4113,9 @@ None( (placo.Integrator)arg1) -> object :
5069
4113
  """
5070
4114
  ...
5071
4115
 
5072
- final_transition_matrix: any
4116
+ final_transition_matrix: numpy.ndarray # Eigen::MatrixXd
5073
4117
  """
5074
-
5075
- None( (placo.Integrator)arg1) -> object :
5076
-
5077
- C++ signature :
5078
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4118
+ Caching the discrete matrix for the last step.
5079
4119
  """
5080
4120
 
5081
4121
  def get_trajectory(
@@ -5086,13 +4126,9 @@ None( (placo.Integrator)arg1) -> object :
5086
4126
  """
5087
4127
  ...
5088
4128
 
5089
- t_start: any
4129
+ t_start: float # double
5090
4130
  """
5091
-
5092
- None( (placo.Integrator)arg1) -> float :
5093
-
5094
- C++ signature :
5095
- double {lvalue} None(placo::problem::Integrator {lvalue})
4131
+ Time offset for the trajectory.
5096
4132
  """
5097
4133
 
5098
4134
  @staticmethod
@@ -5145,13 +4181,9 @@ class IntegratorTrajectory:
5145
4181
 
5146
4182
 
5147
4183
  class JointSpaceHalfSpacesConstraint:
5148
- A: any
4184
+ A: numpy.ndarray # Eigen::MatrixXd
5149
4185
  """
5150
-
5151
- None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5152
-
5153
- C++ signature :
5154
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::JointSpaceHalfSpacesConstraint {lvalue})
4186
+ Matrix A in Aq <= b.
5155
4187
  """
5156
4188
 
5157
4189
  def __init__(
@@ -5164,13 +4196,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5164
4196
  """
5165
4197
  ...
5166
4198
 
5167
- b: any
4199
+ b: numpy.ndarray # Eigen::VectorXd
5168
4200
  """
5169
-
5170
- None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5171
-
5172
- C++ signature :
5173
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::kinematics::JointSpaceHalfSpacesConstraint {lvalue})
4201
+ Vector b in Aq <= b.
5174
4202
  """
5175
4203
 
5176
4204
  def configure(
@@ -5188,13 +4216,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5188
4216
  """
5189
4217
  ...
5190
4218
 
5191
- name: any
4219
+ name: str # std::string
5192
4220
  """
5193
-
5194
- None( (placo.Prioritized)arg1) -> str :
5195
-
5196
- C++ signature :
5197
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4221
+ Object name.
5198
4222
  """
5199
4223
 
5200
4224
  priority: str
@@ -5204,13 +4228,9 @@ None( (placo.Prioritized)arg1) -> str :
5204
4228
 
5205
4229
 
5206
4230
  class JointsTask:
5207
- A: any
4231
+ A: numpy.ndarray # Eigen::MatrixXd
5208
4232
  """
5209
-
5210
- None( (placo.Task)arg1) -> object :
5211
-
5212
- C++ signature :
5213
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4233
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5214
4234
  """
5215
4235
 
5216
4236
  def __init__(
@@ -5221,13 +4241,9 @@ None( (placo.Task)arg1) -> object :
5221
4241
  """
5222
4242
  ...
5223
4243
 
5224
- b: any
4244
+ b: numpy.ndarray # Eigen::MatrixXd
5225
4245
  """
5226
-
5227
- None( (placo.Task)arg1) -> object :
5228
-
5229
- C++ signature :
5230
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4246
+ Vector b in the task Ax = b, where x are the joint delta positions.
5231
4247
  """
5232
4248
 
5233
4249
  def configure(
@@ -5272,13 +4288,9 @@ None( (placo.Task)arg1) -> object :
5272
4288
  """
5273
4289
  ...
5274
4290
 
5275
- name: any
4291
+ name: str # std::string
5276
4292
  """
5277
-
5278
- None( (placo.Prioritized)arg1) -> str :
5279
-
5280
- C++ signature :
5281
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4293
+ Object name.
5282
4294
  """
5283
4295
 
5284
4296
  priority: str
@@ -5334,13 +4346,9 @@ class KinematicsConstraint:
5334
4346
  """
5335
4347
  ...
5336
4348
 
5337
- name: any
4349
+ name: str # std::string
5338
4350
  """
5339
-
5340
- None( (placo.Prioritized)arg1) -> str :
5341
-
5342
- C++ signature :
5343
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4351
+ Object name.
5344
4352
  """
5345
4353
 
5346
4354
  priority: str
@@ -5350,13 +4358,9 @@ None( (placo.Prioritized)arg1) -> str :
5350
4358
 
5351
4359
 
5352
4360
  class KinematicsSolver:
5353
- N: any
4361
+ N: int # int
5354
4362
  """
5355
-
5356
- None( (placo.KinematicsSolver)arg1) -> int :
5357
-
5358
- C++ signature :
5359
- int {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4363
+ Size of the problem (number of variables)
5360
4364
  """
5361
4365
 
5362
4366
  def __init__(
@@ -5670,13 +4674,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
5670
4674
  """
5671
4675
  ...
5672
4676
 
5673
- dt: any
4677
+ dt: float # double
5674
4678
  """
5675
-
5676
- None( (placo.KinematicsSolver)arg1) -> float :
5677
-
5678
- C++ signature :
5679
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4679
+ solver dt (for speeds limiting)
5680
4680
  """
5681
4681
 
5682
4682
  def dump_status(
@@ -5725,13 +4725,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5725
4725
  """
5726
4726
  ...
5727
4727
 
5728
- problem: any
4728
+ problem: Problem # placo::problem::Problem
5729
4729
  """
5730
-
5731
- None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5732
-
5733
- C++ signature :
5734
- placo::problem::Problem {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4730
+ The underlying QP problem.
5735
4731
  """
5736
4732
 
5737
4733
  def remove_constraint(
@@ -5756,22 +4752,14 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5756
4752
  """
5757
4753
  ...
5758
4754
 
5759
- robot: any
4755
+ robot: RobotWrapper # placo::model::RobotWrapper
5760
4756
  """
5761
-
5762
- None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5763
-
5764
- C++ signature :
5765
- placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
4757
+ The robot controlled by this solver.
5766
4758
  """
5767
4759
 
5768
- scale: any
4760
+ scale: float # double
5769
4761
  """
5770
-
5771
- None( (placo.KinematicsSolver)arg1) -> float :
5772
-
5773
- C++ signature :
5774
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4762
+ scale obtained when using tasks scaling
5775
4763
  """
5776
4764
 
5777
4765
  def solve(
@@ -5806,13 +4794,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5806
4794
 
5807
4795
 
5808
4796
  class KineticEnergyRegularizationTask:
5809
- A: any
4797
+ A: numpy.ndarray # Eigen::MatrixXd
5810
4798
  """
5811
-
5812
- None( (placo.Task)arg1) -> object :
5813
-
5814
- C++ signature :
5815
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4799
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5816
4800
  """
5817
4801
 
5818
4802
  def __init__(
@@ -5820,13 +4804,9 @@ None( (placo.Task)arg1) -> object :
5820
4804
  ) -> None:
5821
4805
  ...
5822
4806
 
5823
- b: any
4807
+ b: numpy.ndarray # Eigen::MatrixXd
5824
4808
  """
5825
-
5826
- None( (placo.Task)arg1) -> object :
5827
-
5828
- C++ signature :
5829
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4809
+ Vector b in the task Ax = b, where x are the joint delta positions.
5830
4810
  """
5831
4811
 
5832
4812
  def configure(
@@ -5860,13 +4840,9 @@ None( (placo.Task)arg1) -> object :
5860
4840
  """
5861
4841
  ...
5862
4842
 
5863
- name: any
4843
+ name: str # std::string
5864
4844
  """
5865
-
5866
- None( (placo.Prioritized)arg1) -> str :
5867
-
5868
- C++ signature :
5869
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4845
+ Object name.
5870
4846
  """
5871
4847
 
5872
4848
  priority: str
@@ -5926,14 +4902,7 @@ class LIPM:
5926
4902
  ) -> Expression:
5927
4903
  ...
5928
4904
 
5929
- dt: any
5930
- """
5931
-
5932
- None( (placo.LIPM)arg1) -> float :
5933
-
5934
- C++ signature :
5935
- double {lvalue} None(placo::humanoid::LIPM {lvalue})
5936
- """
4905
+ dt: float # double
5937
4906
 
5938
4907
  def dzmp(
5939
4908
  self,
@@ -5963,31 +4932,10 @@ None( (placo.LIPM)arg1) -> float :
5963
4932
  ...
5964
4933
 
5965
4934
  t_end: any
5966
- """
5967
-
5968
- None( (placo.LIPM)arg1) -> float :
5969
4935
 
5970
- C++ signature :
5971
- double None(placo::humanoid::LIPM {lvalue})
5972
- """
5973
-
5974
- t_start: any
5975
- """
5976
-
5977
- None( (placo.LIPM)arg1) -> float :
5978
-
5979
- C++ signature :
5980
- double {lvalue} None(placo::humanoid::LIPM {lvalue})
5981
- """
5982
-
5983
- timesteps: any
5984
- """
5985
-
5986
- None( (placo.LIPM)arg1) -> int :
4936
+ t_start: float # double
5987
4937
 
5988
- C++ signature :
5989
- int {lvalue} None(placo::humanoid::LIPM {lvalue})
5990
- """
4938
+ timesteps: int # int
5991
4939
 
5992
4940
  def vel(
5993
4941
  self,
@@ -5995,41 +4943,13 @@ None( (placo.LIPM)arg1) -> int :
5995
4943
  ) -> Expression:
5996
4944
  ...
5997
4945
 
5998
- x: any
5999
- """
6000
-
6001
- None( (placo.LIPM)arg1) -> placo.Integrator :
6002
-
6003
- C++ signature :
6004
- placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
6005
- """
6006
-
6007
- x_var: any
6008
- """
6009
-
6010
- None( (placo.LIPM)arg1) -> object :
6011
-
6012
- C++ signature :
6013
- placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
6014
- """
6015
-
6016
- y: any
6017
- """
6018
-
6019
- None( (placo.LIPM)arg1) -> placo.Integrator :
4946
+ x: Integrator # placo::problem::Integrator
6020
4947
 
6021
- C++ signature :
6022
- placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
6023
- """
4948
+ x_var: Variable # placo::problem::Variable
6024
4949
 
6025
- y_var: any
6026
- """
6027
-
6028
- None( (placo.LIPM)arg1) -> object :
4950
+ y: Integrator # placo::problem::Integrator
6029
4951
 
6030
- C++ signature :
6031
- placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
6032
- """
4952
+ y_var: Variable # placo::problem::Variable
6033
4953
 
6034
4954
  def zmp(
6035
4955
  self,
@@ -6092,13 +5012,9 @@ class LIPMTrajectory:
6092
5012
 
6093
5013
 
6094
5014
  class LineContact:
6095
- R_world_surface: any
5015
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6096
5016
  """
6097
-
6098
- None( (placo.PointContact)arg1) -> numpy.ndarray :
6099
-
6100
- C++ signature :
6101
- Eigen::Matrix<double, 3, 3, 0, 3, 3> None(placo::dynamics::PointContact {lvalue})
5017
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6102
5018
  """
6103
5019
 
6104
5020
  def __init__(
@@ -6111,31 +5027,19 @@ None( (placo.PointContact)arg1) -> numpy.ndarray :
6111
5027
  """
6112
5028
  ...
6113
5029
 
6114
- active: any
5030
+ active: bool # bool
6115
5031
  """
6116
-
6117
- None( (placo.Contact)arg1) -> bool :
6118
-
6119
- C++ signature :
6120
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5032
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
6121
5033
  """
6122
5034
 
6123
- length: any
5035
+ length: float # double
6124
5036
  """
6125
-
6126
- None( (placo.LineContact)arg1) -> float :
6127
-
6128
- C++ signature :
6129
- double {lvalue} None(placo::dynamics::LineContact {lvalue})
5037
+ Rectangular contact length along local x-axis.
6130
5038
  """
6131
5039
 
6132
- mu: any
5040
+ mu: float # double
6133
5041
  """
6134
-
6135
- None( (placo.Contact)arg1) -> float :
6136
-
6137
- C++ signature :
6138
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5042
+ Coefficient of friction (if relevant)
6139
5043
  """
6140
5044
 
6141
5045
  def orientation_task(
@@ -6148,49 +5052,29 @@ None( (placo.Contact)arg1) -> float :
6148
5052
  ) -> DynamicsPositionTask:
6149
5053
  ...
6150
5054
 
6151
- unilateral: any
5055
+ unilateral: bool # bool
6152
5056
  """
6153
-
6154
- None( (placo.LineContact)arg1) -> bool :
6155
-
6156
- C++ signature :
6157
- bool {lvalue} None(placo::dynamics::LineContact {lvalue})
5057
+ true for unilateral contact with the ground
6158
5058
  """
6159
5059
 
6160
- weight_forces: any
5060
+ weight_forces: float # double
6161
5061
  """
6162
-
6163
- None( (placo.Contact)arg1) -> float :
6164
-
6165
- C++ signature :
6166
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5062
+ Weight of forces for the optimization (if relevant)
6167
5063
  """
6168
5064
 
6169
- weight_moments: any
5065
+ weight_moments: float # double
6170
5066
  """
6171
-
6172
- None( (placo.Contact)arg1) -> float :
6173
-
6174
- C++ signature :
6175
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5067
+ Weight of moments for optimization (if relevant)
6176
5068
  """
6177
5069
 
6178
- weight_tangentials: any
5070
+ weight_tangentials: float # double
6179
5071
  """
6180
-
6181
- None( (placo.Contact)arg1) -> float :
6182
-
6183
- C++ signature :
6184
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5072
+ Extra cost for tangential forces.
6185
5073
  """
6186
5074
 
6187
- wrench: any
5075
+ wrench: numpy.ndarray # Eigen::VectorXd
6188
5076
  """
6189
-
6190
- None( (placo.Contact)arg1) -> object :
6191
-
6192
- C++ signature :
6193
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
5077
+ Wrench populated after the DynamicsSolver::solve call.
6194
5078
  """
6195
5079
 
6196
5080
  def zmp(
@@ -6203,13 +5087,9 @@ None( (placo.Contact)arg1) -> object :
6203
5087
 
6204
5088
 
6205
5089
  class ManipulabilityTask:
6206
- A: any
5090
+ A: numpy.ndarray # Eigen::MatrixXd
6207
5091
  """
6208
-
6209
- None( (placo.Task)arg1) -> object :
6210
-
6211
- C++ signature :
6212
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5092
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6213
5093
  """
6214
5094
 
6215
5095
  def __init__(
@@ -6220,13 +5100,9 @@ None( (placo.Task)arg1) -> object :
6220
5100
  ) -> any:
6221
5101
  ...
6222
5102
 
6223
- b: any
5103
+ b: numpy.ndarray # Eigen::MatrixXd
6224
5104
  """
6225
-
6226
- None( (placo.Task)arg1) -> object :
6227
-
6228
- C++ signature :
6229
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5105
+ Vector b in the task Ax = b, where x are the joint delta positions.
6230
5106
  """
6231
5107
 
6232
5108
  def configure(
@@ -6261,39 +5137,20 @@ None( (placo.Task)arg1) -> object :
6261
5137
  ...
6262
5138
 
6263
5139
  lambda_: any
6264
- """
6265
-
6266
- None( (placo.ManipulabilityTask)arg1) -> float :
6267
-
6268
- C++ signature :
6269
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
6270
- """
6271
5140
 
6272
- manipulability: any
5141
+ manipulability: float # double
6273
5142
  """
6274
-
6275
- None( (placo.ManipulabilityTask)arg1) -> float :
6276
-
6277
- C++ signature :
6278
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5143
+ The last computed manipulability value.
6279
5144
  """
6280
5145
 
6281
- minimize: any
5146
+ minimize: bool # bool
6282
5147
  """
6283
-
6284
- None( (placo.ManipulabilityTask)arg1) -> bool :
6285
-
6286
- C++ signature :
6287
- bool {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5148
+ Should the manipulability be minimized (can be useful to find singularities)
6288
5149
  """
6289
5150
 
6290
- name: any
5151
+ name: str # std::string
6291
5152
  """
6292
-
6293
- None( (placo.Prioritized)arg1) -> str :
6294
-
6295
- C++ signature :
6296
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5153
+ Object name.
6297
5154
  """
6298
5155
 
6299
5156
  priority: str
@@ -6311,22 +5168,14 @@ None( (placo.Prioritized)arg1) -> str :
6311
5168
 
6312
5169
 
6313
5170
  class OrientationTask:
6314
- A: any
5171
+ A: numpy.ndarray # Eigen::MatrixXd
6315
5172
  """
6316
-
6317
- None( (placo.Task)arg1) -> object :
6318
-
6319
- C++ signature :
6320
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5173
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6321
5174
  """
6322
5175
 
6323
- R_world_frame: any
5176
+ R_world_frame: numpy.ndarray # Eigen::Matrix3d
6324
5177
  """
6325
-
6326
- None( (placo.OrientationTask)arg1) -> object :
6327
-
6328
- C++ signature :
6329
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5178
+ Target frame orientation in the world.
6330
5179
  """
6331
5180
 
6332
5181
  def __init__(
@@ -6339,13 +5188,9 @@ None( (placo.OrientationTask)arg1) -> object :
6339
5188
  """
6340
5189
  ...
6341
5190
 
6342
- b: any
5191
+ b: numpy.ndarray # Eigen::MatrixXd
6343
5192
  """
6344
-
6345
- None( (placo.Task)arg1) -> object :
6346
-
6347
- C++ signature :
6348
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5193
+ Vector b in the task Ax = b, where x are the joint delta positions.
6349
5194
  """
6350
5195
 
6351
5196
  def configure(
@@ -6379,31 +5224,19 @@ None( (placo.Task)arg1) -> object :
6379
5224
  """
6380
5225
  ...
6381
5226
 
6382
- frame_index: any
5227
+ frame_index: any # pinocchio::FrameIndex
6383
5228
  """
6384
-
6385
- None( (placo.OrientationTask)arg1) -> int :
6386
-
6387
- C++ signature :
6388
- unsigned long {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5229
+ Frame.
6389
5230
  """
6390
5231
 
6391
- mask: any
5232
+ mask: AxisesMask # placo::tools::AxisesMask
6392
5233
  """
6393
-
6394
- None( (placo.OrientationTask)arg1) -> placo.AxisesMask :
6395
-
6396
- C++ signature :
6397
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5234
+ Mask.
6398
5235
  """
6399
5236
 
6400
- name: any
5237
+ name: str # std::string
6401
5238
  """
6402
-
6403
- None( (placo.Prioritized)arg1) -> str :
6404
-
6405
- C++ signature :
6406
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5239
+ Object name.
6407
5240
  """
6408
5241
 
6409
5242
  priority: str
@@ -6421,13 +5254,9 @@ None( (placo.Prioritized)arg1) -> str :
6421
5254
 
6422
5255
 
6423
5256
  class PointContact:
6424
- R_world_surface: any
5257
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6425
5258
  """
6426
-
6427
- None( (placo.PointContact)arg1) -> object :
6428
-
6429
- C++ signature :
6430
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::PointContact {lvalue})
5259
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6431
5260
  """
6432
5261
 
6433
5262
  def __init__(
@@ -6440,22 +5269,14 @@ None( (placo.PointContact)arg1) -> object :
6440
5269
  """
6441
5270
  ...
6442
5271
 
6443
- active: any
5272
+ active: bool # bool
6444
5273
  """
6445
-
6446
- None( (placo.Contact)arg1) -> bool :
6447
-
6448
- C++ signature :
6449
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5274
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
6450
5275
  """
6451
5276
 
6452
- mu: any
5277
+ mu: float # double
6453
5278
  """
6454
-
6455
- None( (placo.Contact)arg1) -> float :
6456
-
6457
- C++ signature :
6458
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5279
+ Coefficient of friction (if relevant)
6459
5280
  """
6460
5281
 
6461
5282
  def position_task(
@@ -6463,49 +5284,29 @@ None( (placo.Contact)arg1) -> float :
6463
5284
  ) -> DynamicsPositionTask:
6464
5285
  ...
6465
5286
 
6466
- unilateral: any
5287
+ unilateral: bool # bool
6467
5288
  """
6468
-
6469
- None( (placo.PointContact)arg1) -> bool :
6470
-
6471
- C++ signature :
6472
- bool {lvalue} None(placo::dynamics::PointContact {lvalue})
5289
+ true for unilateral contact with the ground
6473
5290
  """
6474
5291
 
6475
- weight_forces: any
5292
+ weight_forces: float # double
6476
5293
  """
6477
-
6478
- None( (placo.Contact)arg1) -> float :
6479
-
6480
- C++ signature :
6481
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5294
+ Weight of forces for the optimization (if relevant)
6482
5295
  """
6483
5296
 
6484
- weight_moments: any
5297
+ weight_moments: float # double
6485
5298
  """
6486
-
6487
- None( (placo.Contact)arg1) -> float :
6488
-
6489
- C++ signature :
6490
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5299
+ Weight of moments for optimization (if relevant)
6491
5300
  """
6492
5301
 
6493
- weight_tangentials: any
5302
+ weight_tangentials: float # double
6494
5303
  """
6495
-
6496
- None( (placo.Contact)arg1) -> float :
6497
-
6498
- C++ signature :
6499
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5304
+ Extra cost for tangential forces.
6500
5305
  """
6501
5306
 
6502
- wrench: any
5307
+ wrench: numpy.ndarray # Eigen::VectorXd
6503
5308
  """
6504
-
6505
- None( (placo.Contact)arg1) -> object :
6506
-
6507
- C++ signature :
6508
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
5309
+ Wrench populated after the DynamicsSolver::solve call.
6509
5310
  """
6510
5311
 
6511
5312
 
@@ -6545,13 +5346,9 @@ class Polynom:
6545
5346
  ) -> any:
6546
5347
  ...
6547
5348
 
6548
- coefficients: any
5349
+ coefficients: numpy.ndarray # Eigen::VectorXd
6549
5350
  """
6550
-
6551
- None( (placo.Polynom)arg1) -> object :
6552
-
6553
- C++ signature :
6554
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::tools::Polynom {lvalue})
5351
+ coefficients, from highest to lowest
6555
5352
  """
6556
5353
 
6557
5354
  @staticmethod
@@ -6583,13 +5380,9 @@ None( (placo.Polynom)arg1) -> object :
6583
5380
 
6584
5381
 
6585
5382
  class PositionTask:
6586
- A: any
5383
+ A: numpy.ndarray # Eigen::MatrixXd
6587
5384
  """
6588
-
6589
- None( (placo.Task)arg1) -> object :
6590
-
6591
- C++ signature :
6592
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5385
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6593
5386
  """
6594
5387
 
6595
5388
  def __init__(
@@ -6602,13 +5395,9 @@ None( (placo.Task)arg1) -> object :
6602
5395
  """
6603
5396
  ...
6604
5397
 
6605
- b: any
5398
+ b: numpy.ndarray # Eigen::MatrixXd
6606
5399
  """
6607
-
6608
- None( (placo.Task)arg1) -> object :
6609
-
6610
- C++ signature :
6611
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5400
+ Vector b in the task Ax = b, where x are the joint delta positions.
6612
5401
  """
6613
5402
 
6614
5403
  def configure(
@@ -6642,31 +5431,19 @@ None( (placo.Task)arg1) -> object :
6642
5431
  """
6643
5432
  ...
6644
5433
 
6645
- frame_index: any
5434
+ frame_index: any # pinocchio::FrameIndex
6646
5435
  """
6647
-
6648
- None( (placo.PositionTask)arg1) -> int :
6649
-
6650
- C++ signature :
6651
- unsigned long {lvalue} None(placo::kinematics::PositionTask {lvalue})
5436
+ Frame.
6652
5437
  """
6653
5438
 
6654
- mask: any
5439
+ mask: AxisesMask # placo::tools::AxisesMask
6655
5440
  """
6656
-
6657
- None( (placo.PositionTask)arg1) -> placo.AxisesMask :
6658
-
6659
- C++ signature :
6660
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::PositionTask {lvalue})
5441
+ Mask.
6661
5442
  """
6662
5443
 
6663
- name: any
5444
+ name: str # std::string
6664
5445
  """
6665
-
6666
- None( (placo.Prioritized)arg1) -> str :
6667
-
6668
- C++ signature :
6669
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5446
+ Object name.
6670
5447
  """
6671
5448
 
6672
5449
  priority: str
@@ -6674,13 +5451,9 @@ None( (placo.Prioritized)arg1) -> str :
6674
5451
  Priority [str]
6675
5452
  """
6676
5453
 
6677
- target_world: any
5454
+ target_world: numpy.ndarray # Eigen::Vector3d
6678
5455
  """
6679
-
6680
- None( (placo.PositionTask)arg1) -> numpy.ndarray :
6681
-
6682
- C++ signature :
6683
- Eigen::Matrix<double, 3, 1, 0, 3, 1> None(placo::kinematics::PositionTask)
5456
+ Target position in the world.
6684
5457
  """
6685
5458
 
6686
5459
  def update(
@@ -6713,13 +5486,9 @@ class Prioritized:
6713
5486
  """
6714
5487
  ...
6715
5488
 
6716
- name: any
5489
+ name: str # std::string
6717
5490
  """
6718
-
6719
- None( (placo.Prioritized)arg1) -> str :
6720
-
6721
- C++ signature :
6722
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5491
+ Object name.
6723
5492
  """
6724
5493
 
6725
5494
  priority: str
@@ -6780,13 +5549,9 @@ class Problem:
6780
5549
  """
6781
5550
  ...
6782
5551
 
6783
- determined_variables: any
5552
+ determined_variables: int # int
6784
5553
  """
6785
-
6786
- None( (placo.Problem)arg1) -> int :
6787
-
6788
- C++ signature :
6789
- int {lvalue} None(placo::problem::Problem {lvalue})
5554
+ Number of determined variables.
6790
5555
  """
6791
5556
 
6792
5557
  def dump_status(
@@ -6794,76 +5559,44 @@ None( (placo.Problem)arg1) -> int :
6794
5559
  ) -> None:
6795
5560
  ...
6796
5561
 
6797
- free_variables: any
5562
+ free_variables: int # int
6798
5563
  """
6799
-
6800
- None( (placo.Problem)arg1) -> int :
6801
-
6802
- C++ signature :
6803
- int {lvalue} None(placo::problem::Problem {lvalue})
5564
+ Number of free variables to solve.
6804
5565
  """
6805
5566
 
6806
- n_equalities: any
5567
+ n_equalities: int # int
6807
5568
  """
6808
-
6809
- None( (placo.Problem)arg1) -> int :
6810
-
6811
- C++ signature :
6812
- int {lvalue} None(placo::problem::Problem {lvalue})
5569
+ Number of equalities.
6813
5570
  """
6814
5571
 
6815
- n_inequalities: any
5572
+ n_inequalities: int # int
6816
5573
  """
6817
-
6818
- None( (placo.Problem)arg1) -> int :
6819
-
6820
- C++ signature :
6821
- int {lvalue} None(placo::problem::Problem {lvalue})
5574
+ Number of inequality constraints.
6822
5575
  """
6823
5576
 
6824
- n_variables: any
5577
+ n_variables: int # int
6825
5578
  """
6826
-
6827
- None( (placo.Problem)arg1) -> int :
6828
-
6829
- C++ signature :
6830
- int {lvalue} None(placo::problem::Problem {lvalue})
5579
+ Number of problem variables that need to be solved.
6831
5580
  """
6832
5581
 
6833
- regularization: any
5582
+ regularization: float # double
6834
5583
  """
6835
-
6836
- None( (placo.Problem)arg1) -> float :
6837
-
6838
- C++ signature :
6839
- double {lvalue} None(placo::problem::Problem {lvalue})
5584
+ Default internal regularization.
6840
5585
  """
6841
5586
 
6842
- rewrite_equalities: any
5587
+ rewrite_equalities: bool # bool
6843
5588
  """
6844
-
6845
- None( (placo.Problem)arg1) -> bool :
6846
-
6847
- C++ signature :
6848
- bool {lvalue} None(placo::problem::Problem {lvalue})
5589
+ If set to true, a QR factorization will be performed on the equality constraints, and the QP will be called with free variables only.
6849
5590
  """
6850
5591
 
6851
- slack_variables: any
5592
+ slack_variables: int # int
6852
5593
  """
6853
-
6854
- None( (placo.Problem)arg1) -> int :
6855
-
6856
- C++ signature :
6857
- int {lvalue} None(placo::problem::Problem {lvalue})
5594
+ Number of slack variables in the solver.
6858
5595
  """
6859
5596
 
6860
- slacks: any
5597
+ slacks: numpy.ndarray # Eigen::VectorXd
6861
5598
  """
6862
-
6863
- None( (placo.Problem)arg1) -> numpy.ndarray :
6864
-
6865
- C++ signature :
6866
- Eigen::Matrix<double, -1, 1, 0, -1, 1> None(placo::problem::Problem)
5599
+ Computed slack variables.
6867
5600
  """
6868
5601
 
6869
5602
  def solve(
@@ -6874,22 +5607,14 @@ None( (placo.Problem)arg1) -> numpy.ndarray :
6874
5607
  """
6875
5608
  ...
6876
5609
 
6877
- use_sparsity: any
5610
+ use_sparsity: bool # bool
6878
5611
  """
6879
-
6880
- None( (placo.Problem)arg1) -> bool :
6881
-
6882
- C++ signature :
6883
- bool {lvalue} None(placo::problem::Problem {lvalue})
5612
+ If set to true, some sparsity optimizations will be performed when building the problem Hessian. This optimization is generally not useful for small problems.
6884
5613
  """
6885
5614
 
6886
- x: any
5615
+ x: numpy.ndarray # Eigen::VectorXd
6887
5616
  """
6888
-
6889
- None( (placo.Problem)arg1) -> object :
6890
-
6891
- C++ signature :
6892
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Problem {lvalue})
5617
+ Computed result.
6893
5618
  """
6894
5619
 
6895
5620
 
@@ -6914,40 +5639,24 @@ class ProblemConstraint:
6914
5639
  """
6915
5640
  ...
6916
5641
 
6917
- expression: any
5642
+ expression: Expression # placo::problem::Expression
6918
5643
  """
6919
-
6920
- None( (placo.ProblemConstraint)arg1) -> object :
6921
-
6922
- C++ signature :
6923
- placo::problem::Expression {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5644
+ The constraint expression (Ax + b)
6924
5645
  """
6925
5646
 
6926
- is_active: any
5647
+ is_active: bool # bool
6927
5648
  """
6928
-
6929
- None( (placo.ProblemConstraint)arg1) -> bool :
6930
-
6931
- C++ signature :
6932
- bool {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5649
+ This flag will be set by the solver if the constraint is active in the optimal solution.
6933
5650
  """
6934
5651
 
6935
- priority: any
5652
+ priority: any # placo::problem::ProblemConstraint::Priority
6936
5653
  """
6937
-
6938
- None( (placo.ProblemConstraint)arg1) -> str :
6939
-
6940
- C++ signature :
6941
- char const* None(placo::problem::ProblemConstraint)
5654
+ Constraint priority.
6942
5655
  """
6943
5656
 
6944
- weight: any
5657
+ weight: float # double
6945
5658
  """
6946
-
6947
- None( (placo.ProblemConstraint)arg1) -> float :
6948
-
6949
- C++ signature :
6950
- double {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5659
+ Constraint weight (for soft constraints)
6951
5660
  """
6952
5661
 
6953
5662
 
@@ -6989,58 +5698,34 @@ class PuppetContact:
6989
5698
  """
6990
5699
  ...
6991
5700
 
6992
- active: any
5701
+ active: bool # bool
6993
5702
  """
6994
-
6995
- None( (placo.Contact)arg1) -> bool :
6996
-
6997
- C++ signature :
6998
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5703
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
6999
5704
  """
7000
5705
 
7001
- mu: any
5706
+ mu: float # double
7002
5707
  """
7003
-
7004
- None( (placo.Contact)arg1) -> float :
7005
-
7006
- C++ signature :
7007
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5708
+ Coefficient of friction (if relevant)
7008
5709
  """
7009
5710
 
7010
- weight_forces: any
5711
+ weight_forces: float # double
7011
5712
  """
7012
-
7013
- None( (placo.Contact)arg1) -> float :
7014
-
7015
- C++ signature :
7016
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5713
+ Weight of forces for the optimization (if relevant)
7017
5714
  """
7018
5715
 
7019
- weight_moments: any
5716
+ weight_moments: float # double
7020
5717
  """
7021
-
7022
- None( (placo.Contact)arg1) -> float :
7023
-
7024
- C++ signature :
7025
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5718
+ Weight of moments for optimization (if relevant)
7026
5719
  """
7027
5720
 
7028
- weight_tangentials: any
5721
+ weight_tangentials: float # double
7029
5722
  """
7030
-
7031
- None( (placo.Contact)arg1) -> float :
7032
-
7033
- C++ signature :
7034
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5723
+ Extra cost for tangential forces.
7035
5724
  """
7036
5725
 
7037
- wrench: any
5726
+ wrench: numpy.ndarray # Eigen::VectorXd
7038
5727
  """
7039
-
7040
- None( (placo.Contact)arg1) -> object :
7041
-
7042
- C++ signature :
7043
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
5728
+ Wrench populated after the DynamicsSolver::solve call.
7044
5729
  """
7045
5730
 
7046
5731
 
@@ -7061,13 +5746,9 @@ class QPError:
7061
5746
 
7062
5747
 
7063
5748
  class RegularizationTask:
7064
- A: any
5749
+ A: numpy.ndarray # Eigen::MatrixXd
7065
5750
  """
7066
-
7067
- None( (placo.Task)arg1) -> object :
7068
-
7069
- C++ signature :
7070
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5751
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7071
5752
  """
7072
5753
 
7073
5754
  def __init__(
@@ -7075,13 +5756,9 @@ None( (placo.Task)arg1) -> object :
7075
5756
  ) -> None:
7076
5757
  ...
7077
5758
 
7078
- b: any
5759
+ b: numpy.ndarray # Eigen::MatrixXd
7079
5760
  """
7080
-
7081
- None( (placo.Task)arg1) -> object :
7082
-
7083
- C++ signature :
7084
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5761
+ Vector b in the task Ax = b, where x are the joint delta positions.
7085
5762
  """
7086
5763
 
7087
5764
  def configure(
@@ -7115,13 +5792,9 @@ None( (placo.Task)arg1) -> object :
7115
5792
  """
7116
5793
  ...
7117
5794
 
7118
- name: any
5795
+ name: str # std::string
7119
5796
  """
7120
-
7121
- None( (placo.Prioritized)arg1) -> str :
7122
-
7123
- C++ signature :
7124
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5797
+ Object name.
7125
5798
  """
7126
5799
 
7127
5800
  priority: str
@@ -7140,13 +5813,6 @@ None( (placo.Prioritized)arg1) -> str :
7140
5813
 
7141
5814
  class RelativeFrameTask:
7142
5815
  T_a_b: any
7143
- """
7144
-
7145
- None( (placo.RelativeFrameTask)arg1) -> object :
7146
-
7147
- C++ signature :
7148
- Eigen::Transform<double, 3, 2, 0> None(placo::kinematics::RelativeFrameTask {lvalue})
7149
- """
7150
5816
 
7151
5817
  def __init__(
7152
5818
  self,
@@ -7187,22 +5853,14 @@ None( (placo.RelativeFrameTask)arg1) -> object :
7187
5853
 
7188
5854
 
7189
5855
  class RelativeOrientationTask:
7190
- A: any
5856
+ A: numpy.ndarray # Eigen::MatrixXd
7191
5857
  """
7192
-
7193
- None( (placo.Task)arg1) -> object :
7194
-
7195
- C++ signature :
7196
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5858
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7197
5859
  """
7198
5860
 
7199
- R_a_b: any
5861
+ R_a_b: numpy.ndarray # Eigen::Matrix3d
7200
5862
  """
7201
-
7202
- None( (placo.RelativeOrientationTask)arg1) -> object :
7203
-
7204
- C++ signature :
7205
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5863
+ Target relative orientation of b in a.
7206
5864
  """
7207
5865
 
7208
5866
  def __init__(
@@ -7216,13 +5874,9 @@ None( (placo.RelativeOrientationTask)arg1) -> object :
7216
5874
  """
7217
5875
  ...
7218
5876
 
7219
- b: any
5877
+ b: numpy.ndarray # Eigen::MatrixXd
7220
5878
  """
7221
-
7222
- None( (placo.Task)arg1) -> object :
7223
-
7224
- C++ signature :
7225
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5879
+ Vector b in the task Ax = b, where x are the joint delta positions.
7226
5880
  """
7227
5881
 
7228
5882
  def configure(
@@ -7256,40 +5910,24 @@ None( (placo.Task)arg1) -> object :
7256
5910
  """
7257
5911
  ...
7258
5912
 
7259
- frame_a: any
5913
+ frame_a: any # pinocchio::FrameIndex
7260
5914
  """
7261
-
7262
- None( (placo.RelativeOrientationTask)arg1) -> int :
7263
-
7264
- C++ signature :
7265
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5915
+ Frame A.
7266
5916
  """
7267
5917
 
7268
- frame_b: any
5918
+ frame_b: any # pinocchio::FrameIndex
7269
5919
  """
7270
-
7271
- None( (placo.RelativeOrientationTask)arg1) -> int :
7272
-
7273
- C++ signature :
7274
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5920
+ Frame B.
7275
5921
  """
7276
5922
 
7277
- mask: any
5923
+ mask: AxisesMask # placo::tools::AxisesMask
7278
5924
  """
7279
-
7280
- None( (placo.RelativeOrientationTask)arg1) -> placo.AxisesMask :
7281
-
7282
- C++ signature :
7283
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5925
+ Mask.
7284
5926
  """
7285
5927
 
7286
- name: any
5928
+ name: str # std::string
7287
5929
  """
7288
-
7289
- None( (placo.Prioritized)arg1) -> str :
7290
-
7291
- C++ signature :
7292
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5930
+ Object name.
7293
5931
  """
7294
5932
 
7295
5933
  priority: str
@@ -7307,13 +5945,9 @@ None( (placo.Prioritized)arg1) -> str :
7307
5945
 
7308
5946
 
7309
5947
  class RelativePositionTask:
7310
- A: any
5948
+ A: numpy.ndarray # Eigen::MatrixXd
7311
5949
  """
7312
-
7313
- None( (placo.Task)arg1) -> object :
7314
-
7315
- C++ signature :
7316
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5950
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7317
5951
  """
7318
5952
 
7319
5953
  def __init__(
@@ -7327,13 +5961,9 @@ None( (placo.Task)arg1) -> object :
7327
5961
  """
7328
5962
  ...
7329
5963
 
7330
- b: any
5964
+ b: numpy.ndarray # Eigen::MatrixXd
7331
5965
  """
7332
-
7333
- None( (placo.Task)arg1) -> object :
7334
-
7335
- C++ signature :
7336
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5966
+ Vector b in the task Ax = b, where x are the joint delta positions.
7337
5967
  """
7338
5968
 
7339
5969
  def configure(
@@ -7367,40 +5997,24 @@ None( (placo.Task)arg1) -> object :
7367
5997
  """
7368
5998
  ...
7369
5999
 
7370
- frame_a: any
6000
+ frame_a: any # pinocchio::FrameIndex
7371
6001
  """
7372
-
7373
- None( (placo.RelativePositionTask)arg1) -> int :
7374
-
7375
- C++ signature :
7376
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6002
+ Frame A.
7377
6003
  """
7378
6004
 
7379
- frame_b: any
6005
+ frame_b: any # pinocchio::FrameIndex
7380
6006
  """
7381
-
7382
- None( (placo.RelativePositionTask)arg1) -> int :
7383
-
7384
- C++ signature :
7385
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6007
+ Frame B.
7386
6008
  """
7387
6009
 
7388
- mask: any
6010
+ mask: AxisesMask # placo::tools::AxisesMask
7389
6011
  """
7390
-
7391
- None( (placo.RelativePositionTask)arg1) -> placo.AxisesMask :
7392
-
7393
- C++ signature :
7394
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6012
+ Mask.
7395
6013
  """
7396
6014
 
7397
- name: any
6015
+ name: str # std::string
7398
6016
  """
7399
-
7400
- None( (placo.Prioritized)arg1) -> str :
7401
-
7402
- C++ signature :
7403
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
6017
+ Object name.
7404
6018
  """
7405
6019
 
7406
6020
  priority: str
@@ -7408,13 +6022,9 @@ None( (placo.Prioritized)arg1) -> str :
7408
6022
  Priority [str]
7409
6023
  """
7410
6024
 
7411
- target: any
6025
+ target: numpy.ndarray # Eigen::Vector3d
7412
6026
  """
7413
-
7414
- None( (placo.RelativePositionTask)arg1) -> object :
7415
-
7416
- C++ signature :
7417
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6027
+ Target position of B in A.
7418
6028
  """
7419
6029
 
7420
6030
  def update(
@@ -7459,13 +6069,9 @@ class RobotWrapper:
7459
6069
  """
7460
6070
  ...
7461
6071
 
7462
- collision_model: any
6072
+ collision_model: any # pinocchio::GeometryModel
7463
6073
  """
7464
-
7465
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
7466
-
7467
- C++ signature :
7468
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6074
+ Pinocchio collision model.
7469
6075
  """
7470
6076
 
7471
6077
  def com_jacobian(
@@ -7506,7 +6112,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7506
6112
  """
7507
6113
  Computes all minimum distances between current collision pairs.
7508
6114
 
7509
- :return: <Element 'para' at 0xff87f0849630>
6115
+ :return: <Element 'para' at 0xffa8911b1d60>
7510
6116
  """
7511
6117
  ...
7512
6118
 
@@ -7519,7 +6125,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7519
6125
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7520
6126
 
7521
6127
  :param any frame: the frame for which we want the jacobian
7522
- :return: <Element 'para' at 0xff87f08328b0>
6128
+ :return: <Element 'para' at 0xffa891196b30>
7523
6129
  """
7524
6130
  ...
7525
6131
 
@@ -7532,7 +6138,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7532
6138
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7533
6139
 
7534
6140
  :param any frame: the frame for which we want the jacobian time variation
7535
- :return: <Element 'para' at 0xff87f0840bd0>
6141
+ :return: <Element 'para' at 0xffa8911a28b0>
7536
6142
  """
7537
6143
  ...
7538
6144
 
@@ -7716,13 +6322,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7716
6322
  """
7717
6323
  ...
7718
6324
 
7719
- model: any
6325
+ model: any # pinocchio::Model
7720
6326
  """
7721
-
7722
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7723
-
7724
- C++ signature :
7725
- pinocchio::ModelTpl<double, 0, pinocchio::JointCollectionDefaultTpl> {lvalue} None(placo::model::RobotWrapper {lvalue})
6327
+ Pinocchio model.
7726
6328
  """
7727
6329
 
7728
6330
  def neutral_state(
@@ -7770,7 +6372,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7770
6372
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7771
6373
 
7772
6374
  :param bool stop_at_first: whether to stop at the first collision found
7773
- :return: <Element 'para' at 0xff87f08495e0>
6375
+ :return: <Element 'para' at 0xffa8911b16d0>
7774
6376
  """
7775
6377
  ...
7776
6378
 
@@ -7918,13 +6520,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7918
6520
  """
7919
6521
  ...
7920
6522
 
7921
- state: any
6523
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
7922
6524
  """
7923
-
7924
- None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7925
-
7926
- C++ signature :
7927
- placo::model::RobotWrapper::State {lvalue} None(placo::model::RobotWrapper {lvalue})
6525
+ Robot's current state.
7928
6526
  """
7929
6527
 
7930
6528
  def static_gravity_compensation_torques(
@@ -7980,13 +6578,9 @@ None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7980
6578
  """
7981
6579
  ...
7982
6580
 
7983
- visual_model: any
6581
+ visual_model: any # pinocchio::GeometryModel
7984
6582
  """
7985
-
7986
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
7987
-
7988
- C++ signature :
7989
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6583
+ Pinocchio visual model.
7990
6584
  """
7991
6585
 
7992
6586
 
@@ -7996,31 +6590,19 @@ class RobotWrapper_State:
7996
6590
  ) -> None:
7997
6591
  ...
7998
6592
 
7999
- q: any
6593
+ q: numpy.ndarray # Eigen::VectorXd
8000
6594
  """
8001
-
8002
- None( (placo.RobotWrapper_State)arg1) -> object :
8003
-
8004
- C++ signature :
8005
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
6595
+ joints configuration $q$
8006
6596
  """
8007
6597
 
8008
- qd: any
6598
+ qd: numpy.ndarray # Eigen::VectorXd
8009
6599
  """
8010
-
8011
- None( (placo.RobotWrapper_State)arg1) -> object :
8012
-
8013
- C++ signature :
8014
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
6600
+ joints velocity $\dot q$
8015
6601
  """
8016
6602
 
8017
- qdd: any
6603
+ qdd: numpy.ndarray # Eigen::VectorXd
8018
6604
  """
8019
-
8020
- None( (placo.RobotWrapper_State)arg1) -> object :
8021
-
8022
- C++ signature :
8023
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
6605
+ joints acceleration $\ddot q$
8024
6606
  """
8025
6607
 
8026
6608
 
@@ -8030,14 +6612,7 @@ class Segment:
8030
6612
  ) -> any:
8031
6613
  ...
8032
6614
 
8033
- end: any
8034
- """
8035
-
8036
- None( (placo.Segment)arg1) -> object :
8037
-
8038
- C++ signature :
8039
- Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::tools::Segment {lvalue})
8040
- """
6615
+ end: numpy.ndarray # Eigen::Vector2d
8041
6616
 
8042
6617
  def half_line_pass_through(
8043
6618
  self,
@@ -8140,14 +6715,7 @@ None( (placo.Segment)arg1) -> object :
8140
6715
  ) -> float:
8141
6716
  ...
8142
6717
 
8143
- start: any
8144
- """
8145
-
8146
- None( (placo.Segment)arg1) -> object :
8147
-
8148
- C++ signature :
8149
- Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::tools::Segment {lvalue})
8150
- """
6718
+ start: numpy.ndarray # Eigen::Vector2d
8151
6719
 
8152
6720
 
8153
6721
  class Sparsity:
@@ -8181,13 +6749,9 @@ class Sparsity:
8181
6749
  """
8182
6750
  ...
8183
6751
 
8184
- intervals: any
6752
+ intervals: list[SparsityInterval] # std::vector<placo::problem::Sparsity::Interval>
8185
6753
  """
8186
-
8187
- None( (placo.Sparsity)arg1) -> numpy.ndarray :
8188
-
8189
- C++ signature :
8190
- Eigen::Matrix<int, -1, -1, 0, -1, -1> None(placo::problem::Sparsity)
6754
+ Intervals of non-sparse columns.
8191
6755
  """
8192
6756
 
8193
6757
  def print_intervals(
@@ -8205,22 +6769,14 @@ class SparsityInterval:
8205
6769
  ) -> None:
8206
6770
  ...
8207
6771
 
8208
- end: any
6772
+ end: int # int
8209
6773
  """
8210
-
8211
- None( (placo.SparsityInterval)arg1) -> int :
8212
-
8213
- C++ signature :
8214
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6774
+ End of interval.
8215
6775
  """
8216
6776
 
8217
- start: any
6777
+ start: int # int
8218
6778
  """
8219
-
8220
- None( (placo.SparsityInterval)arg1) -> int :
8221
-
8222
- C++ signature :
8223
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6779
+ Start of interval.
8224
6780
  """
8225
6781
 
8226
6782
 
@@ -8236,23 +6792,9 @@ class Support:
8236
6792
  ) -> None:
8237
6793
  ...
8238
6794
 
8239
- elapsed_ratio: any
8240
- """
8241
-
8242
- None( (placo.Support)arg1) -> float :
8243
-
8244
- C++ signature :
8245
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8246
- """
8247
-
8248
- end: any
8249
- """
8250
-
8251
- None( (placo.Support)arg1) -> bool :
6795
+ elapsed_ratio: float # double
8252
6796
 
8253
- C++ signature :
8254
- bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8255
- """
6797
+ end: bool # bool
8256
6798
 
8257
6799
  def footstep_frame(
8258
6800
  self,
@@ -8265,14 +6807,7 @@ None( (placo.Support)arg1) -> bool :
8265
6807
  """
8266
6808
  ...
8267
6809
 
8268
- footsteps: any
8269
- """
8270
-
8271
- None( (placo.Support)arg1) -> object :
8272
-
8273
- C++ signature :
8274
- std::vector<placo::humanoid::FootstepsPlanner::Footstep, std::allocator<placo::humanoid::FootstepsPlanner::Footstep> > {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8275
- """
6810
+ footsteps: list[Footstep] # std::vector<placo::humanoid::FootstepsPlanner::Footstep>
8276
6811
 
8277
6812
  def frame(
8278
6813
  self,
@@ -8310,46 +6845,18 @@ None( (placo.Support)arg1) -> object :
8310
6845
  """
8311
6846
  ...
8312
6847
 
8313
- start: any
8314
- """
8315
-
8316
- None( (placo.Support)arg1) -> bool :
8317
-
8318
- C++ signature :
8319
- bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8320
- """
6848
+ start: bool # bool
8321
6849
 
8322
6850
  def support_polygon(
8323
6851
  self,
8324
6852
  ) -> list[numpy.ndarray]:
8325
6853
  ...
8326
6854
 
8327
- t_start: any
8328
- """
8329
-
8330
- None( (placo.Support)arg1) -> float :
8331
-
8332
- C++ signature :
8333
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8334
- """
8335
-
8336
- target_world_dcm: any
8337
- """
8338
-
8339
- None( (placo.Support)arg1) -> object :
8340
-
8341
- C++ signature :
8342
- Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8343
- """
6855
+ t_start: float # double
8344
6856
 
8345
- time_ratio: any
8346
- """
8347
-
8348
- None( (placo.Support)arg1) -> float :
6857
+ target_world_dcm: numpy.ndarray # Eigen::Vector2d
8349
6858
 
8350
- C++ signature :
8351
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8352
- """
6859
+ time_ratio: float # double
8353
6860
 
8354
6861
 
8355
6862
  class Supports:
@@ -8498,26 +7005,18 @@ class SwingFootTrajectory:
8498
7005
 
8499
7006
 
8500
7007
  class Task:
8501
- A: any
7008
+ A: numpy.ndarray # Eigen::MatrixXd
8502
7009
  """
8503
-
8504
- None( (placo.Task)arg1) -> object :
8505
-
8506
- C++ signature :
8507
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7010
+ Matrix A in the task Ax = b, where x are the joint delta positions.
8508
7011
  """
8509
7012
 
8510
7013
  def __init__(
8511
7014
  ) -> any:
8512
7015
  ...
8513
7016
 
8514
- b: any
7017
+ b: numpy.ndarray # Eigen::MatrixXd
8515
7018
  """
8516
-
8517
- None( (placo.Task)arg1) -> object :
8518
-
8519
- C++ signature :
8520
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7019
+ Vector b in the task Ax = b, where x are the joint delta positions.
8521
7020
  """
8522
7021
 
8523
7022
  def configure(
@@ -8551,13 +7050,9 @@ None( (placo.Task)arg1) -> object :
8551
7050
  """
8552
7051
  ...
8553
7052
 
8554
- name: any
7053
+ name: str # std::string
8555
7054
  """
8556
-
8557
- None( (placo.Prioritized)arg1) -> str :
8558
-
8559
- C++ signature :
8560
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
7055
+ Object name.
8561
7056
  """
8562
7057
 
8563
7058
  priority: str
@@ -8584,58 +7079,34 @@ class TaskContact:
8584
7079
  """
8585
7080
  ...
8586
7081
 
8587
- active: any
7082
+ active: bool # bool
8588
7083
  """
8589
-
8590
- None( (placo.Contact)arg1) -> bool :
8591
-
8592
- C++ signature :
8593
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
7084
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
8594
7085
  """
8595
7086
 
8596
- mu: any
7087
+ mu: float # double
8597
7088
  """
8598
-
8599
- None( (placo.Contact)arg1) -> float :
8600
-
8601
- C++ signature :
8602
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7089
+ Coefficient of friction (if relevant)
8603
7090
  """
8604
7091
 
8605
- weight_forces: any
7092
+ weight_forces: float # double
8606
7093
  """
8607
-
8608
- None( (placo.Contact)arg1) -> float :
8609
-
8610
- C++ signature :
8611
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7094
+ Weight of forces for the optimization (if relevant)
8612
7095
  """
8613
7096
 
8614
- weight_moments: any
7097
+ weight_moments: float # double
8615
7098
  """
8616
-
8617
- None( (placo.Contact)arg1) -> float :
8618
-
8619
- C++ signature :
8620
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7099
+ Weight of moments for optimization (if relevant)
8621
7100
  """
8622
7101
 
8623
- weight_tangentials: any
7102
+ weight_tangentials: float # double
8624
7103
  """
8625
-
8626
- None( (placo.Contact)arg1) -> float :
8627
-
8628
- C++ signature :
8629
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7104
+ Extra cost for tangential forces.
8630
7105
  """
8631
7106
 
8632
- wrench: any
7107
+ wrench: numpy.ndarray # Eigen::VectorXd
8633
7108
  """
8634
-
8635
- None( (placo.Contact)arg1) -> object :
8636
-
8637
- C++ signature :
8638
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
7109
+ Wrench populated after the DynamicsSolver::solve call.
8639
7110
  """
8640
7111
 
8641
7112
 
@@ -8661,31 +7132,19 @@ class Variable:
8661
7132
  """
8662
7133
  ...
8663
7134
 
8664
- k_end: any
7135
+ k_end: int # int
8665
7136
  """
8666
-
8667
- None( (placo.Variable)arg1) -> int :
8668
-
8669
- C++ signature :
8670
- int {lvalue} None(placo::problem::Variable {lvalue})
7137
+ End offset in the Problem.
8671
7138
  """
8672
7139
 
8673
- k_start: any
7140
+ k_start: int # int
8674
7141
  """
8675
-
8676
- None( (placo.Variable)arg1) -> int :
8677
-
8678
- C++ signature :
8679
- int {lvalue} None(placo::problem::Variable {lvalue})
7142
+ Start offset in the Problem.
8680
7143
  """
8681
7144
 
8682
- value: any
7145
+ value: numpy.ndarray # Eigen::VectorXd
8683
7146
  """
8684
-
8685
- None( (placo.Variable)arg1) -> object :
8686
-
8687
- C++ signature :
8688
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Variable {lvalue})
7147
+ Variable value, populated by Problem after a solve.
8689
7148
  """
8690
7149
 
8691
7150
 
@@ -8708,14 +7167,7 @@ class WPGTrajectory:
8708
7167
  """
8709
7168
  ...
8710
7169
 
8711
- com_target_z: any
8712
- """
8713
-
8714
- None( (placo.WPGTrajectory)arg1) -> float :
8715
-
8716
- C++ signature :
8717
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8718
- """
7170
+ com_target_z: float # double
8719
7171
 
8720
7172
  def get_R_world_trunk(
8721
7173
  self,
@@ -8867,28 +7319,14 @@ None( (placo.WPGTrajectory)arg1) -> float :
8867
7319
  ) -> numpy.ndarray:
8868
7320
  ...
8869
7321
 
8870
- parts: any
8871
- """
8872
-
8873
- None( (placo.WPGTrajectory)arg1) -> object :
8874
-
8875
- C++ signature :
8876
- std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart, std::allocator<placo::humanoid::WalkPatternGenerator::TrajectoryPart> > {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8877
- """
7322
+ parts: list[WPGTrajectoryPart] # std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart>
8878
7323
 
8879
7324
  def print_parts_timings(
8880
7325
  self,
8881
7326
  ) -> None:
8882
7327
  ...
8883
7328
 
8884
- replan_success: any
8885
- """
8886
-
8887
- None( (placo.WPGTrajectory)arg1) -> bool :
8888
-
8889
- C++ signature :
8890
- bool {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8891
- """
7329
+ replan_success: bool # bool
8892
7330
 
8893
7331
  def support_is_both(
8894
7332
  self,
@@ -8902,41 +7340,13 @@ None( (placo.WPGTrajectory)arg1) -> bool :
8902
7340
  ) -> any:
8903
7341
  ...
8904
7342
 
8905
- t_end: any
8906
- """
8907
-
8908
- None( (placo.WPGTrajectory)arg1) -> float :
8909
-
8910
- C++ signature :
8911
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8912
- """
8913
-
8914
- t_start: any
8915
- """
8916
-
8917
- None( (placo.WPGTrajectory)arg1) -> float :
8918
-
8919
- C++ signature :
8920
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8921
- """
7343
+ t_end: float # double
8922
7344
 
8923
- trunk_pitch: any
8924
- """
8925
-
8926
- None( (placo.WPGTrajectory)arg1) -> float :
8927
-
8928
- C++ signature :
8929
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8930
- """
7345
+ t_start: float # double
8931
7346
 
8932
- trunk_roll: any
8933
- """
8934
-
8935
- None( (placo.WPGTrajectory)arg1) -> float :
7347
+ trunk_pitch: float # double
8936
7348
 
8937
- C++ signature :
8938
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8939
- """
7349
+ trunk_roll: float # double
8940
7350
 
8941
7351
 
8942
7352
  class WPGTrajectoryPart:
@@ -8947,32 +7357,11 @@ class WPGTrajectoryPart:
8947
7357
  ) -> None:
8948
7358
  ...
8949
7359
 
8950
- support: any
8951
- """
8952
-
8953
- None( (placo.WPGTrajectoryPart)arg1) -> placo.Support :
8954
-
8955
- C++ signature :
8956
- placo::humanoid::FootstepsPlanner::Support {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8957
- """
8958
-
8959
- t_end: any
8960
- """
8961
-
8962
- None( (placo.WPGTrajectoryPart)arg1) -> float :
8963
-
8964
- C++ signature :
8965
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8966
- """
7360
+ support: Support # placo::humanoid::FootstepsPlanner::Support
8967
7361
 
8968
- t_start: any
8969
- """
8970
-
8971
- None( (placo.WPGTrajectoryPart)arg1) -> float :
7362
+ t_end: float # double
8972
7363
 
8973
- C++ signature :
8974
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8975
- """
7364
+ t_start: float # double
8976
7365
 
8977
7366
 
8978
7367
  class WalkPatternGenerator:
@@ -9050,23 +7439,9 @@ class WalkPatternGenerator:
9050
7439
  """
9051
7440
  ...
9052
7441
 
9053
- soft: any
9054
- """
9055
-
9056
- None( (placo.WalkPatternGenerator)arg1) -> bool :
9057
-
9058
- C++ signature :
9059
- bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9060
- """
7442
+ soft: bool # bool
9061
7443
 
9062
- stop_end_support_weight: any
9063
- """
9064
-
9065
- None( (placo.WalkPatternGenerator)arg1) -> float :
9066
-
9067
- C++ signature :
9068
- double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9069
- """
7444
+ stop_end_support_weight: float # double
9070
7445
 
9071
7446
  def support_default_duration(
9072
7447
  self,
@@ -9095,14 +7470,7 @@ None( (placo.WalkPatternGenerator)arg1) -> float :
9095
7470
  """
9096
7471
  ...
9097
7472
 
9098
- zmp_in_support_weight: any
9099
- """
9100
-
9101
- None( (placo.WalkPatternGenerator)arg1) -> float :
9102
-
9103
- C++ signature :
9104
- double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9105
- """
7473
+ zmp_in_support_weight: float # double
9106
7474
 
9107
7475
 
9108
7476
  class WalkTasks:
@@ -9111,32 +7479,11 @@ class WalkTasks:
9111
7479
  ) -> None:
9112
7480
  ...
9113
7481
 
9114
- com_task: any
9115
- """
9116
-
9117
- None( (placo.WalkTasks)arg1) -> placo.CoMTask :
9118
-
9119
- C++ signature :
9120
- placo::kinematics::CoMTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9121
- """
9122
-
9123
- com_x: any
9124
- """
9125
-
9126
- None( (placo.WalkTasks)arg1) -> float :
9127
-
9128
- C++ signature :
9129
- double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9130
- """
7482
+ com_task: CoMTask # placo::kinematics::CoMTask
9131
7483
 
9132
- com_y: any
9133
- """
9134
-
9135
- None( (placo.WalkTasks)arg1) -> float :
7484
+ com_x: float # double
9136
7485
 
9137
- C++ signature :
9138
- double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9139
- """
7486
+ com_y: float # double
9140
7487
 
9141
7488
  def get_tasks_error(
9142
7489
  self,
@@ -9150,14 +7497,7 @@ None( (placo.WalkTasks)arg1) -> float :
9150
7497
  ) -> None:
9151
7498
  ...
9152
7499
 
9153
- left_foot_task: any
9154
- """
9155
-
9156
- None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9157
-
9158
- C++ signature :
9159
- placo::kinematics::FrameTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9160
- """
7500
+ left_foot_task: FrameTask # placo::kinematics::FrameTask
9161
7501
 
9162
7502
  def reach_initial_pose(
9163
7503
  self,
@@ -9173,59 +7513,17 @@ None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9173
7513
  ) -> None:
9174
7514
  ...
9175
7515
 
9176
- right_foot_task: any
9177
- """
9178
-
9179
- None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9180
-
9181
- C++ signature :
9182
- placo::kinematics::FrameTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9183
- """
9184
-
9185
- scaled: any
9186
- """
9187
-
9188
- None( (placo.WalkTasks)arg1) -> bool :
9189
-
9190
- C++ signature :
9191
- bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9192
- """
9193
-
9194
- solver: any
9195
- """
9196
-
9197
- None( (placo.WalkTasks)arg1) -> placo.KinematicsSolver :
9198
-
9199
- C++ signature :
9200
- placo::kinematics::KinematicsSolver None(placo::humanoid::WalkTasks {lvalue})
9201
- """
9202
-
9203
- trunk_mode: any
9204
- """
9205
-
9206
- None( (placo.WalkTasks)arg1) -> bool :
7516
+ right_foot_task: FrameTask # placo::kinematics::FrameTask
9207
7517
 
9208
- C++ signature :
9209
- bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9210
- """
7518
+ scaled: bool # bool
9211
7519
 
9212
- trunk_orientation_task: any
9213
- """
9214
-
9215
- None( (placo.WalkTasks)arg1) -> placo.OrientationTask :
7520
+ solver: KinematicsSolver # placo::kinematics::KinematicsSolver
9216
7521
 
9217
- C++ signature :
9218
- placo::kinematics::OrientationTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9219
- """
7522
+ trunk_mode: bool # bool
9220
7523
 
9221
- trunk_task: any
9222
- """
9223
-
9224
- None( (placo.WalkTasks)arg1) -> placo.PositionTask :
7524
+ trunk_orientation_task: OrientationTask # placo::kinematics::OrientationTask
9225
7525
 
9226
- C++ signature :
9227
- placo::kinematics::PositionTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9228
- """
7526
+ trunk_task: PositionTask # placo::kinematics::PositionTask
9229
7527
 
9230
7528
  def update_tasks(
9231
7529
  self,
@@ -9243,22 +7541,14 @@ None( (placo.WalkTasks)arg1) -> placo.PositionTask :
9243
7541
 
9244
7542
 
9245
7543
  class WheelTask:
9246
- A: any
7544
+ A: numpy.ndarray # Eigen::MatrixXd
9247
7545
  """
9248
-
9249
- None( (placo.Task)arg1) -> object :
9250
-
9251
- C++ signature :
9252
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7546
+ Matrix A in the task Ax = b, where x are the joint delta positions.
9253
7547
  """
9254
7548
 
9255
- T_world_surface: any
7549
+ T_world_surface: numpy.ndarray # Eigen::Affine3d
9256
7550
  """
9257
-
9258
- None( (placo.WheelTask)arg1) -> object :
9259
-
9260
- C++ signature :
9261
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::kinematics::WheelTask {lvalue})
7551
+ Target position in the world.
9262
7552
  """
9263
7553
 
9264
7554
  def __init__(
@@ -9272,13 +7562,9 @@ None( (placo.WheelTask)arg1) -> object :
9272
7562
  """
9273
7563
  ...
9274
7564
 
9275
- b: any
7565
+ b: numpy.ndarray # Eigen::MatrixXd
9276
7566
  """
9277
-
9278
- None( (placo.Task)arg1) -> object :
9279
-
9280
- C++ signature :
9281
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7567
+ Vector b in the task Ax = b, where x are the joint delta positions.
9282
7568
  """
9283
7569
 
9284
7570
  def configure(
@@ -9312,31 +7598,19 @@ None( (placo.Task)arg1) -> object :
9312
7598
  """
9313
7599
  ...
9314
7600
 
9315
- joint: any
7601
+ joint: str # std::string
9316
7602
  """
9317
-
9318
- None( (placo.WheelTask)arg1) -> str :
9319
-
9320
- C++ signature :
9321
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::kinematics::WheelTask {lvalue})
7603
+ Frame.
9322
7604
  """
9323
7605
 
9324
- name: any
7606
+ name: str # std::string
9325
7607
  """
9326
-
9327
- None( (placo.Prioritized)arg1) -> str :
9328
-
9329
- C++ signature :
9330
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
7608
+ Object name.
9331
7609
  """
9332
7610
 
9333
- omniwheel: any
7611
+ omniwheel: bool # bool
9334
7612
  """
9335
-
9336
- None( (placo.WheelTask)arg1) -> bool :
9337
-
9338
- C++ signature :
9339
- bool {lvalue} None(placo::kinematics::WheelTask {lvalue})
7613
+ Omniwheel (can slide laterally)
9340
7614
  """
9341
7615
 
9342
7616
  priority: str
@@ -9344,13 +7618,9 @@ None( (placo.WheelTask)arg1) -> bool :
9344
7618
  Priority [str]
9345
7619
  """
9346
7620
 
9347
- radius: any
7621
+ radius: float # double
9348
7622
  """
9349
-
9350
- None( (placo.WheelTask)arg1) -> float :
9351
-
9352
- C++ signature :
9353
- double {lvalue} None(placo::kinematics::WheelTask {lvalue})
7623
+ Wheel radius.
9354
7624
  """
9355
7625
 
9356
7626
  def update(
@@ -9374,13 +7644,9 @@ class YawConstraint:
9374
7644
  """
9375
7645
  ...
9376
7646
 
9377
- angle_max: any
7647
+ angle_max: float # double
9378
7648
  """
9379
-
9380
- None( (placo.YawConstraint)arg1) -> float :
9381
-
9382
- C++ signature :
9383
- double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
7649
+ Maximum angle allowable by the yaw constraint (yaw is taken for x-axis of b around z-axis in a)
9384
7650
  """
9385
7651
 
9386
7652
  def configure(
@@ -9398,13 +7664,9 @@ None( (placo.YawConstraint)arg1) -> float :
9398
7664
  """
9399
7665
  ...
9400
7666
 
9401
- name: any
7667
+ name: str # std::string
9402
7668
  """
9403
-
9404
- None( (placo.Prioritized)arg1) -> str :
9405
-
9406
- C++ signature :
9407
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
7669
+ Object name.
9408
7670
  """
9409
7671
 
9410
7672
  priority: str