placo 0.9.6__0-cp39-cp39-manylinux_2_28_aarch64.whl → 0.9.8__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,29 @@ None( (placo.DummyWalk)arg1) -> object :
1357
1069
  ) -> any:
1358
1070
  ...
1359
1071
 
1360
- feet_spacing: any
1072
+ dtheta: float # double
1073
+ """
1074
+ Last requested step dtheta.
1361
1075
  """
1362
-
1363
- None( (placo.DummyWalk)arg1) -> float :
1364
1076
 
1365
- C++ signature :
1366
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1077
+ dx: float # double
1078
+ """
1079
+ Last requested step dx.
1367
1080
  """
1368
1081
 
1369
- lift_height: any
1082
+ dy: float # double
1083
+ """
1084
+ Last requested step d-.
1370
1085
  """
1371
-
1372
- None( (placo.DummyWalk)arg1) -> float :
1373
1086
 
1374
- C++ signature :
1375
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1087
+ feet_spacing: float # double
1088
+ """
1089
+ Feet spacing [m].
1090
+ """
1091
+
1092
+ lift_height: float # double
1093
+ """
1094
+ Lift height [m].
1376
1095
  """
1377
1096
 
1378
1097
  def next_step(
@@ -1401,49 +1120,29 @@ None( (placo.DummyWalk)arg1) -> float :
1401
1120
  """
1402
1121
  ...
1403
1122
 
1404
- robot: any
1123
+ robot: RobotWrapper # placo::model::RobotWrapper
1405
1124
  """
1406
-
1407
- None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
1408
-
1409
- C++ signature :
1410
- placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1125
+ Robot wrapper.
1411
1126
  """
1412
1127
 
1413
- solver: any
1128
+ solver: KinematicsSolver # placo::kinematics::KinematicsSolver
1414
1129
  """
1415
-
1416
- None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
1417
-
1418
- C++ signature :
1419
- placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1130
+ Kinematics solver.
1420
1131
  """
1421
1132
 
1422
- support_left: any
1133
+ support_left: bool # bool
1423
1134
  """
1424
-
1425
- None( (placo.DummyWalk)arg1) -> bool :
1426
-
1427
- C++ signature :
1428
- bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1135
+ Whether the current support is left or right.
1429
1136
  """
1430
1137
 
1431
- trunk_height: any
1138
+ trunk_height: float # double
1432
1139
  """
1433
-
1434
- None( (placo.DummyWalk)arg1) -> float :
1435
-
1436
- C++ signature :
1437
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1140
+ Trunk height [m].
1438
1141
  """
1439
1142
 
1440
- trunk_pitch: any
1143
+ trunk_pitch: float # double
1441
1144
  """
1442
-
1443
- None( (placo.DummyWalk)arg1) -> float :
1444
-
1445
- C++ signature :
1446
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1145
+ Trunk pitch angle [rad].
1447
1146
  """
1448
1147
 
1449
1148
  def update(
@@ -1468,13 +1167,9 @@ None( (placo.DummyWalk)arg1) -> float :
1468
1167
 
1469
1168
 
1470
1169
  class DynamicsCoMTask:
1471
- A: any
1170
+ A: numpy.ndarray # Eigen::MatrixXd
1472
1171
  """
1473
-
1474
- None( (placo.DynamicsTask)arg1) -> object :
1475
-
1476
- C++ signature :
1477
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1172
+ A matrix in Ax = b, where x is the accelerations.
1478
1173
  """
1479
1174
 
1480
1175
  def __init__(
@@ -1483,13 +1178,9 @@ None( (placo.DynamicsTask)arg1) -> object :
1483
1178
  ) -> None:
1484
1179
  ...
1485
1180
 
1486
- b: any
1181
+ b: numpy.ndarray # Eigen::MatrixXd
1487
1182
  """
1488
-
1489
- None( (placo.DynamicsTask)arg1) -> object :
1490
-
1491
- C++ signature :
1492
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1183
+ b vector in Ax = b, where x is the accelerations
1493
1184
  """
1494
1185
 
1495
1186
  def configure(
@@ -1507,76 +1198,44 @@ None( (placo.DynamicsTask)arg1) -> object :
1507
1198
  """
1508
1199
  ...
1509
1200
 
1510
- ddtarget_world: any
1201
+ ddtarget_world: numpy.ndarray # Eigen::Vector3d
1511
1202
  """
1512
-
1513
- None( (placo.DynamicsCoMTask)arg1) -> object :
1514
-
1515
- C++ signature :
1516
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
1203
+ Target acceleration in the world.
1517
1204
  """
1518
1205
 
1519
- derror: any
1206
+ derror: numpy.ndarray # Eigen::MatrixXd
1520
1207
  """
1521
-
1522
- None( (placo.DynamicsTask)arg1) -> object :
1523
-
1524
- C++ signature :
1525
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1208
+ Current velocity error vector.
1526
1209
  """
1527
1210
 
1528
- dtarget_world: any
1211
+ dtarget_world: numpy.ndarray # Eigen::Vector3d
1529
1212
  """
1530
-
1531
- None( (placo.DynamicsCoMTask)arg1) -> object :
1532
-
1533
- C++ signature :
1534
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
1213
+ Target velocity to reach in robot frame.
1535
1214
  """
1536
1215
 
1537
- error: any
1216
+ error: numpy.ndarray # Eigen::MatrixXd
1538
1217
  """
1539
-
1540
- None( (placo.DynamicsTask)arg1) -> object :
1541
-
1542
- C++ signature :
1543
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1218
+ Current error vector.
1544
1219
  """
1545
1220
 
1546
- kd: any
1221
+ kd: float # double
1547
1222
  """
1548
-
1549
- None( (placo.DynamicsTask)arg1) -> float :
1550
-
1551
- C++ signature :
1552
- double {lvalue} None(placo::dynamics::Task {lvalue})
1223
+ D gain for position control (if negative, will be critically damped)
1553
1224
  """
1554
1225
 
1555
- kp: any
1226
+ kp: float # double
1556
1227
  """
1557
-
1558
- None( (placo.DynamicsTask)arg1) -> float :
1559
-
1560
- C++ signature :
1561
- double {lvalue} None(placo::dynamics::Task {lvalue})
1228
+ K gain for position control.
1562
1229
  """
1563
1230
 
1564
- mask: any
1231
+ mask: AxisesMask # placo::tools::AxisesMask
1565
1232
  """
1566
-
1567
- None( (placo.DynamicsCoMTask)arg1) -> placo.AxisesMask :
1568
-
1569
- C++ signature :
1570
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::CoMTask {lvalue})
1233
+ Axises mask.
1571
1234
  """
1572
1235
 
1573
- name: any
1236
+ name: str # std::string
1574
1237
  """
1575
-
1576
- None( (placo.Prioritized)arg1) -> str :
1577
-
1578
- C++ signature :
1579
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1238
+ Object name.
1580
1239
  """
1581
1240
 
1582
1241
  priority: str
@@ -1584,13 +1243,9 @@ None( (placo.Prioritized)arg1) -> str :
1584
1243
  Priority [str]
1585
1244
  """
1586
1245
 
1587
- target_world: any
1246
+ target_world: numpy.ndarray # Eigen::Vector3d
1588
1247
  """
1589
-
1590
- None( (placo.DynamicsCoMTask)arg1) -> object :
1591
-
1592
- C++ signature :
1593
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
1248
+ Target to reach in world frame.
1594
1249
  """
1595
1250
 
1596
1251
 
@@ -1614,13 +1269,9 @@ class DynamicsConstraint:
1614
1269
  """
1615
1270
  ...
1616
1271
 
1617
- name: any
1272
+ name: str # std::string
1618
1273
  """
1619
-
1620
- None( (placo.Prioritized)arg1) -> str :
1621
-
1622
- C++ signature :
1623
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1274
+ Object name.
1624
1275
  """
1625
1276
 
1626
1277
  priority: str
@@ -1631,13 +1282,6 @@ None( (placo.Prioritized)arg1) -> str :
1631
1282
 
1632
1283
  class DynamicsFrameTask:
1633
1284
  T_world_frame: any
1634
- """
1635
-
1636
- None( (placo.DynamicsFrameTask)arg1) -> object :
1637
-
1638
- C++ signature :
1639
- Eigen::Transform<double, 3, 2, 0> None(placo::dynamics::FrameTask {lvalue})
1640
- """
1641
1285
 
1642
1286
  def __init__(
1643
1287
  arg1: object,
@@ -1673,13 +1317,9 @@ None( (placo.DynamicsFrameTask)arg1) -> object :
1673
1317
 
1674
1318
 
1675
1319
  class DynamicsGearTask:
1676
- A: any
1320
+ A: numpy.ndarray # Eigen::MatrixXd
1677
1321
  """
1678
-
1679
- None( (placo.DynamicsTask)arg1) -> object :
1680
-
1681
- C++ signature :
1682
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1322
+ A matrix in Ax = b, where x is the accelerations.
1683
1323
  """
1684
1324
 
1685
1325
  def __init__(
@@ -1702,13 +1342,9 @@ None( (placo.DynamicsTask)arg1) -> object :
1702
1342
  """
1703
1343
  ...
1704
1344
 
1705
- b: any
1345
+ b: numpy.ndarray # Eigen::MatrixXd
1706
1346
  """
1707
-
1708
- None( (placo.DynamicsTask)arg1) -> object :
1709
-
1710
- C++ signature :
1711
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1347
+ b vector in Ax = b, where x is the accelerations
1712
1348
  """
1713
1349
 
1714
1350
  def configure(
@@ -1726,49 +1362,29 @@ None( (placo.DynamicsTask)arg1) -> object :
1726
1362
  """
1727
1363
  ...
1728
1364
 
1729
- derror: any
1365
+ derror: numpy.ndarray # Eigen::MatrixXd
1730
1366
  """
1731
-
1732
- None( (placo.DynamicsTask)arg1) -> object :
1733
-
1734
- C++ signature :
1735
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1367
+ Current velocity error vector.
1736
1368
  """
1737
1369
 
1738
- error: any
1370
+ error: numpy.ndarray # Eigen::MatrixXd
1739
1371
  """
1740
-
1741
- None( (placo.DynamicsTask)arg1) -> object :
1742
-
1743
- C++ signature :
1744
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1372
+ Current error vector.
1745
1373
  """
1746
1374
 
1747
- kd: any
1375
+ kd: float # double
1748
1376
  """
1749
-
1750
- None( (placo.DynamicsTask)arg1) -> float :
1751
-
1752
- C++ signature :
1753
- double {lvalue} None(placo::dynamics::Task {lvalue})
1377
+ D gain for position control (if negative, will be critically damped)
1754
1378
  """
1755
1379
 
1756
- kp: any
1380
+ kp: float # double
1757
1381
  """
1758
-
1759
- None( (placo.DynamicsTask)arg1) -> float :
1760
-
1761
- C++ signature :
1762
- double {lvalue} None(placo::dynamics::Task {lvalue})
1382
+ K gain for position control.
1763
1383
  """
1764
1384
 
1765
- name: any
1385
+ name: str # std::string
1766
1386
  """
1767
-
1768
- None( (placo.Prioritized)arg1) -> str :
1769
-
1770
- C++ signature :
1771
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1387
+ Object name.
1772
1388
  """
1773
1389
 
1774
1390
  priority: str
@@ -1793,13 +1409,9 @@ None( (placo.Prioritized)arg1) -> str :
1793
1409
 
1794
1410
 
1795
1411
  class DynamicsJointsTask:
1796
- A: any
1412
+ A: numpy.ndarray # Eigen::MatrixXd
1797
1413
  """
1798
-
1799
- None( (placo.DynamicsTask)arg1) -> object :
1800
-
1801
- C++ signature :
1802
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1414
+ A matrix in Ax = b, where x is the accelerations.
1803
1415
  """
1804
1416
 
1805
1417
  def __init__(
@@ -1807,13 +1419,9 @@ None( (placo.DynamicsTask)arg1) -> object :
1807
1419
  ) -> None:
1808
1420
  ...
1809
1421
 
1810
- b: any
1422
+ b: numpy.ndarray # Eigen::MatrixXd
1811
1423
  """
1812
-
1813
- None( (placo.DynamicsTask)arg1) -> object :
1814
-
1815
- C++ signature :
1816
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1424
+ b vector in Ax = b, where x is the accelerations
1817
1425
  """
1818
1426
 
1819
1427
  def configure(
@@ -1831,22 +1439,14 @@ None( (placo.DynamicsTask)arg1) -> object :
1831
1439
  """
1832
1440
  ...
1833
1441
 
1834
- derror: any
1442
+ derror: numpy.ndarray # Eigen::MatrixXd
1835
1443
  """
1836
-
1837
- None( (placo.DynamicsTask)arg1) -> object :
1838
-
1839
- C++ signature :
1840
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1444
+ Current velocity error vector.
1841
1445
  """
1842
1446
 
1843
- error: any
1447
+ error: numpy.ndarray # Eigen::MatrixXd
1844
1448
  """
1845
-
1846
- None( (placo.DynamicsTask)arg1) -> object :
1847
-
1848
- C++ signature :
1849
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1449
+ Current error vector.
1850
1450
  """
1851
1451
 
1852
1452
  def get_joint(
@@ -1860,31 +1460,19 @@ None( (placo.DynamicsTask)arg1) -> object :
1860
1460
  """
1861
1461
  ...
1862
1462
 
1863
- kd: any
1463
+ kd: float # double
1864
1464
  """
1865
-
1866
- None( (placo.DynamicsTask)arg1) -> float :
1867
-
1868
- C++ signature :
1869
- double {lvalue} None(placo::dynamics::Task {lvalue})
1465
+ D gain for position control (if negative, will be critically damped)
1870
1466
  """
1871
1467
 
1872
- kp: any
1468
+ kp: float # double
1873
1469
  """
1874
-
1875
- None( (placo.DynamicsTask)arg1) -> float :
1876
-
1877
- C++ signature :
1878
- double {lvalue} None(placo::dynamics::Task {lvalue})
1470
+ K gain for position control.
1879
1471
  """
1880
1472
 
1881
- name: any
1473
+ name: str # std::string
1882
1474
  """
1883
-
1884
- None( (placo.Prioritized)arg1) -> str :
1885
-
1886
- C++ signature :
1887
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1475
+ Object name.
1888
1476
  """
1889
1477
 
1890
1478
  priority: str
@@ -1923,22 +1511,14 @@ None( (placo.Prioritized)arg1) -> str :
1923
1511
 
1924
1512
 
1925
1513
  class DynamicsOrientationTask:
1926
- A: any
1514
+ A: numpy.ndarray # Eigen::MatrixXd
1927
1515
  """
1928
-
1929
- None( (placo.DynamicsTask)arg1) -> object :
1930
-
1931
- C++ signature :
1932
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1516
+ A matrix in Ax = b, where x is the accelerations.
1933
1517
  """
1934
1518
 
1935
- R_world_frame: any
1519
+ R_world_frame: numpy.ndarray # Eigen::Matrix3d
1936
1520
  """
1937
-
1938
- None( (placo.DynamicsOrientationTask)arg1) -> object :
1939
-
1940
- C++ signature :
1941
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1521
+ Target orientation.
1942
1522
  """
1943
1523
 
1944
1524
  def __init__(
@@ -1948,13 +1528,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
1948
1528
  ) -> None:
1949
1529
  ...
1950
1530
 
1951
- b: any
1531
+ b: numpy.ndarray # Eigen::MatrixXd
1952
1532
  """
1953
-
1954
- None( (placo.DynamicsTask)arg1) -> object :
1955
-
1956
- C++ signature :
1957
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1533
+ b vector in Ax = b, where x is the accelerations
1958
1534
  """
1959
1535
 
1960
1536
  def configure(
@@ -1972,76 +1548,44 @@ None( (placo.DynamicsTask)arg1) -> object :
1972
1548
  """
1973
1549
  ...
1974
1550
 
1975
- derror: any
1551
+ derror: numpy.ndarray # Eigen::MatrixXd
1976
1552
  """
1977
-
1978
- None( (placo.DynamicsTask)arg1) -> object :
1979
-
1980
- C++ signature :
1981
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1553
+ Current velocity error vector.
1982
1554
  """
1983
1555
 
1984
- domega_world: any
1556
+ domega_world: numpy.ndarray # Eigen::Vector3d
1985
1557
  """
1986
-
1987
- None( (placo.DynamicsOrientationTask)arg1) -> object :
1988
-
1989
- C++ signature :
1990
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1558
+ Target angular acceleration.
1991
1559
  """
1992
1560
 
1993
- error: any
1561
+ error: numpy.ndarray # Eigen::MatrixXd
1994
1562
  """
1995
-
1996
- None( (placo.DynamicsTask)arg1) -> object :
1997
-
1998
- C++ signature :
1999
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1563
+ Current error vector.
2000
1564
  """
2001
1565
 
2002
- kd: any
1566
+ kd: float # double
2003
1567
  """
2004
-
2005
- None( (placo.DynamicsTask)arg1) -> float :
2006
-
2007
- C++ signature :
2008
- double {lvalue} None(placo::dynamics::Task {lvalue})
1568
+ D gain for position control (if negative, will be critically damped)
2009
1569
  """
2010
1570
 
2011
- kp: any
1571
+ kp: float # double
2012
1572
  """
2013
-
2014
- None( (placo.DynamicsTask)arg1) -> float :
2015
-
2016
- C++ signature :
2017
- double {lvalue} None(placo::dynamics::Task {lvalue})
1573
+ K gain for position control.
2018
1574
  """
2019
1575
 
2020
- mask: any
1576
+ mask: AxisesMask # placo::tools::AxisesMask
2021
1577
  """
2022
-
2023
- None( (placo.DynamicsOrientationTask)arg1) -> placo.AxisesMask :
2024
-
2025
- C++ signature :
2026
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1578
+ Mask.
2027
1579
  """
2028
1580
 
2029
- name: any
1581
+ name: str # std::string
2030
1582
  """
2031
-
2032
- None( (placo.Prioritized)arg1) -> str :
2033
-
2034
- C++ signature :
2035
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1583
+ Object name.
2036
1584
  """
2037
1585
 
2038
- omega_world: any
1586
+ omega_world: numpy.ndarray # Eigen::Vector3d
2039
1587
  """
2040
-
2041
- None( (placo.DynamicsOrientationTask)arg1) -> object :
2042
-
2043
- C++ signature :
2044
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1588
+ Target angular velocity.
2045
1589
  """
2046
1590
 
2047
1591
  priority: str
@@ -2051,13 +1595,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
2051
1595
 
2052
1596
 
2053
1597
  class DynamicsPositionTask:
2054
- A: any
1598
+ A: numpy.ndarray # Eigen::MatrixXd
2055
1599
  """
2056
-
2057
- None( (placo.DynamicsTask)arg1) -> object :
2058
-
2059
- C++ signature :
2060
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1600
+ A matrix in Ax = b, where x is the accelerations.
2061
1601
  """
2062
1602
 
2063
1603
  def __init__(
@@ -2067,13 +1607,9 @@ None( (placo.DynamicsTask)arg1) -> object :
2067
1607
  ) -> None:
2068
1608
  ...
2069
1609
 
2070
- b: any
1610
+ b: numpy.ndarray # Eigen::MatrixXd
2071
1611
  """
2072
-
2073
- None( (placo.DynamicsTask)arg1) -> object :
2074
-
2075
- C++ signature :
2076
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1612
+ b vector in Ax = b, where x is the accelerations
2077
1613
  """
2078
1614
 
2079
1615
  def configure(
@@ -2091,85 +1627,49 @@ None( (placo.DynamicsTask)arg1) -> object :
2091
1627
  """
2092
1628
  ...
2093
1629
 
2094
- ddtarget_world: any
1630
+ ddtarget_world: numpy.ndarray # Eigen::Vector3d
2095
1631
  """
2096
-
2097
- None( (placo.DynamicsPositionTask)arg1) -> object :
2098
-
2099
- C++ signature :
2100
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
1632
+ Target acceleration in the world.
2101
1633
  """
2102
1634
 
2103
- derror: any
1635
+ derror: numpy.ndarray # Eigen::MatrixXd
2104
1636
  """
2105
-
2106
- None( (placo.DynamicsTask)arg1) -> object :
2107
-
2108
- C++ signature :
2109
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1637
+ Current velocity error vector.
2110
1638
  """
2111
1639
 
2112
- dtarget_world: any
1640
+ dtarget_world: numpy.ndarray # Eigen::Vector3d
2113
1641
  """
2114
-
2115
- None( (placo.DynamicsPositionTask)arg1) -> object :
2116
-
2117
- C++ signature :
2118
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
1642
+ Target velocity in the world.
2119
1643
  """
2120
1644
 
2121
- error: any
1645
+ error: numpy.ndarray # Eigen::MatrixXd
2122
1646
  """
2123
-
2124
- None( (placo.DynamicsTask)arg1) -> object :
2125
-
2126
- C++ signature :
2127
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1647
+ Current error vector.
2128
1648
  """
2129
1649
 
2130
- frame_index: any
1650
+ frame_index: any # pinocchio::FrameIndex
2131
1651
  """
2132
-
2133
- None( (placo.DynamicsPositionTask)arg1) -> int :
2134
-
2135
- C++ signature :
2136
- unsigned long {lvalue} None(placo::dynamics::PositionTask {lvalue})
1652
+ Frame.
2137
1653
  """
2138
1654
 
2139
- kd: any
1655
+ kd: float # double
2140
1656
  """
2141
-
2142
- None( (placo.DynamicsTask)arg1) -> float :
2143
-
2144
- C++ signature :
2145
- double {lvalue} None(placo::dynamics::Task {lvalue})
1657
+ D gain for position control (if negative, will be critically damped)
2146
1658
  """
2147
1659
 
2148
- kp: any
1660
+ kp: float # double
2149
1661
  """
2150
-
2151
- None( (placo.DynamicsTask)arg1) -> float :
2152
-
2153
- C++ signature :
2154
- double {lvalue} None(placo::dynamics::Task {lvalue})
1662
+ K gain for position control.
2155
1663
  """
2156
1664
 
2157
- mask: any
1665
+ mask: AxisesMask # placo::tools::AxisesMask
2158
1666
  """
2159
-
2160
- None( (placo.DynamicsPositionTask)arg1) -> placo.AxisesMask :
2161
-
2162
- C++ signature :
2163
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::PositionTask {lvalue})
1667
+ Mask.
2164
1668
  """
2165
1669
 
2166
- name: any
1670
+ name: str # std::string
2167
1671
  """
2168
-
2169
- None( (placo.Prioritized)arg1) -> str :
2170
-
2171
- C++ signature :
2172
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1672
+ Object name.
2173
1673
  """
2174
1674
 
2175
1675
  priority: str
@@ -2177,25 +1677,14 @@ None( (placo.Prioritized)arg1) -> str :
2177
1677
  Priority [str]
2178
1678
  """
2179
1679
 
2180
- target_world: any
1680
+ target_world: numpy.ndarray # Eigen::Vector3d
2181
1681
  """
2182
-
2183
- None( (placo.DynamicsPositionTask)arg1) -> object :
2184
-
2185
- C++ signature :
2186
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
1682
+ Target position in the world.
2187
1683
  """
2188
1684
 
2189
1685
 
2190
1686
  class DynamicsRelativeFrameTask:
2191
1687
  T_a_b: any
2192
- """
2193
-
2194
- None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
2195
-
2196
- C++ signature :
2197
- Eigen::Transform<double, 3, 2, 0> None(placo::dynamics::RelativeFrameTask {lvalue})
2198
- """
2199
1688
 
2200
1689
  def __init__(
2201
1690
  arg1: object,
@@ -2231,22 +1720,14 @@ None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
2231
1720
 
2232
1721
 
2233
1722
  class DynamicsRelativeOrientationTask:
2234
- A: any
1723
+ A: numpy.ndarray # Eigen::MatrixXd
2235
1724
  """
2236
-
2237
- None( (placo.DynamicsTask)arg1) -> object :
2238
-
2239
- C++ signature :
2240
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1725
+ A matrix in Ax = b, where x is the accelerations.
2241
1726
  """
2242
1727
 
2243
- R_a_b: any
1728
+ R_a_b: numpy.ndarray # Eigen::Matrix3d
2244
1729
  """
2245
-
2246
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2247
-
2248
- C++ signature :
2249
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1730
+ Target relative orientation.
2250
1731
  """
2251
1732
 
2252
1733
  def __init__(
@@ -2257,13 +1738,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2257
1738
  ) -> None:
2258
1739
  ...
2259
1740
 
2260
- b: any
1741
+ b: numpy.ndarray # Eigen::MatrixXd
2261
1742
  """
2262
-
2263
- None( (placo.DynamicsTask)arg1) -> object :
2264
-
2265
- C++ signature :
2266
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1743
+ b vector in Ax = b, where x is the accelerations
2267
1744
  """
2268
1745
 
2269
1746
  def configure(
@@ -2281,76 +1758,44 @@ None( (placo.DynamicsTask)arg1) -> object :
2281
1758
  """
2282
1759
  ...
2283
1760
 
2284
- derror: any
1761
+ derror: numpy.ndarray # Eigen::MatrixXd
2285
1762
  """
2286
-
2287
- None( (placo.DynamicsTask)arg1) -> object :
2288
-
2289
- C++ signature :
2290
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1763
+ Current velocity error vector.
2291
1764
  """
2292
1765
 
2293
- domega_a_b: any
1766
+ domega_a_b: numpy.ndarray # Eigen::Vector3d
2294
1767
  """
2295
-
2296
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2297
-
2298
- C++ signature :
2299
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1768
+ Target relative angular velocity.
2300
1769
  """
2301
1770
 
2302
- error: any
1771
+ error: numpy.ndarray # Eigen::MatrixXd
2303
1772
  """
2304
-
2305
- None( (placo.DynamicsTask)arg1) -> object :
2306
-
2307
- C++ signature :
2308
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1773
+ Current error vector.
2309
1774
  """
2310
1775
 
2311
- kd: any
1776
+ kd: float # double
2312
1777
  """
2313
-
2314
- None( (placo.DynamicsTask)arg1) -> float :
2315
-
2316
- C++ signature :
2317
- double {lvalue} None(placo::dynamics::Task {lvalue})
1778
+ D gain for position control (if negative, will be critically damped)
2318
1779
  """
2319
1780
 
2320
- kp: any
1781
+ kp: float # double
2321
1782
  """
2322
-
2323
- None( (placo.DynamicsTask)arg1) -> float :
2324
-
2325
- C++ signature :
2326
- double {lvalue} None(placo::dynamics::Task {lvalue})
1783
+ K gain for position control.
2327
1784
  """
2328
1785
 
2329
- mask: any
1786
+ mask: AxisesMask # placo::tools::AxisesMask
2330
1787
  """
2331
-
2332
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> placo.AxisesMask :
2333
-
2334
- C++ signature :
2335
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1788
+ Mask.
2336
1789
  """
2337
1790
 
2338
- name: any
1791
+ name: str # std::string
2339
1792
  """
2340
-
2341
- None( (placo.Prioritized)arg1) -> str :
2342
-
2343
- C++ signature :
2344
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1793
+ Object name.
2345
1794
  """
2346
1795
 
2347
- omega_a_b: any
1796
+ omega_a_b: numpy.ndarray # Eigen::Vector3d
2348
1797
  """
2349
-
2350
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2351
-
2352
- C++ signature :
2353
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1798
+ Target relative angular velocity.
2354
1799
  """
2355
1800
 
2356
1801
  priority: str
@@ -2360,13 +1805,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2360
1805
 
2361
1806
 
2362
1807
  class DynamicsRelativePositionTask:
2363
- A: any
1808
+ A: numpy.ndarray # Eigen::MatrixXd
2364
1809
  """
2365
-
2366
- None( (placo.DynamicsTask)arg1) -> object :
2367
-
2368
- C++ signature :
2369
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1810
+ A matrix in Ax = b, where x is the accelerations.
2370
1811
  """
2371
1812
 
2372
1813
  def __init__(
@@ -2377,13 +1818,9 @@ None( (placo.DynamicsTask)arg1) -> object :
2377
1818
  ) -> None:
2378
1819
  ...
2379
1820
 
2380
- b: any
1821
+ b: numpy.ndarray # Eigen::MatrixXd
2381
1822
  """
2382
-
2383
- None( (placo.DynamicsTask)arg1) -> object :
2384
-
2385
- C++ signature :
2386
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1823
+ b vector in Ax = b, where x is the accelerations
2387
1824
  """
2388
1825
 
2389
1826
  def configure(
@@ -2401,76 +1838,44 @@ None( (placo.DynamicsTask)arg1) -> object :
2401
1838
  """
2402
1839
  ...
2403
1840
 
2404
- ddtarget: any
1841
+ ddtarget: numpy.ndarray # Eigen::Vector3d
2405
1842
  """
2406
-
2407
- None( (placo.DynamicsRelativePositionTask)arg1) -> object :
2408
-
2409
- C++ signature :
2410
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1843
+ Target relative acceleration.
2411
1844
  """
2412
1845
 
2413
- derror: any
1846
+ derror: numpy.ndarray # Eigen::MatrixXd
2414
1847
  """
2415
-
2416
- None( (placo.DynamicsTask)arg1) -> object :
2417
-
2418
- C++ signature :
2419
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1848
+ Current velocity error vector.
2420
1849
  """
2421
1850
 
2422
- dtarget: any
1851
+ dtarget: numpy.ndarray # Eigen::Vector3d
2423
1852
  """
2424
-
2425
- None( (placo.DynamicsRelativePositionTask)arg1) -> object :
2426
-
2427
- C++ signature :
2428
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1853
+ Target relative velocity.
2429
1854
  """
2430
1855
 
2431
- error: any
1856
+ error: numpy.ndarray # Eigen::MatrixXd
2432
1857
  """
2433
-
2434
- None( (placo.DynamicsTask)arg1) -> object :
2435
-
2436
- C++ signature :
2437
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1858
+ Current error vector.
2438
1859
  """
2439
1860
 
2440
- kd: any
1861
+ kd: float # double
2441
1862
  """
2442
-
2443
- None( (placo.DynamicsTask)arg1) -> float :
2444
-
2445
- C++ signature :
2446
- double {lvalue} None(placo::dynamics::Task {lvalue})
1863
+ D gain for position control (if negative, will be critically damped)
2447
1864
  """
2448
1865
 
2449
- kp: any
1866
+ kp: float # double
2450
1867
  """
2451
-
2452
- None( (placo.DynamicsTask)arg1) -> float :
2453
-
2454
- C++ signature :
2455
- double {lvalue} None(placo::dynamics::Task {lvalue})
1868
+ K gain for position control.
2456
1869
  """
2457
1870
 
2458
- mask: any
1871
+ mask: AxisesMask # placo::tools::AxisesMask
2459
1872
  """
2460
-
2461
- None( (placo.DynamicsRelativePositionTask)arg1) -> placo.AxisesMask :
2462
-
2463
- C++ signature :
2464
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1873
+ Mask.
2465
1874
  """
2466
1875
 
2467
- name: any
1876
+ name: str # std::string
2468
1877
  """
2469
-
2470
- None( (placo.Prioritized)arg1) -> str :
2471
-
2472
- C++ signature :
2473
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1878
+ Object name.
2474
1879
  """
2475
1880
 
2476
1881
  priority: str
@@ -2478,13 +1883,9 @@ None( (placo.Prioritized)arg1) -> str :
2478
1883
  Priority [str]
2479
1884
  """
2480
1885
 
2481
- target: any
1886
+ target: numpy.ndarray # Eigen::Vector3d
2482
1887
  """
2483
-
2484
- None( (placo.DynamicsRelativePositionTask)arg1) -> object :
2485
-
2486
- C++ signature :
2487
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1888
+ Target relative position.
2488
1889
  """
2489
1890
 
2490
1891
 
@@ -2741,22 +2142,14 @@ class DynamicsSolver:
2741
2142
  ) -> int:
2742
2143
  ...
2743
2144
 
2744
- damping: any
2145
+ damping: float # double
2745
2146
  """
2746
-
2747
- None( (placo.DynamicsSolver)arg1) -> float :
2748
-
2749
- C++ signature :
2750
- double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2147
+ Global damping that is added to all the joints.
2751
2148
  """
2752
2149
 
2753
- dt: any
2150
+ dt: float # double
2754
2151
  """
2755
-
2756
- None( (placo.DynamicsSolver)arg1) -> float :
2757
-
2758
- C++ signature :
2759
- double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2152
+ Solver dt (seconds)
2760
2153
  """
2761
2154
 
2762
2155
  def dump_status(
@@ -2803,13 +2196,9 @@ None( (placo.DynamicsSolver)arg1) -> float :
2803
2196
  """
2804
2197
  ...
2805
2198
 
2806
- extra_force: any
2199
+ extra_force: numpy.ndarray # Eigen::VectorXd
2807
2200
  """
2808
-
2809
- None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
2810
-
2811
- C++ signature :
2812
- Eigen::Matrix<double, -1, 1, 0, -1, 1> None(placo::dynamics::DynamicsSolver {lvalue})
2201
+ Extra force to be added to the system (similar to non-linear terms)
2813
2202
  """
2814
2203
 
2815
2204
  def get_contact(
@@ -2818,13 +2207,9 @@ None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
2818
2207
  ) -> Contact:
2819
2208
  ...
2820
2209
 
2821
- gravity_only: any
2210
+ gravity_only: bool # bool
2822
2211
  """
2823
-
2824
- None( (placo.DynamicsSolver)arg1) -> bool :
2825
-
2826
- C++ signature :
2827
- bool {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2212
+ Use gravity only (no coriolis, no centrifugal)
2828
2213
  """
2829
2214
 
2830
2215
  def mask_fbase(
@@ -2836,13 +2221,9 @@ None( (placo.DynamicsSolver)arg1) -> bool :
2836
2221
  """
2837
2222
  ...
2838
2223
 
2839
- problem: any
2224
+ problem: Problem # placo::problem::Problem
2840
2225
  """
2841
-
2842
- None( (placo.DynamicsSolver)arg1) -> object :
2843
-
2844
- C++ signature :
2845
- placo::problem::Problem {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2226
+ Instance of the problem.
2846
2227
  """
2847
2228
 
2848
2229
  def remove_constraint(
@@ -2876,14 +2257,7 @@ None( (placo.DynamicsSolver)arg1) -> object :
2876
2257
  """
2877
2258
  ...
2878
2259
 
2879
- robot: any
2880
- """
2881
-
2882
- None( (placo.DynamicsSolver)arg1) -> object :
2883
-
2884
- C++ signature :
2885
- placo::model::RobotWrapper None(placo::dynamics::DynamicsSolver)
2886
- """
2260
+ robot: RobotWrapper # placo::model::RobotWrapper
2887
2261
 
2888
2262
  def set_kd(
2889
2263
  self,
@@ -2929,13 +2303,9 @@ None( (placo.DynamicsSolver)arg1) -> object :
2929
2303
  ) -> DynamicsSolverResult:
2930
2304
  ...
2931
2305
 
2932
- torque_cost: any
2306
+ torque_cost: float # double
2933
2307
  """
2934
-
2935
- None( (placo.DynamicsSolver)arg1) -> float :
2936
-
2937
- C++ signature :
2938
- double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2308
+ Cost for torque regularization (1e-3 by default)
2939
2309
  """
2940
2310
 
2941
2311
 
@@ -2945,41 +2315,13 @@ class DynamicsSolverResult:
2945
2315
  ) -> None:
2946
2316
  ...
2947
2317
 
2948
- qdd: any
2949
- """
2950
-
2951
- None( (placo.DynamicsSolverResult)arg1) -> object :
2318
+ qdd: numpy.ndarray # Eigen::VectorXd
2952
2319
 
2953
- C++ signature :
2954
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2955
- """
2956
-
2957
- success: any
2958
- """
2959
-
2960
- None( (placo.DynamicsSolverResult)arg1) -> bool :
2320
+ success: bool # bool
2961
2321
 
2962
- C++ signature :
2963
- bool {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2964
- """
2965
-
2966
- tau: any
2967
- """
2968
-
2969
- None( (placo.DynamicsSolverResult)arg1) -> object :
2970
-
2971
- C++ signature :
2972
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2973
- """
2974
-
2975
- tau_contacts: any
2976
- """
2977
-
2978
- None( (placo.DynamicsSolverResult)arg1) -> object :
2322
+ tau: numpy.ndarray # Eigen::VectorXd
2979
2323
 
2980
- C++ signature :
2981
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2982
- """
2324
+ tau_contacts: numpy.ndarray # Eigen::VectorXd
2983
2325
 
2984
2326
  def tau_dict(
2985
2327
  arg1: DynamicsSolverResult,
@@ -2989,26 +2331,18 @@ None( (placo.DynamicsSolverResult)arg1) -> object :
2989
2331
 
2990
2332
 
2991
2333
  class DynamicsTask:
2992
- A: any
2334
+ A: numpy.ndarray # Eigen::MatrixXd
2993
2335
  """
2994
-
2995
- None( (placo.DynamicsTask)arg1) -> object :
2996
-
2997
- C++ signature :
2998
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2336
+ A matrix in Ax = b, where x is the accelerations.
2999
2337
  """
3000
2338
 
3001
2339
  def __init__(
3002
2340
  ) -> any:
3003
2341
  ...
3004
2342
 
3005
- b: any
2343
+ b: numpy.ndarray # Eigen::MatrixXd
3006
2344
  """
3007
-
3008
- None( (placo.DynamicsTask)arg1) -> object :
3009
-
3010
- C++ signature :
3011
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2345
+ b vector in Ax = b, where x is the accelerations
3012
2346
  """
3013
2347
 
3014
2348
  def configure(
@@ -3026,49 +2360,29 @@ None( (placo.DynamicsTask)arg1) -> object :
3026
2360
  """
3027
2361
  ...
3028
2362
 
3029
- derror: any
2363
+ derror: numpy.ndarray # Eigen::MatrixXd
3030
2364
  """
3031
-
3032
- None( (placo.DynamicsTask)arg1) -> object :
3033
-
3034
- C++ signature :
3035
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2365
+ Current velocity error vector.
3036
2366
  """
3037
2367
 
3038
- error: any
2368
+ error: numpy.ndarray # Eigen::MatrixXd
3039
2369
  """
3040
-
3041
- None( (placo.DynamicsTask)arg1) -> object :
3042
-
3043
- C++ signature :
3044
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2370
+ Current error vector.
3045
2371
  """
3046
2372
 
3047
- kd: any
2373
+ kd: float # double
3048
2374
  """
3049
-
3050
- None( (placo.DynamicsTask)arg1) -> float :
3051
-
3052
- C++ signature :
3053
- double {lvalue} None(placo::dynamics::Task {lvalue})
2375
+ D gain for position control (if negative, will be critically damped)
3054
2376
  """
3055
2377
 
3056
- kp: any
2378
+ kp: float # double
3057
2379
  """
3058
-
3059
- None( (placo.DynamicsTask)arg1) -> float :
3060
-
3061
- C++ signature :
3062
- double {lvalue} None(placo::dynamics::Task {lvalue})
2380
+ K gain for position control.
3063
2381
  """
3064
2382
 
3065
- name: any
2383
+ name: str # std::string
3066
2384
  """
3067
-
3068
- None( (placo.Prioritized)arg1) -> str :
3069
-
3070
- C++ signature :
3071
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
2385
+ Object name.
3072
2386
  """
3073
2387
 
3074
2388
  priority: str
@@ -3078,13 +2392,9 @@ None( (placo.Prioritized)arg1) -> str :
3078
2392
 
3079
2393
 
3080
2394
  class DynamicsTorqueTask:
3081
- A: any
2395
+ A: numpy.ndarray # Eigen::MatrixXd
3082
2396
  """
3083
-
3084
- None( (placo.DynamicsTask)arg1) -> object :
3085
-
3086
- C++ signature :
3087
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2397
+ A matrix in Ax = b, where x is the accelerations.
3088
2398
  """
3089
2399
 
3090
2400
  def __init__(
@@ -3092,13 +2402,9 @@ None( (placo.DynamicsTask)arg1) -> object :
3092
2402
  ) -> None:
3093
2403
  ...
3094
2404
 
3095
- b: any
2405
+ b: numpy.ndarray # Eigen::MatrixXd
3096
2406
  """
3097
-
3098
- None( (placo.DynamicsTask)arg1) -> object :
3099
-
3100
- C++ signature :
3101
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2407
+ b vector in Ax = b, where x is the accelerations
3102
2408
  """
3103
2409
 
3104
2410
  def configure(
@@ -3116,49 +2422,29 @@ None( (placo.DynamicsTask)arg1) -> object :
3116
2422
  """
3117
2423
  ...
3118
2424
 
3119
- derror: any
2425
+ derror: numpy.ndarray # Eigen::MatrixXd
3120
2426
  """
3121
-
3122
- None( (placo.DynamicsTask)arg1) -> object :
3123
-
3124
- C++ signature :
3125
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2427
+ Current velocity error vector.
3126
2428
  """
3127
2429
 
3128
- error: any
2430
+ error: numpy.ndarray # Eigen::MatrixXd
3129
2431
  """
3130
-
3131
- None( (placo.DynamicsTask)arg1) -> object :
3132
-
3133
- C++ signature :
3134
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2432
+ Current error vector.
3135
2433
  """
3136
2434
 
3137
- kd: any
2435
+ kd: float # double
3138
2436
  """
3139
-
3140
- None( (placo.DynamicsTask)arg1) -> float :
3141
-
3142
- C++ signature :
3143
- double {lvalue} None(placo::dynamics::Task {lvalue})
2437
+ D gain for position control (if negative, will be critically damped)
3144
2438
  """
3145
2439
 
3146
- kp: any
2440
+ kp: float # double
3147
2441
  """
3148
-
3149
- None( (placo.DynamicsTask)arg1) -> float :
3150
-
3151
- C++ signature :
3152
- double {lvalue} None(placo::dynamics::Task {lvalue})
2442
+ K gain for position control.
3153
2443
  """
3154
2444
 
3155
- name: any
2445
+ name: str # std::string
3156
2446
  """
3157
-
3158
- None( (placo.Prioritized)arg1) -> str :
3159
-
3160
- C++ signature :
3161
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
2447
+ Object name.
3162
2448
  """
3163
2449
 
3164
2450
  priority: str
@@ -3196,13 +2482,9 @@ None( (placo.Prioritized)arg1) -> str :
3196
2482
 
3197
2483
 
3198
2484
  class Expression:
3199
- A: any
2485
+ A: numpy.ndarray # Eigen::MatrixXd
3200
2486
  """
3201
-
3202
- None( (placo.Expression)arg1) -> object :
3203
-
3204
- C++ signature :
3205
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Expression {lvalue})
2487
+ Expression A matrix, in Ax + b.
3206
2488
  """
3207
2489
 
3208
2490
  def __init__(
@@ -3210,13 +2492,9 @@ None( (placo.Expression)arg1) -> object :
3210
2492
  ) -> any:
3211
2493
  ...
3212
2494
 
3213
- b: any
2495
+ b: numpy.ndarray # Eigen::VectorXd
3214
2496
  """
3215
-
3216
- None( (placo.Expression)arg1) -> object :
3217
-
3218
- C++ signature :
3219
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Expression {lvalue})
2497
+ Expression b vector, in Ax + b.
3220
2498
  """
3221
2499
 
3222
2500
  def cols(
@@ -3345,76 +2623,38 @@ class ExternalWrenchContact:
3345
2623
  """
3346
2624
  ...
3347
2625
 
3348
- active: any
2626
+ active: bool # bool
3349
2627
  """
3350
-
3351
- None( (placo.Contact)arg1) -> bool :
3352
-
3353
- C++ signature :
3354
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
2628
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
3355
2629
  """
3356
2630
 
3357
- frame_index: any
3358
- """
3359
-
3360
- None( (placo.ExternalWrenchContact)arg1) -> int :
2631
+ frame_index: any # pinocchio::FrameIndex
3361
2632
 
3362
- C++ signature :
3363
- unsigned long {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
2633
+ mu: float # double
3364
2634
  """
3365
-
3366
- mu: any
2635
+ Coefficient of friction (if relevant)
3367
2636
  """
3368
-
3369
- None( (placo.Contact)arg1) -> float :
3370
2637
 
3371
- C++ signature :
3372
- double {lvalue} None(placo::dynamics::Contact {lvalue})
3373
- """
2638
+ w_ext: numpy.ndarray # Eigen::VectorXd
3374
2639
 
3375
- w_ext: any
2640
+ weight_forces: float # double
3376
2641
  """
3377
-
3378
- None( (placo.ExternalWrenchContact)arg1) -> object :
3379
-
3380
- C++ signature :
3381
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
2642
+ Weight of forces for the optimization (if relevant)
3382
2643
  """
3383
2644
 
3384
- weight_forces: any
2645
+ weight_moments: float # double
3385
2646
  """
3386
-
3387
- None( (placo.Contact)arg1) -> float :
3388
-
3389
- C++ signature :
3390
- double {lvalue} None(placo::dynamics::Contact {lvalue})
2647
+ Weight of moments for optimization (if relevant)
3391
2648
  """
3392
2649
 
3393
- weight_moments: any
2650
+ weight_tangentials: float # double
3394
2651
  """
3395
-
3396
- None( (placo.Contact)arg1) -> float :
3397
-
3398
- C++ signature :
3399
- double {lvalue} None(placo::dynamics::Contact {lvalue})
3400
- """
3401
-
3402
- weight_tangentials: any
3403
- """
3404
-
3405
- None( (placo.Contact)arg1) -> float :
3406
-
3407
- C++ signature :
3408
- double {lvalue} None(placo::dynamics::Contact {lvalue})
2652
+ Extra cost for tangential forces.
3409
2653
  """
3410
2654
 
3411
- wrench: any
2655
+ wrench: numpy.ndarray # Eigen::VectorXd
3412
2656
  """
3413
-
3414
- None( (placo.Contact)arg1) -> object :
3415
-
3416
- C++ signature :
3417
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
2657
+ Wrench populated after the DynamicsSolver::solve call.
3418
2658
  """
3419
2659
 
3420
2660
 
@@ -3504,32 +2744,11 @@ class Footstep:
3504
2744
  ) -> any:
3505
2745
  ...
3506
2746
 
3507
- foot_length: any
3508
- """
3509
-
3510
- None( (placo.Footstep)arg1) -> float :
2747
+ foot_length: float # double
3511
2748
 
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 :
2749
+ foot_width: float # double
3529
2750
 
3530
- C++ signature :
3531
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3532
- """
2751
+ frame: numpy.ndarray # Eigen::Affine3d
3533
2752
 
3534
2753
  def overlap(
3535
2754
  self,
@@ -3553,14 +2772,7 @@ None( (placo.Footstep)arg1) -> object :
3553
2772
  ) -> None:
3554
2773
  ...
3555
2774
 
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
- """
2775
+ side: any # placo::humanoid::HumanoidRobot::Side
3564
2776
 
3565
2777
  def support_polygon(
3566
2778
  self,
@@ -3789,13 +3001,6 @@ class FootstepsPlannerRepetitive:
3789
3001
 
3790
3002
  class FrameTask:
3791
3003
  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
3004
 
3800
3005
  def __init__(
3801
3006
  self,
@@ -3834,13 +3039,9 @@ None( (placo.FrameTask)arg1) -> object :
3834
3039
 
3835
3040
 
3836
3041
  class GearTask:
3837
- A: any
3042
+ A: numpy.ndarray # Eigen::MatrixXd
3838
3043
  """
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})
3044
+ Matrix A in the task Ax = b, where x are the joint delta positions.
3844
3045
  """
3845
3046
 
3846
3047
  def __init__(
@@ -3866,13 +3067,9 @@ None( (placo.Task)arg1) -> object :
3866
3067
  """
3867
3068
  ...
3868
3069
 
3869
- b: any
3070
+ b: numpy.ndarray # Eigen::MatrixXd
3870
3071
  """
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})
3072
+ Vector b in the task Ax = b, where x are the joint delta positions.
3876
3073
  """
3877
3074
 
3878
3075
  def configure(
@@ -3906,13 +3103,9 @@ None( (placo.Task)arg1) -> object :
3906
3103
  """
3907
3104
  ...
3908
3105
 
3909
- name: any
3106
+ name: str # std::string
3910
3107
  """
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})
3108
+ Object name.
3916
3109
  """
3917
3110
 
3918
3111
  priority: str
@@ -3950,14 +3143,7 @@ class HumanoidParameters:
3950
3143
  ) -> None:
3951
3144
  ...
3952
3145
 
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
- """
3146
+ dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3961
3147
 
3962
3148
  def double_support_duration(
3963
3149
  self,
@@ -3967,13 +3153,9 @@ None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
3967
3153
  """
3968
3154
  ...
3969
3155
 
3970
- double_support_ratio: any
3156
+ double_support_ratio: float # double
3971
3157
  """
3972
-
3973
- None( (placo.HumanoidParameters)arg1) -> float :
3974
-
3975
- C++ signature :
3976
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3158
+ Duration ratio between single support and double support.
3977
3159
  """
3978
3160
 
3979
3161
  def double_support_timesteps(
@@ -4001,49 +3183,29 @@ None( (placo.HumanoidParameters)arg1) -> float :
4001
3183
  """
4002
3184
  ...
4003
3185
 
4004
- feet_spacing: any
3186
+ feet_spacing: float # double
4005
3187
  """
4006
-
4007
- None( (placo.HumanoidParameters)arg1) -> float :
4008
-
4009
- C++ signature :
4010
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3188
+ Lateral spacing between feet [m].
4011
3189
  """
4012
3190
 
4013
- foot_length: any
3191
+ foot_length: float # double
4014
3192
  """
4015
-
4016
- None( (placo.HumanoidParameters)arg1) -> float :
4017
-
4018
- C++ signature :
4019
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3193
+ Foot length [m].
4020
3194
  """
4021
3195
 
4022
- foot_width: any
3196
+ foot_width: float # double
4023
3197
  """
4024
-
4025
- None( (placo.HumanoidParameters)arg1) -> float :
4026
-
4027
- C++ signature :
4028
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3198
+ Foot width [m].
4029
3199
  """
4030
3200
 
4031
- foot_zmp_target_x: any
3201
+ foot_zmp_target_x: float # double
4032
3202
  """
4033
-
4034
- None( (placo.HumanoidParameters)arg1) -> float :
4035
-
4036
- C++ signature :
4037
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3203
+ Target offset for the ZMP x reference trajectory in the foot frame [m].
4038
3204
  """
4039
3205
 
4040
- foot_zmp_target_y: any
3206
+ foot_zmp_target_y: float # double
4041
3207
  """
4042
-
4043
- None( (placo.HumanoidParameters)arg1) -> float :
4044
-
4045
- C++ signature :
4046
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3208
+ Target offset for the ZMP x reference trajectory in the foot frame, positive is "outward" [m].
4047
3209
  """
4048
3210
 
4049
3211
  def has_double_support(
@@ -4054,40 +3216,21 @@ None( (placo.HumanoidParameters)arg1) -> float :
4054
3216
  """
4055
3217
  ...
4056
3218
 
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
- """
3219
+ op_space_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
4065
3220
 
4066
- planned_timesteps: any
3221
+ planned_timesteps: int # int
4067
3222
  """
4068
-
4069
- None( (placo.HumanoidParameters)arg1) -> int :
4070
-
4071
- C++ signature :
4072
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3223
+ Planning horizon for the CoM trajectory.
4073
3224
  """
4074
3225
 
4075
- single_support_duration: any
3226
+ single_support_duration: float # double
4076
3227
  """
4077
-
4078
- None( (placo.HumanoidParameters)arg1) -> float :
4079
-
4080
- C++ signature :
4081
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3228
+ Single support duration [s].
4082
3229
  """
4083
3230
 
4084
- single_support_timesteps: any
3231
+ single_support_timesteps: int # int
4085
3232
  """
4086
-
4087
- None( (placo.HumanoidParameters)arg1) -> int :
4088
-
4089
- C++ signature :
4090
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3233
+ Number of timesteps for one single support.
4091
3234
  """
4092
3235
 
4093
3236
  def startend_double_support_duration(
@@ -4098,13 +3241,9 @@ None( (placo.HumanoidParameters)arg1) -> int :
4098
3241
  """
4099
3242
  ...
4100
3243
 
4101
- startend_double_support_ratio: any
3244
+ startend_double_support_ratio: float # double
4102
3245
  """
4103
-
4104
- None( (placo.HumanoidParameters)arg1) -> float :
4105
-
4106
- C++ signature :
4107
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3246
+ Duration ratio between single support and start/end double support.
4108
3247
  """
4109
3248
 
4110
3249
  def startend_double_support_timesteps(
@@ -4115,103 +3254,59 @@ None( (placo.HumanoidParameters)arg1) -> float :
4115
3254
  """
4116
3255
  ...
4117
3256
 
4118
- walk_com_height: any
3257
+ walk_com_height: float # double
4119
3258
  """
4120
-
4121
- None( (placo.HumanoidParameters)arg1) -> float :
4122
-
4123
- C++ signature :
4124
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3259
+ Target CoM height while walking [m].
4125
3260
  """
4126
3261
 
4127
- walk_dtheta_spacing: any
3262
+ walk_dtheta_spacing: float # double
4128
3263
  """
4129
-
4130
- None( (placo.HumanoidParameters)arg1) -> float :
4131
-
4132
- C++ signature :
4133
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3264
+ How much we need to space the feet per dtheta [m/rad].
4134
3265
  """
4135
3266
 
4136
- walk_foot_height: any
3267
+ walk_foot_height: float # double
4137
3268
  """
4138
-
4139
- None( (placo.HumanoidParameters)arg1) -> float :
4140
-
4141
- C++ signature :
4142
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3269
+ How height the feet are rising while walking [m].
4143
3270
  """
4144
3271
 
4145
- walk_foot_rise_ratio: any
3272
+ walk_foot_rise_ratio: float # double
4146
3273
  """
4147
-
4148
- None( (placo.HumanoidParameters)arg1) -> float :
4149
-
4150
- C++ signature :
4151
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3274
+ ratio of time spent at foot height during the step
4152
3275
  """
4153
3276
 
4154
- walk_max_dtheta: any
3277
+ walk_max_dtheta: float # double
4155
3278
  """
4156
-
4157
- None( (placo.HumanoidParameters)arg1) -> float :
4158
-
4159
- C++ signature :
4160
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3279
+ Maximum step (yaw)
4161
3280
  """
4162
3281
 
4163
- walk_max_dx_backward: any
3282
+ walk_max_dx_backward: float # double
4164
3283
  """
4165
-
4166
- None( (placo.HumanoidParameters)arg1) -> float :
4167
-
4168
- C++ signature :
4169
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3284
+ Maximum step (backward)
4170
3285
  """
4171
3286
 
4172
- walk_max_dx_forward: any
3287
+ walk_max_dx_forward: float # double
4173
3288
  """
4174
-
4175
- None( (placo.HumanoidParameters)arg1) -> float :
4176
-
4177
- C++ signature :
4178
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3289
+ Maximum step (forward)
4179
3290
  """
4180
3291
 
4181
- walk_max_dy: any
3292
+ walk_max_dy: float # double
4182
3293
  """
4183
-
4184
- None( (placo.HumanoidParameters)arg1) -> float :
4185
-
4186
- C++ signature :
4187
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3294
+ Maximum step (lateral)
4188
3295
  """
4189
3296
 
4190
- walk_trunk_pitch: any
3297
+ walk_trunk_pitch: float # double
4191
3298
  """
4192
-
4193
- None( (placo.HumanoidParameters)arg1) -> float :
4194
-
4195
- C++ signature :
4196
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3299
+ Trunk pitch while walking [rad].
4197
3300
  """
4198
3301
 
4199
- zmp_margin: any
3302
+ zmp_margin: float # double
4200
3303
  """
4201
-
4202
- None( (placo.HumanoidParameters)arg1) -> float :
4203
-
4204
- C++ signature :
4205
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3304
+ Margin for the ZMP to live in the support polygon [m].
4206
3305
  """
4207
3306
 
4208
- zmp_reference_weight: any
3307
+ zmp_reference_weight: float # double
4209
3308
  """
4210
-
4211
- None( (placo.HumanoidParameters)arg1) -> float :
4212
-
4213
- C++ signature :
4214
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3309
+ Weight for ZMP reference in the solver.
4215
3310
  """
4216
3311
 
4217
3312
 
@@ -4241,13 +3336,9 @@ class HumanoidRobot:
4241
3336
  """
4242
3337
  ...
4243
3338
 
4244
- collision_model: any
3339
+ collision_model: any # pinocchio::GeometryModel
4245
3340
  """
4246
-
4247
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4248
-
4249
- C++ signature :
4250
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3341
+ Pinocchio collision model.
4251
3342
  """
4252
3343
 
4253
3344
  def com_jacobian(
@@ -4301,7 +3392,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4301
3392
  """
4302
3393
  Computes all minimum distances between current collision pairs.
4303
3394
 
4304
- :return: <Element 'para' at 0xff87f0834770>
3395
+ :return: <Element 'para' at 0xff667495cae0>
4305
3396
  """
4306
3397
  ...
4307
3398
 
@@ -4333,7 +3424,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4333
3424
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4334
3425
 
4335
3426
  :param any frame: the frame for which we want the jacobian
4336
- :return: <Element 'para' at 0xff87f082dc70>
3427
+ :return: <Element 'para' at 0xff66749555e0>
4337
3428
  """
4338
3429
  ...
4339
3430
 
@@ -4346,7 +3437,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4346
3437
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4347
3438
 
4348
3439
  :param any frame: the frame for which we want the jacobian time variation
4349
- :return: <Element 'para' at 0xff87f082a270>
3440
+ :return: <Element 'para' at 0xff667494e040>
4350
3441
  """
4351
3442
  ...
4352
3443
 
@@ -4591,13 +3682,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4591
3682
  """
4592
3683
  ...
4593
3684
 
4594
- model: any
3685
+ model: any # pinocchio::Model
4595
3686
  """
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})
3687
+ Pinocchio model.
4601
3688
  """
4602
3689
 
4603
3690
  def neutral_state(
@@ -4652,7 +3739,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4652
3739
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4653
3740
 
4654
3741
  :param bool stop_at_first: whether to stop at the first collision found
4655
- :return: <Element 'para' at 0xff87f0834e50>
3742
+ :return: <Element 'para' at 0xff667495c810>
4656
3743
  """
4657
3744
  ...
4658
3745
 
@@ -4806,13 +3893,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4806
3893
  """
4807
3894
  ...
4808
3895
 
4809
- state: any
3896
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
4810
3897
  """
4811
-
4812
- None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4813
-
4814
- C++ signature :
4815
- placo::model::RobotWrapper::State {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3898
+ Robot's current state.
4816
3899
  """
4817
3900
 
4818
3901
  def static_gravity_compensation_torques(
@@ -4830,22 +3913,14 @@ None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4830
3913
  ) -> dict:
4831
3914
  ...
4832
3915
 
4833
- support_is_both: any
3916
+ support_is_both: bool # bool
4834
3917
  """
4835
-
4836
- None( (placo.HumanoidRobot)arg1) -> bool :
4837
-
4838
- C++ signature :
4839
- bool {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3918
+ Are both feet supporting the robot.
4840
3919
  """
4841
3920
 
4842
- support_side: any
3921
+ support_side: any # placo::humanoid::HumanoidRobot::Side
4843
3922
  """
4844
-
4845
- None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4846
-
4847
- C++ signature :
4848
- placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3923
+ The current side (left or right) associated with T_world_support.
4849
3924
  """
4850
3925
 
4851
3926
  def torques_from_acceleration_with_fixed_frame(
@@ -4906,13 +3981,9 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4906
3981
  """
4907
3982
  ...
4908
3983
 
4909
- visual_model: any
3984
+ visual_model: any # pinocchio::GeometryModel
4910
3985
  """
4911
-
4912
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4913
-
4914
- C++ signature :
4915
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3986
+ Pinocchio visual model.
4916
3987
  """
4917
3988
 
4918
3989
  def zmp(
@@ -5011,31 +4082,19 @@ class Integrator:
5011
4082
  """
5012
4083
  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
4084
  """
5014
- A: any
4085
+ A: numpy.ndarray # Eigen::MatrixXd
5015
4086
  """
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})
4087
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5021
4088
  """
5022
4089
 
5023
- B: any
4090
+ B: numpy.ndarray # Eigen::MatrixXd
5024
4091
  """
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})
4092
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5030
4093
  """
5031
4094
 
5032
- M: any
4095
+ M: numpy.ndarray # Eigen::MatrixXd
5033
4096
  """
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})
4097
+ The continuous system matrix.
5039
4098
  """
5040
4099
 
5041
4100
  def __init__(
@@ -5069,13 +4128,9 @@ None( (placo.Integrator)arg1) -> object :
5069
4128
  """
5070
4129
  ...
5071
4130
 
5072
- final_transition_matrix: any
4131
+ final_transition_matrix: numpy.ndarray # Eigen::MatrixXd
5073
4132
  """
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})
4133
+ Caching the discrete matrix for the last step.
5079
4134
  """
5080
4135
 
5081
4136
  def get_trajectory(
@@ -5086,13 +4141,9 @@ None( (placo.Integrator)arg1) -> object :
5086
4141
  """
5087
4142
  ...
5088
4143
 
5089
- t_start: any
4144
+ t_start: float # double
5090
4145
  """
5091
-
5092
- None( (placo.Integrator)arg1) -> float :
5093
-
5094
- C++ signature :
5095
- double {lvalue} None(placo::problem::Integrator {lvalue})
4146
+ Time offset for the trajectory.
5096
4147
  """
5097
4148
 
5098
4149
  @staticmethod
@@ -5145,13 +4196,9 @@ class IntegratorTrajectory:
5145
4196
 
5146
4197
 
5147
4198
  class JointSpaceHalfSpacesConstraint:
5148
- A: any
4199
+ A: numpy.ndarray # Eigen::MatrixXd
5149
4200
  """
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})
4201
+ Matrix A in Aq <= b.
5155
4202
  """
5156
4203
 
5157
4204
  def __init__(
@@ -5164,13 +4211,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5164
4211
  """
5165
4212
  ...
5166
4213
 
5167
- b: any
4214
+ b: numpy.ndarray # Eigen::VectorXd
5168
4215
  """
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})
4216
+ Vector b in Aq <= b.
5174
4217
  """
5175
4218
 
5176
4219
  def configure(
@@ -5188,13 +4231,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5188
4231
  """
5189
4232
  ...
5190
4233
 
5191
- name: any
4234
+ name: str # std::string
5192
4235
  """
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})
4236
+ Object name.
5198
4237
  """
5199
4238
 
5200
4239
  priority: str
@@ -5204,13 +4243,9 @@ None( (placo.Prioritized)arg1) -> str :
5204
4243
 
5205
4244
 
5206
4245
  class JointsTask:
5207
- A: any
4246
+ A: numpy.ndarray # Eigen::MatrixXd
5208
4247
  """
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})
4248
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5214
4249
  """
5215
4250
 
5216
4251
  def __init__(
@@ -5221,13 +4256,9 @@ None( (placo.Task)arg1) -> object :
5221
4256
  """
5222
4257
  ...
5223
4258
 
5224
- b: any
4259
+ b: numpy.ndarray # Eigen::MatrixXd
5225
4260
  """
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})
4261
+ Vector b in the task Ax = b, where x are the joint delta positions.
5231
4262
  """
5232
4263
 
5233
4264
  def configure(
@@ -5272,13 +4303,9 @@ None( (placo.Task)arg1) -> object :
5272
4303
  """
5273
4304
  ...
5274
4305
 
5275
- name: any
4306
+ name: str # std::string
5276
4307
  """
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})
4308
+ Object name.
5282
4309
  """
5283
4310
 
5284
4311
  priority: str
@@ -5334,13 +4361,9 @@ class KinematicsConstraint:
5334
4361
  """
5335
4362
  ...
5336
4363
 
5337
- name: any
4364
+ name: str # std::string
5338
4365
  """
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})
4366
+ Object name.
5344
4367
  """
5345
4368
 
5346
4369
  priority: str
@@ -5350,13 +4373,9 @@ None( (placo.Prioritized)arg1) -> str :
5350
4373
 
5351
4374
 
5352
4375
  class KinematicsSolver:
5353
- N: any
4376
+ N: int # int
5354
4377
  """
5355
-
5356
- None( (placo.KinematicsSolver)arg1) -> int :
5357
-
5358
- C++ signature :
5359
- int {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4378
+ Size of the problem (number of variables)
5360
4379
  """
5361
4380
 
5362
4381
  def __init__(
@@ -5670,13 +4689,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
5670
4689
  """
5671
4690
  ...
5672
4691
 
5673
- dt: any
4692
+ dt: float # double
5674
4693
  """
5675
-
5676
- None( (placo.KinematicsSolver)arg1) -> float :
5677
-
5678
- C++ signature :
5679
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4694
+ solver dt (for speeds limiting)
5680
4695
  """
5681
4696
 
5682
4697
  def dump_status(
@@ -5725,13 +4740,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5725
4740
  """
5726
4741
  ...
5727
4742
 
5728
- problem: any
4743
+ problem: Problem # placo::problem::Problem
5729
4744
  """
5730
-
5731
- None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5732
-
5733
- C++ signature :
5734
- placo::problem::Problem {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4745
+ The underlying QP problem.
5735
4746
  """
5736
4747
 
5737
4748
  def remove_constraint(
@@ -5756,22 +4767,14 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5756
4767
  """
5757
4768
  ...
5758
4769
 
5759
- robot: any
4770
+ robot: RobotWrapper # placo::model::RobotWrapper
5760
4771
  """
5761
-
5762
- None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5763
-
5764
- C++ signature :
5765
- placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
4772
+ The robot controlled by this solver.
5766
4773
  """
5767
4774
 
5768
- scale: any
4775
+ scale: float # double
5769
4776
  """
5770
-
5771
- None( (placo.KinematicsSolver)arg1) -> float :
5772
-
5773
- C++ signature :
5774
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4777
+ scale obtained when using tasks scaling
5775
4778
  """
5776
4779
 
5777
4780
  def solve(
@@ -5806,13 +4809,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5806
4809
 
5807
4810
 
5808
4811
  class KineticEnergyRegularizationTask:
5809
- A: any
4812
+ A: numpy.ndarray # Eigen::MatrixXd
5810
4813
  """
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})
4814
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5816
4815
  """
5817
4816
 
5818
4817
  def __init__(
@@ -5820,13 +4819,9 @@ None( (placo.Task)arg1) -> object :
5820
4819
  ) -> None:
5821
4820
  ...
5822
4821
 
5823
- b: any
4822
+ b: numpy.ndarray # Eigen::MatrixXd
5824
4823
  """
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})
4824
+ Vector b in the task Ax = b, where x are the joint delta positions.
5830
4825
  """
5831
4826
 
5832
4827
  def configure(
@@ -5860,13 +4855,9 @@ None( (placo.Task)arg1) -> object :
5860
4855
  """
5861
4856
  ...
5862
4857
 
5863
- name: any
4858
+ name: str # std::string
5864
4859
  """
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})
4860
+ Object name.
5870
4861
  """
5871
4862
 
5872
4863
  priority: str
@@ -5926,14 +4917,7 @@ class LIPM:
5926
4917
  ) -> Expression:
5927
4918
  ...
5928
4919
 
5929
- dt: any
5930
- """
5931
-
5932
- None( (placo.LIPM)arg1) -> float :
5933
-
5934
- C++ signature :
5935
- double {lvalue} None(placo::humanoid::LIPM {lvalue})
5936
- """
4920
+ dt: float # double
5937
4921
 
5938
4922
  def dzmp(
5939
4923
  self,
@@ -5963,31 +4947,10 @@ None( (placo.LIPM)arg1) -> float :
5963
4947
  ...
5964
4948
 
5965
4949
  t_end: any
5966
- """
5967
-
5968
- None( (placo.LIPM)arg1) -> float :
5969
4950
 
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 :
4951
+ t_start: float # double
5987
4952
 
5988
- C++ signature :
5989
- int {lvalue} None(placo::humanoid::LIPM {lvalue})
5990
- """
4953
+ timesteps: int # int
5991
4954
 
5992
4955
  def vel(
5993
4956
  self,
@@ -5995,41 +4958,13 @@ None( (placo.LIPM)arg1) -> int :
5995
4958
  ) -> Expression:
5996
4959
  ...
5997
4960
 
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 :
4961
+ x: Integrator # placo::problem::Integrator
6020
4962
 
6021
- C++ signature :
6022
- placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
6023
- """
4963
+ x_var: Variable # placo::problem::Variable
6024
4964
 
6025
- y_var: any
6026
- """
6027
-
6028
- None( (placo.LIPM)arg1) -> object :
4965
+ y: Integrator # placo::problem::Integrator
6029
4966
 
6030
- C++ signature :
6031
- placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
6032
- """
4967
+ y_var: Variable # placo::problem::Variable
6033
4968
 
6034
4969
  def zmp(
6035
4970
  self,
@@ -6092,13 +5027,9 @@ class LIPMTrajectory:
6092
5027
 
6093
5028
 
6094
5029
  class LineContact:
6095
- R_world_surface: any
5030
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6096
5031
  """
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})
5032
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6102
5033
  """
6103
5034
 
6104
5035
  def __init__(
@@ -6111,31 +5042,19 @@ None( (placo.PointContact)arg1) -> numpy.ndarray :
6111
5042
  """
6112
5043
  ...
6113
5044
 
6114
- active: any
5045
+ active: bool # bool
6115
5046
  """
6116
-
6117
- None( (placo.Contact)arg1) -> bool :
6118
-
6119
- C++ signature :
6120
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5047
+ 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
5048
  """
6122
5049
 
6123
- length: any
5050
+ length: float # double
6124
5051
  """
6125
-
6126
- None( (placo.LineContact)arg1) -> float :
6127
-
6128
- C++ signature :
6129
- double {lvalue} None(placo::dynamics::LineContact {lvalue})
5052
+ Rectangular contact length along local x-axis.
6130
5053
  """
6131
5054
 
6132
- mu: any
5055
+ mu: float # double
6133
5056
  """
6134
-
6135
- None( (placo.Contact)arg1) -> float :
6136
-
6137
- C++ signature :
6138
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5057
+ Coefficient of friction (if relevant)
6139
5058
  """
6140
5059
 
6141
5060
  def orientation_task(
@@ -6148,49 +5067,29 @@ None( (placo.Contact)arg1) -> float :
6148
5067
  ) -> DynamicsPositionTask:
6149
5068
  ...
6150
5069
 
6151
- unilateral: any
5070
+ unilateral: bool # bool
6152
5071
  """
6153
-
6154
- None( (placo.LineContact)arg1) -> bool :
6155
-
6156
- C++ signature :
6157
- bool {lvalue} None(placo::dynamics::LineContact {lvalue})
5072
+ true for unilateral contact with the ground
6158
5073
  """
6159
5074
 
6160
- weight_forces: any
5075
+ weight_forces: float # double
6161
5076
  """
6162
-
6163
- None( (placo.Contact)arg1) -> float :
6164
-
6165
- C++ signature :
6166
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5077
+ Weight of forces for the optimization (if relevant)
6167
5078
  """
6168
5079
 
6169
- weight_moments: any
5080
+ weight_moments: float # double
6170
5081
  """
6171
-
6172
- None( (placo.Contact)arg1) -> float :
6173
-
6174
- C++ signature :
6175
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5082
+ Weight of moments for optimization (if relevant)
6176
5083
  """
6177
5084
 
6178
- weight_tangentials: any
5085
+ weight_tangentials: float # double
6179
5086
  """
6180
-
6181
- None( (placo.Contact)arg1) -> float :
6182
-
6183
- C++ signature :
6184
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5087
+ Extra cost for tangential forces.
6185
5088
  """
6186
5089
 
6187
- wrench: any
5090
+ wrench: numpy.ndarray # Eigen::VectorXd
6188
5091
  """
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})
5092
+ Wrench populated after the DynamicsSolver::solve call.
6194
5093
  """
6195
5094
 
6196
5095
  def zmp(
@@ -6203,13 +5102,9 @@ None( (placo.Contact)arg1) -> object :
6203
5102
 
6204
5103
 
6205
5104
  class ManipulabilityTask:
6206
- A: any
5105
+ A: numpy.ndarray # Eigen::MatrixXd
6207
5106
  """
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})
5107
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6213
5108
  """
6214
5109
 
6215
5110
  def __init__(
@@ -6220,13 +5115,9 @@ None( (placo.Task)arg1) -> object :
6220
5115
  ) -> any:
6221
5116
  ...
6222
5117
 
6223
- b: any
5118
+ b: numpy.ndarray # Eigen::MatrixXd
6224
5119
  """
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})
5120
+ Vector b in the task Ax = b, where x are the joint delta positions.
6230
5121
  """
6231
5122
 
6232
5123
  def configure(
@@ -6261,39 +5152,20 @@ None( (placo.Task)arg1) -> object :
6261
5152
  ...
6262
5153
 
6263
5154
  lambda_: any
6264
- """
6265
-
6266
- None( (placo.ManipulabilityTask)arg1) -> float :
6267
-
6268
- C++ signature :
6269
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
6270
- """
6271
5155
 
6272
- manipulability: any
5156
+ manipulability: float # double
6273
5157
  """
6274
-
6275
- None( (placo.ManipulabilityTask)arg1) -> float :
6276
-
6277
- C++ signature :
6278
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5158
+ The last computed manipulability value.
6279
5159
  """
6280
5160
 
6281
- minimize: any
5161
+ minimize: bool # bool
6282
5162
  """
6283
-
6284
- None( (placo.ManipulabilityTask)arg1) -> bool :
6285
-
6286
- C++ signature :
6287
- bool {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5163
+ Should the manipulability be minimized (can be useful to find singularities)
6288
5164
  """
6289
5165
 
6290
- name: any
5166
+ name: str # std::string
6291
5167
  """
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})
5168
+ Object name.
6297
5169
  """
6298
5170
 
6299
5171
  priority: str
@@ -6311,22 +5183,14 @@ None( (placo.Prioritized)arg1) -> str :
6311
5183
 
6312
5184
 
6313
5185
  class OrientationTask:
6314
- A: any
5186
+ A: numpy.ndarray # Eigen::MatrixXd
6315
5187
  """
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})
5188
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6321
5189
  """
6322
5190
 
6323
- R_world_frame: any
5191
+ R_world_frame: numpy.ndarray # Eigen::Matrix3d
6324
5192
  """
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})
5193
+ Target frame orientation in the world.
6330
5194
  """
6331
5195
 
6332
5196
  def __init__(
@@ -6339,13 +5203,9 @@ None( (placo.OrientationTask)arg1) -> object :
6339
5203
  """
6340
5204
  ...
6341
5205
 
6342
- b: any
5206
+ b: numpy.ndarray # Eigen::MatrixXd
6343
5207
  """
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})
5208
+ Vector b in the task Ax = b, where x are the joint delta positions.
6349
5209
  """
6350
5210
 
6351
5211
  def configure(
@@ -6379,31 +5239,19 @@ None( (placo.Task)arg1) -> object :
6379
5239
  """
6380
5240
  ...
6381
5241
 
6382
- frame_index: any
5242
+ frame_index: any # pinocchio::FrameIndex
6383
5243
  """
6384
-
6385
- None( (placo.OrientationTask)arg1) -> int :
6386
-
6387
- C++ signature :
6388
- unsigned long {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5244
+ Frame.
6389
5245
  """
6390
5246
 
6391
- mask: any
5247
+ mask: AxisesMask # placo::tools::AxisesMask
6392
5248
  """
6393
-
6394
- None( (placo.OrientationTask)arg1) -> placo.AxisesMask :
6395
-
6396
- C++ signature :
6397
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5249
+ Mask.
6398
5250
  """
6399
5251
 
6400
- name: any
5252
+ name: str # std::string
6401
5253
  """
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})
5254
+ Object name.
6407
5255
  """
6408
5256
 
6409
5257
  priority: str
@@ -6421,13 +5269,9 @@ None( (placo.Prioritized)arg1) -> str :
6421
5269
 
6422
5270
 
6423
5271
  class PointContact:
6424
- R_world_surface: any
5272
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6425
5273
  """
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})
5274
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6431
5275
  """
6432
5276
 
6433
5277
  def __init__(
@@ -6440,22 +5284,14 @@ None( (placo.PointContact)arg1) -> object :
6440
5284
  """
6441
5285
  ...
6442
5286
 
6443
- active: any
5287
+ active: bool # bool
6444
5288
  """
6445
-
6446
- None( (placo.Contact)arg1) -> bool :
6447
-
6448
- C++ signature :
6449
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5289
+ 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
5290
  """
6451
5291
 
6452
- mu: any
5292
+ mu: float # double
6453
5293
  """
6454
-
6455
- None( (placo.Contact)arg1) -> float :
6456
-
6457
- C++ signature :
6458
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5294
+ Coefficient of friction (if relevant)
6459
5295
  """
6460
5296
 
6461
5297
  def position_task(
@@ -6463,49 +5299,29 @@ None( (placo.Contact)arg1) -> float :
6463
5299
  ) -> DynamicsPositionTask:
6464
5300
  ...
6465
5301
 
6466
- unilateral: any
5302
+ unilateral: bool # bool
6467
5303
  """
6468
-
6469
- None( (placo.PointContact)arg1) -> bool :
6470
-
6471
- C++ signature :
6472
- bool {lvalue} None(placo::dynamics::PointContact {lvalue})
5304
+ true for unilateral contact with the ground
6473
5305
  """
6474
5306
 
6475
- weight_forces: any
5307
+ weight_forces: float # double
6476
5308
  """
6477
-
6478
- None( (placo.Contact)arg1) -> float :
6479
-
6480
- C++ signature :
6481
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5309
+ Weight of forces for the optimization (if relevant)
6482
5310
  """
6483
5311
 
6484
- weight_moments: any
5312
+ weight_moments: float # double
6485
5313
  """
6486
-
6487
- None( (placo.Contact)arg1) -> float :
6488
-
6489
- C++ signature :
6490
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5314
+ Weight of moments for optimization (if relevant)
6491
5315
  """
6492
5316
 
6493
- weight_tangentials: any
5317
+ weight_tangentials: float # double
6494
5318
  """
6495
-
6496
- None( (placo.Contact)arg1) -> float :
6497
-
6498
- C++ signature :
6499
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5319
+ Extra cost for tangential forces.
6500
5320
  """
6501
5321
 
6502
- wrench: any
5322
+ wrench: numpy.ndarray # Eigen::VectorXd
6503
5323
  """
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})
5324
+ Wrench populated after the DynamicsSolver::solve call.
6509
5325
  """
6510
5326
 
6511
5327
 
@@ -6545,13 +5361,9 @@ class Polynom:
6545
5361
  ) -> any:
6546
5362
  ...
6547
5363
 
6548
- coefficients: any
5364
+ coefficients: numpy.ndarray # Eigen::VectorXd
6549
5365
  """
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})
5366
+ coefficients, from highest to lowest
6555
5367
  """
6556
5368
 
6557
5369
  @staticmethod
@@ -6583,13 +5395,9 @@ None( (placo.Polynom)arg1) -> object :
6583
5395
 
6584
5396
 
6585
5397
  class PositionTask:
6586
- A: any
5398
+ A: numpy.ndarray # Eigen::MatrixXd
6587
5399
  """
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})
5400
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6593
5401
  """
6594
5402
 
6595
5403
  def __init__(
@@ -6602,13 +5410,9 @@ None( (placo.Task)arg1) -> object :
6602
5410
  """
6603
5411
  ...
6604
5412
 
6605
- b: any
5413
+ b: numpy.ndarray # Eigen::MatrixXd
6606
5414
  """
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})
5415
+ Vector b in the task Ax = b, where x are the joint delta positions.
6612
5416
  """
6613
5417
 
6614
5418
  def configure(
@@ -6642,31 +5446,19 @@ None( (placo.Task)arg1) -> object :
6642
5446
  """
6643
5447
  ...
6644
5448
 
6645
- frame_index: any
5449
+ frame_index: any # pinocchio::FrameIndex
6646
5450
  """
6647
-
6648
- None( (placo.PositionTask)arg1) -> int :
6649
-
6650
- C++ signature :
6651
- unsigned long {lvalue} None(placo::kinematics::PositionTask {lvalue})
5451
+ Frame.
6652
5452
  """
6653
5453
 
6654
- mask: any
5454
+ mask: AxisesMask # placo::tools::AxisesMask
6655
5455
  """
6656
-
6657
- None( (placo.PositionTask)arg1) -> placo.AxisesMask :
6658
-
6659
- C++ signature :
6660
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::PositionTask {lvalue})
5456
+ Mask.
6661
5457
  """
6662
5458
 
6663
- name: any
5459
+ name: str # std::string
6664
5460
  """
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})
5461
+ Object name.
6670
5462
  """
6671
5463
 
6672
5464
  priority: str
@@ -6674,13 +5466,9 @@ None( (placo.Prioritized)arg1) -> str :
6674
5466
  Priority [str]
6675
5467
  """
6676
5468
 
6677
- target_world: any
5469
+ target_world: numpy.ndarray # Eigen::Vector3d
6678
5470
  """
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)
5471
+ Target position in the world.
6684
5472
  """
6685
5473
 
6686
5474
  def update(
@@ -6713,13 +5501,9 @@ class Prioritized:
6713
5501
  """
6714
5502
  ...
6715
5503
 
6716
- name: any
5504
+ name: str # std::string
6717
5505
  """
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})
5506
+ Object name.
6723
5507
  """
6724
5508
 
6725
5509
  priority: str
@@ -6780,13 +5564,9 @@ class Problem:
6780
5564
  """
6781
5565
  ...
6782
5566
 
6783
- determined_variables: any
5567
+ determined_variables: int # int
6784
5568
  """
6785
-
6786
- None( (placo.Problem)arg1) -> int :
6787
-
6788
- C++ signature :
6789
- int {lvalue} None(placo::problem::Problem {lvalue})
5569
+ Number of determined variables.
6790
5570
  """
6791
5571
 
6792
5572
  def dump_status(
@@ -6794,76 +5574,44 @@ None( (placo.Problem)arg1) -> int :
6794
5574
  ) -> None:
6795
5575
  ...
6796
5576
 
6797
- free_variables: any
5577
+ free_variables: int # int
6798
5578
  """
6799
-
6800
- None( (placo.Problem)arg1) -> int :
6801
-
6802
- C++ signature :
6803
- int {lvalue} None(placo::problem::Problem {lvalue})
5579
+ Number of free variables to solve.
6804
5580
  """
6805
5581
 
6806
- n_equalities: any
5582
+ n_equalities: int # int
6807
5583
  """
6808
-
6809
- None( (placo.Problem)arg1) -> int :
6810
-
6811
- C++ signature :
6812
- int {lvalue} None(placo::problem::Problem {lvalue})
5584
+ Number of equalities.
6813
5585
  """
6814
5586
 
6815
- n_inequalities: any
5587
+ n_inequalities: int # int
6816
5588
  """
6817
-
6818
- None( (placo.Problem)arg1) -> int :
6819
-
6820
- C++ signature :
6821
- int {lvalue} None(placo::problem::Problem {lvalue})
5589
+ Number of inequality constraints.
6822
5590
  """
6823
5591
 
6824
- n_variables: any
5592
+ n_variables: int # int
6825
5593
  """
6826
-
6827
- None( (placo.Problem)arg1) -> int :
6828
-
6829
- C++ signature :
6830
- int {lvalue} None(placo::problem::Problem {lvalue})
5594
+ Number of problem variables that need to be solved.
6831
5595
  """
6832
5596
 
6833
- regularization: any
5597
+ regularization: float # double
6834
5598
  """
6835
-
6836
- None( (placo.Problem)arg1) -> float :
6837
-
6838
- C++ signature :
6839
- double {lvalue} None(placo::problem::Problem {lvalue})
5599
+ Default internal regularization.
6840
5600
  """
6841
5601
 
6842
- rewrite_equalities: any
5602
+ rewrite_equalities: bool # bool
6843
5603
  """
6844
-
6845
- None( (placo.Problem)arg1) -> bool :
6846
-
6847
- C++ signature :
6848
- bool {lvalue} None(placo::problem::Problem {lvalue})
5604
+ 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
5605
  """
6850
5606
 
6851
- slack_variables: any
5607
+ slack_variables: int # int
6852
5608
  """
6853
-
6854
- None( (placo.Problem)arg1) -> int :
6855
-
6856
- C++ signature :
6857
- int {lvalue} None(placo::problem::Problem {lvalue})
5609
+ Number of slack variables in the solver.
6858
5610
  """
6859
5611
 
6860
- slacks: any
5612
+ slacks: numpy.ndarray # Eigen::VectorXd
6861
5613
  """
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)
5614
+ Computed slack variables.
6867
5615
  """
6868
5616
 
6869
5617
  def solve(
@@ -6874,22 +5622,14 @@ None( (placo.Problem)arg1) -> numpy.ndarray :
6874
5622
  """
6875
5623
  ...
6876
5624
 
6877
- use_sparsity: any
5625
+ use_sparsity: bool # bool
6878
5626
  """
6879
-
6880
- None( (placo.Problem)arg1) -> bool :
6881
-
6882
- C++ signature :
6883
- bool {lvalue} None(placo::problem::Problem {lvalue})
5627
+ 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
5628
  """
6885
5629
 
6886
- x: any
5630
+ x: numpy.ndarray # Eigen::VectorXd
6887
5631
  """
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})
5632
+ Computed result.
6893
5633
  """
6894
5634
 
6895
5635
 
@@ -6914,40 +5654,24 @@ class ProblemConstraint:
6914
5654
  """
6915
5655
  ...
6916
5656
 
6917
- expression: any
5657
+ expression: Expression # placo::problem::Expression
6918
5658
  """
6919
-
6920
- None( (placo.ProblemConstraint)arg1) -> object :
6921
-
6922
- C++ signature :
6923
- placo::problem::Expression {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5659
+ The constraint expression (Ax + b)
6924
5660
  """
6925
5661
 
6926
- is_active: any
5662
+ is_active: bool # bool
6927
5663
  """
6928
-
6929
- None( (placo.ProblemConstraint)arg1) -> bool :
6930
-
6931
- C++ signature :
6932
- bool {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5664
+ This flag will be set by the solver if the constraint is active in the optimal solution.
6933
5665
  """
6934
5666
 
6935
- priority: any
5667
+ priority: any # placo::problem::ProblemConstraint::Priority
6936
5668
  """
6937
-
6938
- None( (placo.ProblemConstraint)arg1) -> str :
6939
-
6940
- C++ signature :
6941
- char const* None(placo::problem::ProblemConstraint)
5669
+ Constraint priority.
6942
5670
  """
6943
5671
 
6944
- weight: any
5672
+ weight: float # double
6945
5673
  """
6946
-
6947
- None( (placo.ProblemConstraint)arg1) -> float :
6948
-
6949
- C++ signature :
6950
- double {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5674
+ Constraint weight (for soft constraints)
6951
5675
  """
6952
5676
 
6953
5677
 
@@ -6989,58 +5713,34 @@ class PuppetContact:
6989
5713
  """
6990
5714
  ...
6991
5715
 
6992
- active: any
5716
+ active: bool # bool
6993
5717
  """
6994
-
6995
- None( (placo.Contact)arg1) -> bool :
6996
-
6997
- C++ signature :
6998
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5718
+ 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
5719
  """
7000
5720
 
7001
- mu: any
5721
+ mu: float # double
7002
5722
  """
7003
-
7004
- None( (placo.Contact)arg1) -> float :
7005
-
7006
- C++ signature :
7007
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5723
+ Coefficient of friction (if relevant)
7008
5724
  """
7009
5725
 
7010
- weight_forces: any
5726
+ weight_forces: float # double
7011
5727
  """
7012
-
7013
- None( (placo.Contact)arg1) -> float :
7014
-
7015
- C++ signature :
7016
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5728
+ Weight of forces for the optimization (if relevant)
7017
5729
  """
7018
5730
 
7019
- weight_moments: any
5731
+ weight_moments: float # double
7020
5732
  """
7021
-
7022
- None( (placo.Contact)arg1) -> float :
7023
-
7024
- C++ signature :
7025
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5733
+ Weight of moments for optimization (if relevant)
7026
5734
  """
7027
5735
 
7028
- weight_tangentials: any
5736
+ weight_tangentials: float # double
7029
5737
  """
7030
-
7031
- None( (placo.Contact)arg1) -> float :
7032
-
7033
- C++ signature :
7034
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5738
+ Extra cost for tangential forces.
7035
5739
  """
7036
5740
 
7037
- wrench: any
5741
+ wrench: numpy.ndarray # Eigen::VectorXd
7038
5742
  """
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})
5743
+ Wrench populated after the DynamicsSolver::solve call.
7044
5744
  """
7045
5745
 
7046
5746
 
@@ -7061,13 +5761,9 @@ class QPError:
7061
5761
 
7062
5762
 
7063
5763
  class RegularizationTask:
7064
- A: any
5764
+ A: numpy.ndarray # Eigen::MatrixXd
7065
5765
  """
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})
5766
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7071
5767
  """
7072
5768
 
7073
5769
  def __init__(
@@ -7075,13 +5771,9 @@ None( (placo.Task)arg1) -> object :
7075
5771
  ) -> None:
7076
5772
  ...
7077
5773
 
7078
- b: any
5774
+ b: numpy.ndarray # Eigen::MatrixXd
7079
5775
  """
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})
5776
+ Vector b in the task Ax = b, where x are the joint delta positions.
7085
5777
  """
7086
5778
 
7087
5779
  def configure(
@@ -7115,13 +5807,9 @@ None( (placo.Task)arg1) -> object :
7115
5807
  """
7116
5808
  ...
7117
5809
 
7118
- name: any
5810
+ name: str # std::string
7119
5811
  """
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})
5812
+ Object name.
7125
5813
  """
7126
5814
 
7127
5815
  priority: str
@@ -7140,13 +5828,6 @@ None( (placo.Prioritized)arg1) -> str :
7140
5828
 
7141
5829
  class RelativeFrameTask:
7142
5830
  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
5831
 
7151
5832
  def __init__(
7152
5833
  self,
@@ -7187,22 +5868,14 @@ None( (placo.RelativeFrameTask)arg1) -> object :
7187
5868
 
7188
5869
 
7189
5870
  class RelativeOrientationTask:
7190
- A: any
5871
+ A: numpy.ndarray # Eigen::MatrixXd
7191
5872
  """
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})
5873
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7197
5874
  """
7198
5875
 
7199
- R_a_b: any
5876
+ R_a_b: numpy.ndarray # Eigen::Matrix3d
7200
5877
  """
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})
5878
+ Target relative orientation of b in a.
7206
5879
  """
7207
5880
 
7208
5881
  def __init__(
@@ -7216,13 +5889,9 @@ None( (placo.RelativeOrientationTask)arg1) -> object :
7216
5889
  """
7217
5890
  ...
7218
5891
 
7219
- b: any
5892
+ b: numpy.ndarray # Eigen::MatrixXd
7220
5893
  """
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})
5894
+ Vector b in the task Ax = b, where x are the joint delta positions.
7226
5895
  """
7227
5896
 
7228
5897
  def configure(
@@ -7256,40 +5925,24 @@ None( (placo.Task)arg1) -> object :
7256
5925
  """
7257
5926
  ...
7258
5927
 
7259
- frame_a: any
5928
+ frame_a: any # pinocchio::FrameIndex
7260
5929
  """
7261
-
7262
- None( (placo.RelativeOrientationTask)arg1) -> int :
7263
-
7264
- C++ signature :
7265
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5930
+ Frame A.
7266
5931
  """
7267
5932
 
7268
- frame_b: any
5933
+ frame_b: any # pinocchio::FrameIndex
7269
5934
  """
7270
-
7271
- None( (placo.RelativeOrientationTask)arg1) -> int :
7272
-
7273
- C++ signature :
7274
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5935
+ Frame B.
7275
5936
  """
7276
5937
 
7277
- mask: any
5938
+ mask: AxisesMask # placo::tools::AxisesMask
7278
5939
  """
7279
-
7280
- None( (placo.RelativeOrientationTask)arg1) -> placo.AxisesMask :
7281
-
7282
- C++ signature :
7283
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5940
+ Mask.
7284
5941
  """
7285
5942
 
7286
- name: any
5943
+ name: str # std::string
7287
5944
  """
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})
5945
+ Object name.
7293
5946
  """
7294
5947
 
7295
5948
  priority: str
@@ -7307,13 +5960,9 @@ None( (placo.Prioritized)arg1) -> str :
7307
5960
 
7308
5961
 
7309
5962
  class RelativePositionTask:
7310
- A: any
5963
+ A: numpy.ndarray # Eigen::MatrixXd
7311
5964
  """
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})
5965
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7317
5966
  """
7318
5967
 
7319
5968
  def __init__(
@@ -7327,13 +5976,9 @@ None( (placo.Task)arg1) -> object :
7327
5976
  """
7328
5977
  ...
7329
5978
 
7330
- b: any
5979
+ b: numpy.ndarray # Eigen::MatrixXd
7331
5980
  """
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})
5981
+ Vector b in the task Ax = b, where x are the joint delta positions.
7337
5982
  """
7338
5983
 
7339
5984
  def configure(
@@ -7367,40 +6012,24 @@ None( (placo.Task)arg1) -> object :
7367
6012
  """
7368
6013
  ...
7369
6014
 
7370
- frame_a: any
6015
+ frame_a: any # pinocchio::FrameIndex
7371
6016
  """
7372
-
7373
- None( (placo.RelativePositionTask)arg1) -> int :
7374
-
7375
- C++ signature :
7376
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6017
+ Frame A.
7377
6018
  """
7378
6019
 
7379
- frame_b: any
6020
+ frame_b: any # pinocchio::FrameIndex
7380
6021
  """
7381
-
7382
- None( (placo.RelativePositionTask)arg1) -> int :
7383
-
7384
- C++ signature :
7385
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6022
+ Frame B.
7386
6023
  """
7387
6024
 
7388
- mask: any
6025
+ mask: AxisesMask # placo::tools::AxisesMask
7389
6026
  """
7390
-
7391
- None( (placo.RelativePositionTask)arg1) -> placo.AxisesMask :
7392
-
7393
- C++ signature :
7394
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6027
+ Mask.
7395
6028
  """
7396
6029
 
7397
- name: any
6030
+ name: str # std::string
7398
6031
  """
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})
6032
+ Object name.
7404
6033
  """
7405
6034
 
7406
6035
  priority: str
@@ -7408,13 +6037,9 @@ None( (placo.Prioritized)arg1) -> str :
7408
6037
  Priority [str]
7409
6038
  """
7410
6039
 
7411
- target: any
6040
+ target: numpy.ndarray # Eigen::Vector3d
7412
6041
  """
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})
6042
+ Target position of B in A.
7418
6043
  """
7419
6044
 
7420
6045
  def update(
@@ -7459,13 +6084,9 @@ class RobotWrapper:
7459
6084
  """
7460
6085
  ...
7461
6086
 
7462
- collision_model: any
6087
+ collision_model: any # pinocchio::GeometryModel
7463
6088
  """
7464
-
7465
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
7466
-
7467
- C++ signature :
7468
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6089
+ Pinocchio collision model.
7469
6090
  """
7470
6091
 
7471
6092
  def com_jacobian(
@@ -7506,7 +6127,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7506
6127
  """
7507
6128
  Computes all minimum distances between current collision pairs.
7508
6129
 
7509
- :return: <Element 'para' at 0xff87f0849630>
6130
+ :return: <Element 'para' at 0xff6674977f40>
7510
6131
  """
7511
6132
  ...
7512
6133
 
@@ -7519,7 +6140,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7519
6140
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7520
6141
 
7521
6142
  :param any frame: the frame for which we want the jacobian
7522
- :return: <Element 'para' at 0xff87f08328b0>
6143
+ :return: <Element 'para' at 0xff667496ed60>
7523
6144
  """
7524
6145
  ...
7525
6146
 
@@ -7532,7 +6153,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7532
6153
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7533
6154
 
7534
6155
  :param any frame: the frame for which we want the jacobian time variation
7535
- :return: <Element 'para' at 0xff87f0840bd0>
6156
+ :return: <Element 'para' at 0xff6674960a40>
7536
6157
  """
7537
6158
  ...
7538
6159
 
@@ -7716,13 +6337,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7716
6337
  """
7717
6338
  ...
7718
6339
 
7719
- model: any
6340
+ model: any # pinocchio::Model
7720
6341
  """
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})
6342
+ Pinocchio model.
7726
6343
  """
7727
6344
 
7728
6345
  def neutral_state(
@@ -7770,7 +6387,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7770
6387
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7771
6388
 
7772
6389
  :param bool stop_at_first: whether to stop at the first collision found
7773
- :return: <Element 'para' at 0xff87f08495e0>
6390
+ :return: <Element 'para' at 0xff6674977900>
7774
6391
  """
7775
6392
  ...
7776
6393
 
@@ -7918,13 +6535,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7918
6535
  """
7919
6536
  ...
7920
6537
 
7921
- state: any
6538
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
7922
6539
  """
7923
-
7924
- None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7925
-
7926
- C++ signature :
7927
- placo::model::RobotWrapper::State {lvalue} None(placo::model::RobotWrapper {lvalue})
6540
+ Robot's current state.
7928
6541
  """
7929
6542
 
7930
6543
  def static_gravity_compensation_torques(
@@ -7980,13 +6593,9 @@ None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7980
6593
  """
7981
6594
  ...
7982
6595
 
7983
- visual_model: any
6596
+ visual_model: any # pinocchio::GeometryModel
7984
6597
  """
7985
-
7986
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
7987
-
7988
- C++ signature :
7989
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6598
+ Pinocchio visual model.
7990
6599
  """
7991
6600
 
7992
6601
 
@@ -7996,31 +6605,19 @@ class RobotWrapper_State:
7996
6605
  ) -> None:
7997
6606
  ...
7998
6607
 
7999
- q: any
6608
+ q: numpy.ndarray # Eigen::VectorXd
8000
6609
  """
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})
6610
+ joints configuration $q$
8006
6611
  """
8007
6612
 
8008
- qd: any
6613
+ qd: numpy.ndarray # Eigen::VectorXd
8009
6614
  """
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})
6615
+ joints velocity $\dot q$
8015
6616
  """
8016
6617
 
8017
- qdd: any
6618
+ qdd: numpy.ndarray # Eigen::VectorXd
8018
6619
  """
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})
6620
+ joints acceleration $\ddot q$
8024
6621
  """
8025
6622
 
8026
6623
 
@@ -8030,14 +6627,7 @@ class Segment:
8030
6627
  ) -> any:
8031
6628
  ...
8032
6629
 
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
- """
6630
+ end: numpy.ndarray # Eigen::Vector2d
8041
6631
 
8042
6632
  def half_line_pass_through(
8043
6633
  self,
@@ -8140,14 +6730,7 @@ None( (placo.Segment)arg1) -> object :
8140
6730
  ) -> float:
8141
6731
  ...
8142
6732
 
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
- """
6733
+ start: numpy.ndarray # Eigen::Vector2d
8151
6734
 
8152
6735
 
8153
6736
  class Sparsity:
@@ -8181,13 +6764,9 @@ class Sparsity:
8181
6764
  """
8182
6765
  ...
8183
6766
 
8184
- intervals: any
6767
+ intervals: list[SparsityInterval] # std::vector<placo::problem::Sparsity::Interval>
8185
6768
  """
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)
6769
+ Intervals of non-sparse columns.
8191
6770
  """
8192
6771
 
8193
6772
  def print_intervals(
@@ -8205,22 +6784,14 @@ class SparsityInterval:
8205
6784
  ) -> None:
8206
6785
  ...
8207
6786
 
8208
- end: any
6787
+ end: int # int
8209
6788
  """
8210
-
8211
- None( (placo.SparsityInterval)arg1) -> int :
8212
-
8213
- C++ signature :
8214
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6789
+ End of interval.
8215
6790
  """
8216
6791
 
8217
- start: any
6792
+ start: int # int
8218
6793
  """
8219
-
8220
- None( (placo.SparsityInterval)arg1) -> int :
8221
-
8222
- C++ signature :
8223
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6794
+ Start of interval.
8224
6795
  """
8225
6796
 
8226
6797
 
@@ -8236,23 +6807,9 @@ class Support:
8236
6807
  ) -> None:
8237
6808
  ...
8238
6809
 
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 :
6810
+ elapsed_ratio: float # double
8252
6811
 
8253
- C++ signature :
8254
- bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8255
- """
6812
+ end: bool # bool
8256
6813
 
8257
6814
  def footstep_frame(
8258
6815
  self,
@@ -8265,14 +6822,7 @@ None( (placo.Support)arg1) -> bool :
8265
6822
  """
8266
6823
  ...
8267
6824
 
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
- """
6825
+ footsteps: list[Footstep] # std::vector<placo::humanoid::FootstepsPlanner::Footstep>
8276
6826
 
8277
6827
  def frame(
8278
6828
  self,
@@ -8310,46 +6860,18 @@ None( (placo.Support)arg1) -> object :
8310
6860
  """
8311
6861
  ...
8312
6862
 
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
- """
6863
+ start: bool # bool
8321
6864
 
8322
6865
  def support_polygon(
8323
6866
  self,
8324
6867
  ) -> list[numpy.ndarray]:
8325
6868
  ...
8326
6869
 
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
- """
6870
+ t_start: float # double
8344
6871
 
8345
- time_ratio: any
8346
- """
8347
-
8348
- None( (placo.Support)arg1) -> float :
6872
+ target_world_dcm: numpy.ndarray # Eigen::Vector2d
8349
6873
 
8350
- C++ signature :
8351
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8352
- """
6874
+ time_ratio: float # double
8353
6875
 
8354
6876
 
8355
6877
  class Supports:
@@ -8498,26 +7020,18 @@ class SwingFootTrajectory:
8498
7020
 
8499
7021
 
8500
7022
  class Task:
8501
- A: any
7023
+ A: numpy.ndarray # Eigen::MatrixXd
8502
7024
  """
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})
7025
+ Matrix A in the task Ax = b, where x are the joint delta positions.
8508
7026
  """
8509
7027
 
8510
7028
  def __init__(
8511
7029
  ) -> any:
8512
7030
  ...
8513
7031
 
8514
- b: any
7032
+ b: numpy.ndarray # Eigen::MatrixXd
8515
7033
  """
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})
7034
+ Vector b in the task Ax = b, where x are the joint delta positions.
8521
7035
  """
8522
7036
 
8523
7037
  def configure(
@@ -8551,13 +7065,9 @@ None( (placo.Task)arg1) -> object :
8551
7065
  """
8552
7066
  ...
8553
7067
 
8554
- name: any
7068
+ name: str # std::string
8555
7069
  """
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})
7070
+ Object name.
8561
7071
  """
8562
7072
 
8563
7073
  priority: str
@@ -8584,58 +7094,34 @@ class TaskContact:
8584
7094
  """
8585
7095
  ...
8586
7096
 
8587
- active: any
7097
+ active: bool # bool
8588
7098
  """
8589
-
8590
- None( (placo.Contact)arg1) -> bool :
8591
-
8592
- C++ signature :
8593
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
7099
+ 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
7100
  """
8595
7101
 
8596
- mu: any
7102
+ mu: float # double
8597
7103
  """
8598
-
8599
- None( (placo.Contact)arg1) -> float :
8600
-
8601
- C++ signature :
8602
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7104
+ Coefficient of friction (if relevant)
8603
7105
  """
8604
7106
 
8605
- weight_forces: any
7107
+ weight_forces: float # double
8606
7108
  """
8607
-
8608
- None( (placo.Contact)arg1) -> float :
8609
-
8610
- C++ signature :
8611
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7109
+ Weight of forces for the optimization (if relevant)
8612
7110
  """
8613
7111
 
8614
- weight_moments: any
7112
+ weight_moments: float # double
8615
7113
  """
8616
-
8617
- None( (placo.Contact)arg1) -> float :
8618
-
8619
- C++ signature :
8620
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7114
+ Weight of moments for optimization (if relevant)
8621
7115
  """
8622
7116
 
8623
- weight_tangentials: any
7117
+ weight_tangentials: float # double
8624
7118
  """
8625
-
8626
- None( (placo.Contact)arg1) -> float :
8627
-
8628
- C++ signature :
8629
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7119
+ Extra cost for tangential forces.
8630
7120
  """
8631
7121
 
8632
- wrench: any
7122
+ wrench: numpy.ndarray # Eigen::VectorXd
8633
7123
  """
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})
7124
+ Wrench populated after the DynamicsSolver::solve call.
8639
7125
  """
8640
7126
 
8641
7127
 
@@ -8661,31 +7147,19 @@ class Variable:
8661
7147
  """
8662
7148
  ...
8663
7149
 
8664
- k_end: any
7150
+ k_end: int # int
8665
7151
  """
8666
-
8667
- None( (placo.Variable)arg1) -> int :
8668
-
8669
- C++ signature :
8670
- int {lvalue} None(placo::problem::Variable {lvalue})
7152
+ End offset in the Problem.
8671
7153
  """
8672
7154
 
8673
- k_start: any
7155
+ k_start: int # int
8674
7156
  """
8675
-
8676
- None( (placo.Variable)arg1) -> int :
8677
-
8678
- C++ signature :
8679
- int {lvalue} None(placo::problem::Variable {lvalue})
7157
+ Start offset in the Problem.
8680
7158
  """
8681
7159
 
8682
- value: any
7160
+ value: numpy.ndarray # Eigen::VectorXd
8683
7161
  """
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})
7162
+ Variable value, populated by Problem after a solve.
8689
7163
  """
8690
7164
 
8691
7165
 
@@ -8708,14 +7182,7 @@ class WPGTrajectory:
8708
7182
  """
8709
7183
  ...
8710
7184
 
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
- """
7185
+ com_target_z: float # double
8719
7186
 
8720
7187
  def get_R_world_trunk(
8721
7188
  self,
@@ -8867,28 +7334,14 @@ None( (placo.WPGTrajectory)arg1) -> float :
8867
7334
  ) -> numpy.ndarray:
8868
7335
  ...
8869
7336
 
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
- """
7337
+ parts: list[WPGTrajectoryPart] # std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart>
8878
7338
 
8879
7339
  def print_parts_timings(
8880
7340
  self,
8881
7341
  ) -> None:
8882
7342
  ...
8883
7343
 
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
- """
7344
+ replan_success: bool # bool
8892
7345
 
8893
7346
  def support_is_both(
8894
7347
  self,
@@ -8902,41 +7355,13 @@ None( (placo.WPGTrajectory)arg1) -> bool :
8902
7355
  ) -> any:
8903
7356
  ...
8904
7357
 
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
- """
7358
+ t_end: float # double
8922
7359
 
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
- """
7360
+ t_start: float # double
8931
7361
 
8932
- trunk_roll: any
8933
- """
8934
-
8935
- None( (placo.WPGTrajectory)arg1) -> float :
7362
+ trunk_pitch: float # double
8936
7363
 
8937
- C++ signature :
8938
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8939
- """
7364
+ trunk_roll: float # double
8940
7365
 
8941
7366
 
8942
7367
  class WPGTrajectoryPart:
@@ -8947,32 +7372,11 @@ class WPGTrajectoryPart:
8947
7372
  ) -> None:
8948
7373
  ...
8949
7374
 
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
- """
7375
+ support: Support # placo::humanoid::FootstepsPlanner::Support
8967
7376
 
8968
- t_start: any
8969
- """
8970
-
8971
- None( (placo.WPGTrajectoryPart)arg1) -> float :
7377
+ t_end: float # double
8972
7378
 
8973
- C++ signature :
8974
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8975
- """
7379
+ t_start: float # double
8976
7380
 
8977
7381
 
8978
7382
  class WalkPatternGenerator:
@@ -9050,23 +7454,9 @@ class WalkPatternGenerator:
9050
7454
  """
9051
7455
  ...
9052
7456
 
9053
- soft: any
9054
- """
9055
-
9056
- None( (placo.WalkPatternGenerator)arg1) -> bool :
9057
-
9058
- C++ signature :
9059
- bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9060
- """
7457
+ soft: bool # bool
9061
7458
 
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
- """
7459
+ stop_end_support_weight: float # double
9070
7460
 
9071
7461
  def support_default_duration(
9072
7462
  self,
@@ -9095,14 +7485,7 @@ None( (placo.WalkPatternGenerator)arg1) -> float :
9095
7485
  """
9096
7486
  ...
9097
7487
 
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
- """
7488
+ zmp_in_support_weight: float # double
9106
7489
 
9107
7490
 
9108
7491
  class WalkTasks:
@@ -9111,32 +7494,11 @@ class WalkTasks:
9111
7494
  ) -> None:
9112
7495
  ...
9113
7496
 
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
- """
7497
+ com_task: CoMTask # placo::kinematics::CoMTask
9131
7498
 
9132
- com_y: any
9133
- """
9134
-
9135
- None( (placo.WalkTasks)arg1) -> float :
7499
+ com_x: float # double
9136
7500
 
9137
- C++ signature :
9138
- double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9139
- """
7501
+ com_y: float # double
9140
7502
 
9141
7503
  def get_tasks_error(
9142
7504
  self,
@@ -9150,14 +7512,7 @@ None( (placo.WalkTasks)arg1) -> float :
9150
7512
  ) -> None:
9151
7513
  ...
9152
7514
 
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
- """
7515
+ left_foot_task: FrameTask # placo::kinematics::FrameTask
9161
7516
 
9162
7517
  def reach_initial_pose(
9163
7518
  self,
@@ -9173,59 +7528,17 @@ None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9173
7528
  ) -> None:
9174
7529
  ...
9175
7530
 
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 :
7531
+ right_foot_task: FrameTask # placo::kinematics::FrameTask
9207
7532
 
9208
- C++ signature :
9209
- bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9210
- """
7533
+ scaled: bool # bool
9211
7534
 
9212
- trunk_orientation_task: any
9213
- """
9214
-
9215
- None( (placo.WalkTasks)arg1) -> placo.OrientationTask :
7535
+ solver: KinematicsSolver # placo::kinematics::KinematicsSolver
9216
7536
 
9217
- C++ signature :
9218
- placo::kinematics::OrientationTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9219
- """
7537
+ trunk_mode: bool # bool
9220
7538
 
9221
- trunk_task: any
9222
- """
9223
-
9224
- None( (placo.WalkTasks)arg1) -> placo.PositionTask :
7539
+ trunk_orientation_task: OrientationTask # placo::kinematics::OrientationTask
9225
7540
 
9226
- C++ signature :
9227
- placo::kinematics::PositionTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9228
- """
7541
+ trunk_task: PositionTask # placo::kinematics::PositionTask
9229
7542
 
9230
7543
  def update_tasks(
9231
7544
  self,
@@ -9243,22 +7556,14 @@ None( (placo.WalkTasks)arg1) -> placo.PositionTask :
9243
7556
 
9244
7557
 
9245
7558
  class WheelTask:
9246
- A: any
7559
+ A: numpy.ndarray # Eigen::MatrixXd
9247
7560
  """
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})
7561
+ Matrix A in the task Ax = b, where x are the joint delta positions.
9253
7562
  """
9254
7563
 
9255
- T_world_surface: any
7564
+ T_world_surface: numpy.ndarray # Eigen::Affine3d
9256
7565
  """
9257
-
9258
- None( (placo.WheelTask)arg1) -> object :
9259
-
9260
- C++ signature :
9261
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::kinematics::WheelTask {lvalue})
7566
+ Target position in the world.
9262
7567
  """
9263
7568
 
9264
7569
  def __init__(
@@ -9272,13 +7577,9 @@ None( (placo.WheelTask)arg1) -> object :
9272
7577
  """
9273
7578
  ...
9274
7579
 
9275
- b: any
7580
+ b: numpy.ndarray # Eigen::MatrixXd
9276
7581
  """
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})
7582
+ Vector b in the task Ax = b, where x are the joint delta positions.
9282
7583
  """
9283
7584
 
9284
7585
  def configure(
@@ -9312,31 +7613,19 @@ None( (placo.Task)arg1) -> object :
9312
7613
  """
9313
7614
  ...
9314
7615
 
9315
- joint: any
7616
+ joint: str # std::string
9316
7617
  """
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})
7618
+ Frame.
9322
7619
  """
9323
7620
 
9324
- name: any
7621
+ name: str # std::string
9325
7622
  """
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})
7623
+ Object name.
9331
7624
  """
9332
7625
 
9333
- omniwheel: any
7626
+ omniwheel: bool # bool
9334
7627
  """
9335
-
9336
- None( (placo.WheelTask)arg1) -> bool :
9337
-
9338
- C++ signature :
9339
- bool {lvalue} None(placo::kinematics::WheelTask {lvalue})
7628
+ Omniwheel (can slide laterally)
9340
7629
  """
9341
7630
 
9342
7631
  priority: str
@@ -9344,13 +7633,9 @@ None( (placo.WheelTask)arg1) -> bool :
9344
7633
  Priority [str]
9345
7634
  """
9346
7635
 
9347
- radius: any
7636
+ radius: float # double
9348
7637
  """
9349
-
9350
- None( (placo.WheelTask)arg1) -> float :
9351
-
9352
- C++ signature :
9353
- double {lvalue} None(placo::kinematics::WheelTask {lvalue})
7638
+ Wheel radius.
9354
7639
  """
9355
7640
 
9356
7641
  def update(
@@ -9374,13 +7659,9 @@ class YawConstraint:
9374
7659
  """
9375
7660
  ...
9376
7661
 
9377
- angle_max: any
7662
+ angle_max: float # double
9378
7663
  """
9379
-
9380
- None( (placo.YawConstraint)arg1) -> float :
9381
-
9382
- C++ signature :
9383
- double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
7664
+ Maximum angle allowable by the yaw constraint (yaw is taken for x-axis of b around z-axis in a)
9384
7665
  """
9385
7666
 
9386
7667
  def configure(
@@ -9398,13 +7679,9 @@ None( (placo.YawConstraint)arg1) -> float :
9398
7679
  """
9399
7680
  ...
9400
7681
 
9401
- name: any
7682
+ name: str # std::string
9402
7683
  """
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})
7684
+ Object name.
9408
7685
  """
9409
7686
 
9410
7687
  priority: str