placo 0.9.6__0-cp312-cp312-manylinux_2_28_aarch64.whl → 0.9.8__0-cp312-cp312-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
 
@@ -3512,32 +2752,11 @@ class Footstep:
3512
2752
  ) -> any:
3513
2753
  ...
3514
2754
 
3515
- foot_length: any
3516
- """
3517
-
3518
- None( (placo.Footstep)arg1) -> float :
2755
+ foot_length: float # double
3519
2756
 
3520
- C++ signature :
3521
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3522
- """
3523
-
3524
- foot_width: any
3525
- """
3526
-
3527
- None( (placo.Footstep)arg1) -> float :
3528
-
3529
- C++ signature :
3530
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3531
- """
3532
-
3533
- frame: any
3534
- """
3535
-
3536
- None( (placo.Footstep)arg1) -> object :
2757
+ foot_width: float # double
3537
2758
 
3538
- C++ signature :
3539
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3540
- """
2759
+ frame: numpy.ndarray # Eigen::Affine3d
3541
2760
 
3542
2761
  def overlap(
3543
2762
  self,
@@ -3561,14 +2780,7 @@ None( (placo.Footstep)arg1) -> object :
3561
2780
  ) -> None:
3562
2781
  ...
3563
2782
 
3564
- side: any
3565
- """
3566
-
3567
- None( (placo.Footstep)arg1) -> placo.HumanoidRobot_Side :
3568
-
3569
- C++ signature :
3570
- placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3571
- """
2783
+ side: any # placo::humanoid::HumanoidRobot::Side
3572
2784
 
3573
2785
  def support_polygon(
3574
2786
  self,
@@ -3797,13 +3009,6 @@ class FootstepsPlannerRepetitive:
3797
3009
 
3798
3010
  class FrameTask:
3799
3011
  T_world_frame: any
3800
- """
3801
-
3802
- None( (placo.FrameTask)arg1) -> object :
3803
-
3804
- C++ signature :
3805
- Eigen::Transform<double, 3, 2, 0> None(placo::kinematics::FrameTask {lvalue})
3806
- """
3807
3012
 
3808
3013
  def __init__(
3809
3014
  self,
@@ -3842,13 +3047,9 @@ None( (placo.FrameTask)arg1) -> object :
3842
3047
 
3843
3048
 
3844
3049
  class GearTask:
3845
- A: any
3050
+ A: numpy.ndarray # Eigen::MatrixXd
3846
3051
  """
3847
-
3848
- None( (placo.Task)arg1) -> object :
3849
-
3850
- C++ signature :
3851
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
3052
+ Matrix A in the task Ax = b, where x are the joint delta positions.
3852
3053
  """
3853
3054
 
3854
3055
  def __init__(
@@ -3874,13 +3075,9 @@ None( (placo.Task)arg1) -> object :
3874
3075
  """
3875
3076
  ...
3876
3077
 
3877
- b: any
3078
+ b: numpy.ndarray # Eigen::MatrixXd
3878
3079
  """
3879
-
3880
- None( (placo.Task)arg1) -> object :
3881
-
3882
- C++ signature :
3883
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
3080
+ Vector b in the task Ax = b, where x are the joint delta positions.
3884
3081
  """
3885
3082
 
3886
3083
  def configure(
@@ -3914,13 +3111,9 @@ None( (placo.Task)arg1) -> object :
3914
3111
  """
3915
3112
  ...
3916
3113
 
3917
- name: any
3114
+ name: str # std::string
3918
3115
  """
3919
-
3920
- None( (placo.Prioritized)arg1) -> str :
3921
-
3922
- C++ signature :
3923
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
3116
+ Object name.
3924
3117
  """
3925
3118
 
3926
3119
  priority: str
@@ -3958,14 +3151,7 @@ class HumanoidParameters:
3958
3151
  ) -> None:
3959
3152
  ...
3960
3153
 
3961
- dcm_offset_polygon: any
3962
- """
3963
-
3964
- None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
3965
-
3966
- C++ signature :
3967
- 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})
3968
- """
3154
+ dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3969
3155
 
3970
3156
  def double_support_duration(
3971
3157
  self,
@@ -3975,13 +3161,9 @@ None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
3975
3161
  """
3976
3162
  ...
3977
3163
 
3978
- double_support_ratio: any
3164
+ double_support_ratio: float # double
3979
3165
  """
3980
-
3981
- None( (placo.HumanoidParameters)arg1) -> float :
3982
-
3983
- C++ signature :
3984
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3166
+ Duration ratio between single support and double support.
3985
3167
  """
3986
3168
 
3987
3169
  def double_support_timesteps(
@@ -4009,49 +3191,29 @@ None( (placo.HumanoidParameters)arg1) -> float :
4009
3191
  """
4010
3192
  ...
4011
3193
 
4012
- feet_spacing: any
3194
+ feet_spacing: float # double
4013
3195
  """
4014
-
4015
- None( (placo.HumanoidParameters)arg1) -> float :
4016
-
4017
- C++ signature :
4018
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3196
+ Lateral spacing between feet [m].
4019
3197
  """
4020
3198
 
4021
- foot_length: any
3199
+ foot_length: float # double
4022
3200
  """
4023
-
4024
- None( (placo.HumanoidParameters)arg1) -> float :
4025
-
4026
- C++ signature :
4027
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3201
+ Foot length [m].
4028
3202
  """
4029
3203
 
4030
- foot_width: any
3204
+ foot_width: float # double
4031
3205
  """
4032
-
4033
- None( (placo.HumanoidParameters)arg1) -> float :
4034
-
4035
- C++ signature :
4036
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3206
+ Foot width [m].
4037
3207
  """
4038
3208
 
4039
- foot_zmp_target_x: any
3209
+ foot_zmp_target_x: float # double
4040
3210
  """
4041
-
4042
- None( (placo.HumanoidParameters)arg1) -> float :
4043
-
4044
- C++ signature :
4045
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3211
+ Target offset for the ZMP x reference trajectory in the foot frame [m].
4046
3212
  """
4047
3213
 
4048
- foot_zmp_target_y: any
3214
+ foot_zmp_target_y: float # double
4049
3215
  """
4050
-
4051
- None( (placo.HumanoidParameters)arg1) -> float :
4052
-
4053
- C++ signature :
4054
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3216
+ Target offset for the ZMP x reference trajectory in the foot frame, positive is "outward" [m].
4055
3217
  """
4056
3218
 
4057
3219
  def has_double_support(
@@ -4062,40 +3224,21 @@ None( (placo.HumanoidParameters)arg1) -> float :
4062
3224
  """
4063
3225
  ...
4064
3226
 
4065
- op_space_polygon: any
4066
- """
4067
-
4068
- None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
4069
-
4070
- C++ signature :
4071
- 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})
4072
- """
3227
+ op_space_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
4073
3228
 
4074
- planned_timesteps: any
3229
+ planned_timesteps: int # int
4075
3230
  """
4076
-
4077
- None( (placo.HumanoidParameters)arg1) -> int :
4078
-
4079
- C++ signature :
4080
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3231
+ Planning horizon for the CoM trajectory.
4081
3232
  """
4082
3233
 
4083
- single_support_duration: any
3234
+ single_support_duration: float # double
4084
3235
  """
4085
-
4086
- None( (placo.HumanoidParameters)arg1) -> float :
4087
-
4088
- C++ signature :
4089
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3236
+ Single support duration [s].
4090
3237
  """
4091
3238
 
4092
- single_support_timesteps: any
3239
+ single_support_timesteps: int # int
4093
3240
  """
4094
-
4095
- None( (placo.HumanoidParameters)arg1) -> int :
4096
-
4097
- C++ signature :
4098
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3241
+ Number of timesteps for one single support.
4099
3242
  """
4100
3243
 
4101
3244
  def startend_double_support_duration(
@@ -4106,13 +3249,9 @@ None( (placo.HumanoidParameters)arg1) -> int :
4106
3249
  """
4107
3250
  ...
4108
3251
 
4109
- startend_double_support_ratio: any
3252
+ startend_double_support_ratio: float # double
4110
3253
  """
4111
-
4112
- None( (placo.HumanoidParameters)arg1) -> float :
4113
-
4114
- C++ signature :
4115
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3254
+ Duration ratio between single support and start/end double support.
4116
3255
  """
4117
3256
 
4118
3257
  def startend_double_support_timesteps(
@@ -4123,103 +3262,59 @@ None( (placo.HumanoidParameters)arg1) -> float :
4123
3262
  """
4124
3263
  ...
4125
3264
 
4126
- walk_com_height: any
3265
+ walk_com_height: float # double
4127
3266
  """
4128
-
4129
- None( (placo.HumanoidParameters)arg1) -> float :
4130
-
4131
- C++ signature :
4132
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3267
+ Target CoM height while walking [m].
4133
3268
  """
4134
3269
 
4135
- walk_dtheta_spacing: any
3270
+ walk_dtheta_spacing: float # double
4136
3271
  """
4137
-
4138
- None( (placo.HumanoidParameters)arg1) -> float :
4139
-
4140
- C++ signature :
4141
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3272
+ How much we need to space the feet per dtheta [m/rad].
4142
3273
  """
4143
3274
 
4144
- walk_foot_height: any
3275
+ walk_foot_height: float # double
4145
3276
  """
4146
-
4147
- None( (placo.HumanoidParameters)arg1) -> float :
4148
-
4149
- C++ signature :
4150
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3277
+ How height the feet are rising while walking [m].
4151
3278
  """
4152
3279
 
4153
- walk_foot_rise_ratio: any
3280
+ walk_foot_rise_ratio: float # double
4154
3281
  """
4155
-
4156
- None( (placo.HumanoidParameters)arg1) -> float :
4157
-
4158
- C++ signature :
4159
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3282
+ ratio of time spent at foot height during the step
4160
3283
  """
4161
3284
 
4162
- walk_max_dtheta: any
3285
+ walk_max_dtheta: float # double
4163
3286
  """
4164
-
4165
- None( (placo.HumanoidParameters)arg1) -> float :
4166
-
4167
- C++ signature :
4168
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3287
+ Maximum step (yaw)
4169
3288
  """
4170
3289
 
4171
- walk_max_dx_backward: any
3290
+ walk_max_dx_backward: float # double
4172
3291
  """
4173
-
4174
- None( (placo.HumanoidParameters)arg1) -> float :
4175
-
4176
- C++ signature :
4177
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3292
+ Maximum step (backward)
4178
3293
  """
4179
3294
 
4180
- walk_max_dx_forward: any
3295
+ walk_max_dx_forward: float # double
4181
3296
  """
4182
-
4183
- None( (placo.HumanoidParameters)arg1) -> float :
4184
-
4185
- C++ signature :
4186
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3297
+ Maximum step (forward)
4187
3298
  """
4188
3299
 
4189
- walk_max_dy: any
3300
+ walk_max_dy: float # double
4190
3301
  """
4191
-
4192
- None( (placo.HumanoidParameters)arg1) -> float :
4193
-
4194
- C++ signature :
4195
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3302
+ Maximum step (lateral)
4196
3303
  """
4197
3304
 
4198
- walk_trunk_pitch: any
3305
+ walk_trunk_pitch: float # double
4199
3306
  """
4200
-
4201
- None( (placo.HumanoidParameters)arg1) -> float :
4202
-
4203
- C++ signature :
4204
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3307
+ Trunk pitch while walking [rad].
4205
3308
  """
4206
3309
 
4207
- zmp_margin: any
3310
+ zmp_margin: float # double
4208
3311
  """
4209
-
4210
- None( (placo.HumanoidParameters)arg1) -> float :
4211
-
4212
- C++ signature :
4213
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3312
+ Margin for the ZMP to live in the support polygon [m].
4214
3313
  """
4215
3314
 
4216
- zmp_reference_weight: any
3315
+ zmp_reference_weight: float # double
4217
3316
  """
4218
-
4219
- None( (placo.HumanoidParameters)arg1) -> float :
4220
-
4221
- C++ signature :
4222
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3317
+ Weight for ZMP reference in the solver.
4223
3318
  """
4224
3319
 
4225
3320
 
@@ -4249,13 +3344,9 @@ class HumanoidRobot:
4249
3344
  """
4250
3345
  ...
4251
3346
 
4252
- collision_model: any
3347
+ collision_model: any # pinocchio::GeometryModel
4253
3348
  """
4254
-
4255
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4256
-
4257
- C++ signature :
4258
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3349
+ Pinocchio collision model.
4259
3350
  """
4260
3351
 
4261
3352
  def com_jacobian(
@@ -4309,7 +3400,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4309
3400
  """
4310
3401
  Computes all minimum distances between current collision pairs.
4311
3402
 
4312
- :return: <Element 'para' at 0xff6275ca7c40>
3403
+ :return: <Element 'para' at 0xffe7bcc9f970>
4313
3404
  """
4314
3405
  ...
4315
3406
 
@@ -4341,7 +3432,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4341
3432
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4342
3433
 
4343
3434
  :param any frame: the frame for which we want the jacobian
4344
- :return: <Element 'para' at 0xff6275ca72e0>
3435
+ :return: <Element 'para' at 0xffe7bcc9f010>
4345
3436
  """
4346
3437
  ...
4347
3438
 
@@ -4354,7 +3445,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4354
3445
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4355
3446
 
4356
3447
  :param any frame: the frame for which we want the jacobian time variation
4357
- :return: <Element 'para' at 0xff6275ca5c60>
3448
+ :return: <Element 'para' at 0xffe7bcc9d940>
4358
3449
  """
4359
3450
  ...
4360
3451
 
@@ -4599,13 +3690,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4599
3690
  """
4600
3691
  ...
4601
3692
 
4602
- model: any
3693
+ model: any # pinocchio::Model
4603
3694
  """
4604
-
4605
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4606
-
4607
- C++ signature :
4608
- pinocchio::ModelTpl<double, 0, pinocchio::JointCollectionDefaultTpl> {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3695
+ Pinocchio model.
4609
3696
  """
4610
3697
 
4611
3698
  def neutral_state(
@@ -4660,7 +3747,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4660
3747
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4661
3748
 
4662
3749
  :param bool stop_at_first: whether to stop at the first collision found
4663
- :return: <Element 'para' at 0xff6275cd3ba0>
3750
+ :return: <Element 'para' at 0xffe7bccabe70>
4664
3751
  """
4665
3752
  ...
4666
3753
 
@@ -4814,13 +3901,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4814
3901
  """
4815
3902
  ...
4816
3903
 
4817
- state: any
3904
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
4818
3905
  """
4819
-
4820
- None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4821
-
4822
- C++ signature :
4823
- placo::model::RobotWrapper::State {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3906
+ Robot's current state.
4824
3907
  """
4825
3908
 
4826
3909
  def static_gravity_compensation_torques(
@@ -4838,22 +3921,14 @@ None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4838
3921
  ) -> dict:
4839
3922
  ...
4840
3923
 
4841
- support_is_both: any
3924
+ support_is_both: bool # bool
4842
3925
  """
4843
-
4844
- None( (placo.HumanoidRobot)arg1) -> bool :
4845
-
4846
- C++ signature :
4847
- bool {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3926
+ Are both feet supporting the robot.
4848
3927
  """
4849
3928
 
4850
- support_side: any
3929
+ support_side: any # placo::humanoid::HumanoidRobot::Side
4851
3930
  """
4852
-
4853
- None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4854
-
4855
- C++ signature :
4856
- placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3931
+ The current side (left or right) associated with T_world_support.
4857
3932
  """
4858
3933
 
4859
3934
  def torques_from_acceleration_with_fixed_frame(
@@ -4914,13 +3989,9 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4914
3989
  """
4915
3990
  ...
4916
3991
 
4917
- visual_model: any
3992
+ visual_model: any # pinocchio::GeometryModel
4918
3993
  """
4919
-
4920
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4921
-
4922
- C++ signature :
4923
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3994
+ Pinocchio visual model.
4924
3995
  """
4925
3996
 
4926
3997
  def zmp(
@@ -5027,31 +4098,19 @@ class Integrator:
5027
4098
  """
5028
4099
  Integrator can be used to efficiently build expressions and values over a decision variable that is integrated over time with a given linear system.
5029
4100
  """
5030
- A: any
4101
+ A: numpy.ndarray # Eigen::MatrixXd
5031
4102
  """
5032
-
5033
- None( (placo.Integrator)arg1) -> object :
5034
-
5035
- C++ signature :
5036
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4103
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5037
4104
  """
5038
4105
 
5039
- B: any
4106
+ B: numpy.ndarray # Eigen::MatrixXd
5040
4107
  """
5041
-
5042
- None( (placo.Integrator)arg1) -> object :
5043
-
5044
- C++ signature :
5045
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4108
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5046
4109
  """
5047
4110
 
5048
- M: any
4111
+ M: numpy.ndarray # Eigen::MatrixXd
5049
4112
  """
5050
-
5051
- None( (placo.Integrator)arg1) -> object :
5052
-
5053
- C++ signature :
5054
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4113
+ The continuous system matrix.
5055
4114
  """
5056
4115
 
5057
4116
  def __init__(
@@ -5085,13 +4144,9 @@ None( (placo.Integrator)arg1) -> object :
5085
4144
  """
5086
4145
  ...
5087
4146
 
5088
- final_transition_matrix: any
4147
+ final_transition_matrix: numpy.ndarray # Eigen::MatrixXd
5089
4148
  """
5090
-
5091
- None( (placo.Integrator)arg1) -> object :
5092
-
5093
- C++ signature :
5094
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Integrator {lvalue})
4149
+ Caching the discrete matrix for the last step.
5095
4150
  """
5096
4151
 
5097
4152
  def get_trajectory(
@@ -5102,13 +4157,9 @@ None( (placo.Integrator)arg1) -> object :
5102
4157
  """
5103
4158
  ...
5104
4159
 
5105
- t_start: any
4160
+ t_start: float # double
5106
4161
  """
5107
-
5108
- None( (placo.Integrator)arg1) -> float :
5109
-
5110
- C++ signature :
5111
- double {lvalue} None(placo::problem::Integrator {lvalue})
4162
+ Time offset for the trajectory.
5112
4163
  """
5113
4164
 
5114
4165
  @staticmethod
@@ -5161,13 +4212,9 @@ class IntegratorTrajectory:
5161
4212
 
5162
4213
 
5163
4214
  class JointSpaceHalfSpacesConstraint:
5164
- A: any
4215
+ A: numpy.ndarray # Eigen::MatrixXd
5165
4216
  """
5166
-
5167
- None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5168
-
5169
- C++ signature :
5170
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::JointSpaceHalfSpacesConstraint {lvalue})
4217
+ Matrix A in Aq <= b.
5171
4218
  """
5172
4219
 
5173
4220
  def __init__(
@@ -5180,13 +4227,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5180
4227
  """
5181
4228
  ...
5182
4229
 
5183
- b: any
4230
+ b: numpy.ndarray # Eigen::VectorXd
5184
4231
  """
5185
-
5186
- None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5187
-
5188
- C++ signature :
5189
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::kinematics::JointSpaceHalfSpacesConstraint {lvalue})
4232
+ Vector b in Aq <= b.
5190
4233
  """
5191
4234
 
5192
4235
  def configure(
@@ -5204,13 +4247,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5204
4247
  """
5205
4248
  ...
5206
4249
 
5207
- name: any
4250
+ name: str # std::string
5208
4251
  """
5209
-
5210
- None( (placo.Prioritized)arg1) -> str :
5211
-
5212
- C++ signature :
5213
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4252
+ Object name.
5214
4253
  """
5215
4254
 
5216
4255
  priority: str
@@ -5220,13 +4259,9 @@ None( (placo.Prioritized)arg1) -> str :
5220
4259
 
5221
4260
 
5222
4261
  class JointsTask:
5223
- A: any
4262
+ A: numpy.ndarray # Eigen::MatrixXd
5224
4263
  """
5225
-
5226
- None( (placo.Task)arg1) -> object :
5227
-
5228
- C++ signature :
5229
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4264
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5230
4265
  """
5231
4266
 
5232
4267
  def __init__(
@@ -5237,13 +4272,9 @@ None( (placo.Task)arg1) -> object :
5237
4272
  """
5238
4273
  ...
5239
4274
 
5240
- b: any
4275
+ b: numpy.ndarray # Eigen::MatrixXd
5241
4276
  """
5242
-
5243
- None( (placo.Task)arg1) -> object :
5244
-
5245
- C++ signature :
5246
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4277
+ Vector b in the task Ax = b, where x are the joint delta positions.
5247
4278
  """
5248
4279
 
5249
4280
  def configure(
@@ -5288,13 +4319,9 @@ None( (placo.Task)arg1) -> object :
5288
4319
  """
5289
4320
  ...
5290
4321
 
5291
- name: any
4322
+ name: str # std::string
5292
4323
  """
5293
-
5294
- None( (placo.Prioritized)arg1) -> str :
5295
-
5296
- C++ signature :
5297
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4324
+ Object name.
5298
4325
  """
5299
4326
 
5300
4327
  priority: str
@@ -5350,13 +4377,9 @@ class KinematicsConstraint:
5350
4377
  """
5351
4378
  ...
5352
4379
 
5353
- name: any
4380
+ name: str # std::string
5354
4381
  """
5355
-
5356
- None( (placo.Prioritized)arg1) -> str :
5357
-
5358
- C++ signature :
5359
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4382
+ Object name.
5360
4383
  """
5361
4384
 
5362
4385
  priority: str
@@ -5366,13 +4389,9 @@ None( (placo.Prioritized)arg1) -> str :
5366
4389
 
5367
4390
 
5368
4391
  class KinematicsSolver:
5369
- N: any
4392
+ N: int # int
5370
4393
  """
5371
-
5372
- None( (placo.KinematicsSolver)arg1) -> int :
5373
-
5374
- C++ signature :
5375
- int {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4394
+ Size of the problem (number of variables)
5376
4395
  """
5377
4396
 
5378
4397
  def __init__(
@@ -5686,13 +4705,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
5686
4705
  """
5687
4706
  ...
5688
4707
 
5689
- dt: any
4708
+ dt: float # double
5690
4709
  """
5691
-
5692
- None( (placo.KinematicsSolver)arg1) -> float :
5693
-
5694
- C++ signature :
5695
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4710
+ solver dt (for speeds limiting)
5696
4711
  """
5697
4712
 
5698
4713
  def dump_status(
@@ -5741,13 +4756,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5741
4756
  """
5742
4757
  ...
5743
4758
 
5744
- problem: any
4759
+ problem: Problem # placo::problem::Problem
5745
4760
  """
5746
-
5747
- None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5748
-
5749
- C++ signature :
5750
- placo::problem::Problem {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4761
+ The underlying QP problem.
5751
4762
  """
5752
4763
 
5753
4764
  def remove_constraint(
@@ -5772,22 +4783,14 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5772
4783
  """
5773
4784
  ...
5774
4785
 
5775
- robot: any
4786
+ robot: RobotWrapper # placo::model::RobotWrapper
5776
4787
  """
5777
-
5778
- None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5779
-
5780
- C++ signature :
5781
- placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
4788
+ The robot controlled by this solver.
5782
4789
  """
5783
4790
 
5784
- scale: any
4791
+ scale: float # double
5785
4792
  """
5786
-
5787
- None( (placo.KinematicsSolver)arg1) -> float :
5788
-
5789
- C++ signature :
5790
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4793
+ scale obtained when using tasks scaling
5791
4794
  """
5792
4795
 
5793
4796
  def solve(
@@ -5822,13 +4825,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5822
4825
 
5823
4826
 
5824
4827
  class KineticEnergyRegularizationTask:
5825
- A: any
4828
+ A: numpy.ndarray # Eigen::MatrixXd
5826
4829
  """
5827
-
5828
- None( (placo.Task)arg1) -> object :
5829
-
5830
- C++ signature :
5831
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4830
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5832
4831
  """
5833
4832
 
5834
4833
  def __init__(
@@ -5836,13 +4835,9 @@ None( (placo.Task)arg1) -> object :
5836
4835
  ) -> None:
5837
4836
  ...
5838
4837
 
5839
- b: any
4838
+ b: numpy.ndarray # Eigen::MatrixXd
5840
4839
  """
5841
-
5842
- None( (placo.Task)arg1) -> object :
5843
-
5844
- C++ signature :
5845
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
4840
+ Vector b in the task Ax = b, where x are the joint delta positions.
5846
4841
  """
5847
4842
 
5848
4843
  def configure(
@@ -5876,13 +4871,9 @@ None( (placo.Task)arg1) -> object :
5876
4871
  """
5877
4872
  ...
5878
4873
 
5879
- name: any
4874
+ name: str # std::string
5880
4875
  """
5881
-
5882
- None( (placo.Prioritized)arg1) -> str :
5883
-
5884
- C++ signature :
5885
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
4876
+ Object name.
5886
4877
  """
5887
4878
 
5888
4879
  priority: str
@@ -5942,14 +4933,7 @@ class LIPM:
5942
4933
  ) -> Expression:
5943
4934
  ...
5944
4935
 
5945
- dt: any
5946
- """
5947
-
5948
- None( (placo.LIPM)arg1) -> float :
5949
-
5950
- C++ signature :
5951
- double {lvalue} None(placo::humanoid::LIPM {lvalue})
5952
- """
4936
+ dt: float # double
5953
4937
 
5954
4938
  def dzmp(
5955
4939
  self,
@@ -5979,31 +4963,10 @@ None( (placo.LIPM)arg1) -> float :
5979
4963
  ...
5980
4964
 
5981
4965
  t_end: any
5982
- """
5983
-
5984
- None( (placo.LIPM)arg1) -> float :
5985
4966
 
5986
- C++ signature :
5987
- double None(placo::humanoid::LIPM {lvalue})
5988
- """
5989
-
5990
- t_start: any
5991
- """
5992
-
5993
- None( (placo.LIPM)arg1) -> float :
5994
-
5995
- C++ signature :
5996
- double {lvalue} None(placo::humanoid::LIPM {lvalue})
5997
- """
5998
-
5999
- timesteps: any
6000
- """
6001
-
6002
- None( (placo.LIPM)arg1) -> int :
4967
+ t_start: float # double
6003
4968
 
6004
- C++ signature :
6005
- int {lvalue} None(placo::humanoid::LIPM {lvalue})
6006
- """
4969
+ timesteps: int # int
6007
4970
 
6008
4971
  def vel(
6009
4972
  self,
@@ -6011,41 +4974,13 @@ None( (placo.LIPM)arg1) -> int :
6011
4974
  ) -> Expression:
6012
4975
  ...
6013
4976
 
6014
- x: any
6015
- """
6016
-
6017
- None( (placo.LIPM)arg1) -> placo.Integrator :
6018
-
6019
- C++ signature :
6020
- placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
6021
- """
6022
-
6023
- x_var: any
6024
- """
6025
-
6026
- None( (placo.LIPM)arg1) -> object :
6027
-
6028
- C++ signature :
6029
- placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
6030
- """
6031
-
6032
- y: any
6033
- """
6034
-
6035
- None( (placo.LIPM)arg1) -> placo.Integrator :
4977
+ x: Integrator # placo::problem::Integrator
6036
4978
 
6037
- C++ signature :
6038
- placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
6039
- """
4979
+ x_var: Variable # placo::problem::Variable
6040
4980
 
6041
- y_var: any
6042
- """
6043
-
6044
- None( (placo.LIPM)arg1) -> object :
4981
+ y: Integrator # placo::problem::Integrator
6045
4982
 
6046
- C++ signature :
6047
- placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
6048
- """
4983
+ y_var: Variable # placo::problem::Variable
6049
4984
 
6050
4985
  def zmp(
6051
4986
  self,
@@ -6108,13 +5043,9 @@ class LIPMTrajectory:
6108
5043
 
6109
5044
 
6110
5045
  class LineContact:
6111
- R_world_surface: any
5046
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6112
5047
  """
6113
-
6114
- None( (placo.PointContact)arg1) -> numpy.ndarray :
6115
-
6116
- C++ signature :
6117
- Eigen::Matrix<double, 3, 3, 0, 3, 3> None(placo::dynamics::PointContact {lvalue})
5048
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6118
5049
  """
6119
5050
 
6120
5051
  def __init__(
@@ -6127,31 +5058,19 @@ None( (placo.PointContact)arg1) -> numpy.ndarray :
6127
5058
  """
6128
5059
  ...
6129
5060
 
6130
- active: any
5061
+ active: bool # bool
6131
5062
  """
6132
-
6133
- None( (placo.Contact)arg1) -> bool :
6134
-
6135
- C++ signature :
6136
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5063
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
6137
5064
  """
6138
5065
 
6139
- length: any
5066
+ length: float # double
6140
5067
  """
6141
-
6142
- None( (placo.LineContact)arg1) -> float :
6143
-
6144
- C++ signature :
6145
- double {lvalue} None(placo::dynamics::LineContact {lvalue})
5068
+ Rectangular contact length along local x-axis.
6146
5069
  """
6147
5070
 
6148
- mu: any
5071
+ mu: float # double
6149
5072
  """
6150
-
6151
- None( (placo.Contact)arg1) -> float :
6152
-
6153
- C++ signature :
6154
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5073
+ Coefficient of friction (if relevant)
6155
5074
  """
6156
5075
 
6157
5076
  def orientation_task(
@@ -6164,49 +5083,29 @@ None( (placo.Contact)arg1) -> float :
6164
5083
  ) -> DynamicsPositionTask:
6165
5084
  ...
6166
5085
 
6167
- unilateral: any
5086
+ unilateral: bool # bool
6168
5087
  """
6169
-
6170
- None( (placo.LineContact)arg1) -> bool :
6171
-
6172
- C++ signature :
6173
- bool {lvalue} None(placo::dynamics::LineContact {lvalue})
5088
+ true for unilateral contact with the ground
6174
5089
  """
6175
5090
 
6176
- weight_forces: any
5091
+ weight_forces: float # double
6177
5092
  """
6178
-
6179
- None( (placo.Contact)arg1) -> float :
6180
-
6181
- C++ signature :
6182
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5093
+ Weight of forces for the optimization (if relevant)
6183
5094
  """
6184
5095
 
6185
- weight_moments: any
5096
+ weight_moments: float # double
6186
5097
  """
6187
-
6188
- None( (placo.Contact)arg1) -> float :
6189
-
6190
- C++ signature :
6191
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5098
+ Weight of moments for optimization (if relevant)
6192
5099
  """
6193
5100
 
6194
- weight_tangentials: any
5101
+ weight_tangentials: float # double
6195
5102
  """
6196
-
6197
- None( (placo.Contact)arg1) -> float :
6198
-
6199
- C++ signature :
6200
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5103
+ Extra cost for tangential forces.
6201
5104
  """
6202
5105
 
6203
- wrench: any
5106
+ wrench: numpy.ndarray # Eigen::VectorXd
6204
5107
  """
6205
-
6206
- None( (placo.Contact)arg1) -> object :
6207
-
6208
- C++ signature :
6209
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
5108
+ Wrench populated after the DynamicsSolver::solve call.
6210
5109
  """
6211
5110
 
6212
5111
  def zmp(
@@ -6219,13 +5118,9 @@ None( (placo.Contact)arg1) -> object :
6219
5118
 
6220
5119
 
6221
5120
  class ManipulabilityTask:
6222
- A: any
5121
+ A: numpy.ndarray # Eigen::MatrixXd
6223
5122
  """
6224
-
6225
- None( (placo.Task)arg1) -> object :
6226
-
6227
- C++ signature :
6228
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5123
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6229
5124
  """
6230
5125
 
6231
5126
  def __init__(
@@ -6236,13 +5131,9 @@ None( (placo.Task)arg1) -> object :
6236
5131
  ) -> any:
6237
5132
  ...
6238
5133
 
6239
- b: any
5134
+ b: numpy.ndarray # Eigen::MatrixXd
6240
5135
  """
6241
-
6242
- None( (placo.Task)arg1) -> object :
6243
-
6244
- C++ signature :
6245
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5136
+ Vector b in the task Ax = b, where x are the joint delta positions.
6246
5137
  """
6247
5138
 
6248
5139
  def configure(
@@ -6277,39 +5168,20 @@ None( (placo.Task)arg1) -> object :
6277
5168
  ...
6278
5169
 
6279
5170
  lambda_: any
6280
- """
6281
-
6282
- None( (placo.ManipulabilityTask)arg1) -> float :
6283
-
6284
- C++ signature :
6285
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
6286
- """
6287
5171
 
6288
- manipulability: any
5172
+ manipulability: float # double
6289
5173
  """
6290
-
6291
- None( (placo.ManipulabilityTask)arg1) -> float :
6292
-
6293
- C++ signature :
6294
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5174
+ The last computed manipulability value.
6295
5175
  """
6296
5176
 
6297
- minimize: any
5177
+ minimize: bool # bool
6298
5178
  """
6299
-
6300
- None( (placo.ManipulabilityTask)arg1) -> bool :
6301
-
6302
- C++ signature :
6303
- bool {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5179
+ Should the manipulability be minimized (can be useful to find singularities)
6304
5180
  """
6305
5181
 
6306
- name: any
5182
+ name: str # std::string
6307
5183
  """
6308
-
6309
- None( (placo.Prioritized)arg1) -> str :
6310
-
6311
- C++ signature :
6312
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5184
+ Object name.
6313
5185
  """
6314
5186
 
6315
5187
  priority: str
@@ -6327,22 +5199,14 @@ None( (placo.Prioritized)arg1) -> str :
6327
5199
 
6328
5200
 
6329
5201
  class OrientationTask:
6330
- A: any
5202
+ A: numpy.ndarray # Eigen::MatrixXd
6331
5203
  """
6332
-
6333
- None( (placo.Task)arg1) -> object :
6334
-
6335
- C++ signature :
6336
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5204
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6337
5205
  """
6338
5206
 
6339
- R_world_frame: any
5207
+ R_world_frame: numpy.ndarray # Eigen::Matrix3d
6340
5208
  """
6341
-
6342
- None( (placo.OrientationTask)arg1) -> object :
6343
-
6344
- C++ signature :
6345
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5209
+ Target frame orientation in the world.
6346
5210
  """
6347
5211
 
6348
5212
  def __init__(
@@ -6355,13 +5219,9 @@ None( (placo.OrientationTask)arg1) -> object :
6355
5219
  """
6356
5220
  ...
6357
5221
 
6358
- b: any
5222
+ b: numpy.ndarray # Eigen::MatrixXd
6359
5223
  """
6360
-
6361
- None( (placo.Task)arg1) -> object :
6362
-
6363
- C++ signature :
6364
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5224
+ Vector b in the task Ax = b, where x are the joint delta positions.
6365
5225
  """
6366
5226
 
6367
5227
  def configure(
@@ -6395,31 +5255,19 @@ None( (placo.Task)arg1) -> object :
6395
5255
  """
6396
5256
  ...
6397
5257
 
6398
- frame_index: any
5258
+ frame_index: any # pinocchio::FrameIndex
6399
5259
  """
6400
-
6401
- None( (placo.OrientationTask)arg1) -> int :
6402
-
6403
- C++ signature :
6404
- unsigned long {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5260
+ Frame.
6405
5261
  """
6406
5262
 
6407
- mask: any
5263
+ mask: AxisesMask # placo::tools::AxisesMask
6408
5264
  """
6409
-
6410
- None( (placo.OrientationTask)arg1) -> placo.AxisesMask :
6411
-
6412
- C++ signature :
6413
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5265
+ Mask.
6414
5266
  """
6415
5267
 
6416
- name: any
5268
+ name: str # std::string
6417
5269
  """
6418
-
6419
- None( (placo.Prioritized)arg1) -> str :
6420
-
6421
- C++ signature :
6422
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5270
+ Object name.
6423
5271
  """
6424
5272
 
6425
5273
  priority: str
@@ -6437,13 +5285,9 @@ None( (placo.Prioritized)arg1) -> str :
6437
5285
 
6438
5286
 
6439
5287
  class PointContact:
6440
- R_world_surface: any
5288
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6441
5289
  """
6442
-
6443
- None( (placo.PointContact)arg1) -> object :
6444
-
6445
- C++ signature :
6446
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::PointContact {lvalue})
5290
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6447
5291
  """
6448
5292
 
6449
5293
  def __init__(
@@ -6456,22 +5300,14 @@ None( (placo.PointContact)arg1) -> object :
6456
5300
  """
6457
5301
  ...
6458
5302
 
6459
- active: any
5303
+ active: bool # bool
6460
5304
  """
6461
-
6462
- None( (placo.Contact)arg1) -> bool :
6463
-
6464
- C++ signature :
6465
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5305
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
6466
5306
  """
6467
5307
 
6468
- mu: any
5308
+ mu: float # double
6469
5309
  """
6470
-
6471
- None( (placo.Contact)arg1) -> float :
6472
-
6473
- C++ signature :
6474
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5310
+ Coefficient of friction (if relevant)
6475
5311
  """
6476
5312
 
6477
5313
  def position_task(
@@ -6479,49 +5315,29 @@ None( (placo.Contact)arg1) -> float :
6479
5315
  ) -> DynamicsPositionTask:
6480
5316
  ...
6481
5317
 
6482
- unilateral: any
5318
+ unilateral: bool # bool
6483
5319
  """
6484
-
6485
- None( (placo.PointContact)arg1) -> bool :
6486
-
6487
- C++ signature :
6488
- bool {lvalue} None(placo::dynamics::PointContact {lvalue})
5320
+ true for unilateral contact with the ground
6489
5321
  """
6490
5322
 
6491
- weight_forces: any
5323
+ weight_forces: float # double
6492
5324
  """
6493
-
6494
- None( (placo.Contact)arg1) -> float :
6495
-
6496
- C++ signature :
6497
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5325
+ Weight of forces for the optimization (if relevant)
6498
5326
  """
6499
5327
 
6500
- weight_moments: any
5328
+ weight_moments: float # double
6501
5329
  """
6502
-
6503
- None( (placo.Contact)arg1) -> float :
6504
-
6505
- C++ signature :
6506
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5330
+ Weight of moments for optimization (if relevant)
6507
5331
  """
6508
5332
 
6509
- weight_tangentials: any
5333
+ weight_tangentials: float # double
6510
5334
  """
6511
-
6512
- None( (placo.Contact)arg1) -> float :
6513
-
6514
- C++ signature :
6515
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5335
+ Extra cost for tangential forces.
6516
5336
  """
6517
5337
 
6518
- wrench: any
5338
+ wrench: numpy.ndarray # Eigen::VectorXd
6519
5339
  """
6520
-
6521
- None( (placo.Contact)arg1) -> object :
6522
-
6523
- C++ signature :
6524
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
5340
+ Wrench populated after the DynamicsSolver::solve call.
6525
5341
  """
6526
5342
 
6527
5343
 
@@ -6561,13 +5377,9 @@ class Polynom:
6561
5377
  ) -> any:
6562
5378
  ...
6563
5379
 
6564
- coefficients: any
5380
+ coefficients: numpy.ndarray # Eigen::VectorXd
6565
5381
  """
6566
-
6567
- None( (placo.Polynom)arg1) -> object :
6568
-
6569
- C++ signature :
6570
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::tools::Polynom {lvalue})
5382
+ coefficients, from highest to lowest
6571
5383
  """
6572
5384
 
6573
5385
  @staticmethod
@@ -6599,13 +5411,9 @@ None( (placo.Polynom)arg1) -> object :
6599
5411
 
6600
5412
 
6601
5413
  class PositionTask:
6602
- A: any
5414
+ A: numpy.ndarray # Eigen::MatrixXd
6603
5415
  """
6604
-
6605
- None( (placo.Task)arg1) -> object :
6606
-
6607
- C++ signature :
6608
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5416
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6609
5417
  """
6610
5418
 
6611
5419
  def __init__(
@@ -6618,13 +5426,9 @@ None( (placo.Task)arg1) -> object :
6618
5426
  """
6619
5427
  ...
6620
5428
 
6621
- b: any
5429
+ b: numpy.ndarray # Eigen::MatrixXd
6622
5430
  """
6623
-
6624
- None( (placo.Task)arg1) -> object :
6625
-
6626
- C++ signature :
6627
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5431
+ Vector b in the task Ax = b, where x are the joint delta positions.
6628
5432
  """
6629
5433
 
6630
5434
  def configure(
@@ -6658,31 +5462,19 @@ None( (placo.Task)arg1) -> object :
6658
5462
  """
6659
5463
  ...
6660
5464
 
6661
- frame_index: any
5465
+ frame_index: any # pinocchio::FrameIndex
6662
5466
  """
6663
-
6664
- None( (placo.PositionTask)arg1) -> int :
6665
-
6666
- C++ signature :
6667
- unsigned long {lvalue} None(placo::kinematics::PositionTask {lvalue})
5467
+ Frame.
6668
5468
  """
6669
5469
 
6670
- mask: any
5470
+ mask: AxisesMask # placo::tools::AxisesMask
6671
5471
  """
6672
-
6673
- None( (placo.PositionTask)arg1) -> placo.AxisesMask :
6674
-
6675
- C++ signature :
6676
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::PositionTask {lvalue})
5472
+ Mask.
6677
5473
  """
6678
5474
 
6679
- name: any
5475
+ name: str # std::string
6680
5476
  """
6681
-
6682
- None( (placo.Prioritized)arg1) -> str :
6683
-
6684
- C++ signature :
6685
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5477
+ Object name.
6686
5478
  """
6687
5479
 
6688
5480
  priority: str
@@ -6690,13 +5482,9 @@ None( (placo.Prioritized)arg1) -> str :
6690
5482
  Priority [str]
6691
5483
  """
6692
5484
 
6693
- target_world: any
5485
+ target_world: numpy.ndarray # Eigen::Vector3d
6694
5486
  """
6695
-
6696
- None( (placo.PositionTask)arg1) -> numpy.ndarray :
6697
-
6698
- C++ signature :
6699
- Eigen::Matrix<double, 3, 1, 0, 3, 1> None(placo::kinematics::PositionTask)
5487
+ Target position in the world.
6700
5488
  """
6701
5489
 
6702
5490
  def update(
@@ -6729,13 +5517,9 @@ class Prioritized:
6729
5517
  """
6730
5518
  ...
6731
5519
 
6732
- name: any
5520
+ name: str # std::string
6733
5521
  """
6734
-
6735
- None( (placo.Prioritized)arg1) -> str :
6736
-
6737
- C++ signature :
6738
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5522
+ Object name.
6739
5523
  """
6740
5524
 
6741
5525
  priority: str
@@ -6796,13 +5580,9 @@ class Problem:
6796
5580
  """
6797
5581
  ...
6798
5582
 
6799
- determined_variables: any
5583
+ determined_variables: int # int
6800
5584
  """
6801
-
6802
- None( (placo.Problem)arg1) -> int :
6803
-
6804
- C++ signature :
6805
- int {lvalue} None(placo::problem::Problem {lvalue})
5585
+ Number of determined variables.
6806
5586
  """
6807
5587
 
6808
5588
  def dump_status(
@@ -6810,76 +5590,44 @@ None( (placo.Problem)arg1) -> int :
6810
5590
  ) -> None:
6811
5591
  ...
6812
5592
 
6813
- free_variables: any
5593
+ free_variables: int # int
6814
5594
  """
6815
-
6816
- None( (placo.Problem)arg1) -> int :
6817
-
6818
- C++ signature :
6819
- int {lvalue} None(placo::problem::Problem {lvalue})
5595
+ Number of free variables to solve.
6820
5596
  """
6821
5597
 
6822
- n_equalities: any
5598
+ n_equalities: int # int
6823
5599
  """
6824
-
6825
- None( (placo.Problem)arg1) -> int :
6826
-
6827
- C++ signature :
6828
- int {lvalue} None(placo::problem::Problem {lvalue})
5600
+ Number of equalities.
6829
5601
  """
6830
5602
 
6831
- n_inequalities: any
5603
+ n_inequalities: int # int
6832
5604
  """
6833
-
6834
- None( (placo.Problem)arg1) -> int :
6835
-
6836
- C++ signature :
6837
- int {lvalue} None(placo::problem::Problem {lvalue})
5605
+ Number of inequality constraints.
6838
5606
  """
6839
5607
 
6840
- n_variables: any
5608
+ n_variables: int # int
6841
5609
  """
6842
-
6843
- None( (placo.Problem)arg1) -> int :
6844
-
6845
- C++ signature :
6846
- int {lvalue} None(placo::problem::Problem {lvalue})
5610
+ Number of problem variables that need to be solved.
6847
5611
  """
6848
5612
 
6849
- regularization: any
5613
+ regularization: float # double
6850
5614
  """
6851
-
6852
- None( (placo.Problem)arg1) -> float :
6853
-
6854
- C++ signature :
6855
- double {lvalue} None(placo::problem::Problem {lvalue})
5615
+ Default internal regularization.
6856
5616
  """
6857
5617
 
6858
- rewrite_equalities: any
5618
+ rewrite_equalities: bool # bool
6859
5619
  """
6860
-
6861
- None( (placo.Problem)arg1) -> bool :
6862
-
6863
- C++ signature :
6864
- bool {lvalue} None(placo::problem::Problem {lvalue})
5620
+ If set to true, a QR factorization will be performed on the equality constraints, and the QP will be called with free variables only.
6865
5621
  """
6866
5622
 
6867
- slack_variables: any
5623
+ slack_variables: int # int
6868
5624
  """
6869
-
6870
- None( (placo.Problem)arg1) -> int :
6871
-
6872
- C++ signature :
6873
- int {lvalue} None(placo::problem::Problem {lvalue})
5625
+ Number of slack variables in the solver.
6874
5626
  """
6875
5627
 
6876
- slacks: any
5628
+ slacks: numpy.ndarray # Eigen::VectorXd
6877
5629
  """
6878
-
6879
- None( (placo.Problem)arg1) -> numpy.ndarray :
6880
-
6881
- C++ signature :
6882
- Eigen::Matrix<double, -1, 1, 0, -1, 1> None(placo::problem::Problem)
5630
+ Computed slack variables.
6883
5631
  """
6884
5632
 
6885
5633
  def solve(
@@ -6890,22 +5638,14 @@ None( (placo.Problem)arg1) -> numpy.ndarray :
6890
5638
  """
6891
5639
  ...
6892
5640
 
6893
- use_sparsity: any
5641
+ use_sparsity: bool # bool
6894
5642
  """
6895
-
6896
- None( (placo.Problem)arg1) -> bool :
6897
-
6898
- C++ signature :
6899
- bool {lvalue} None(placo::problem::Problem {lvalue})
5643
+ If set to true, some sparsity optimizations will be performed when building the problem Hessian. This optimization is generally not useful for small problems.
6900
5644
  """
6901
5645
 
6902
- x: any
5646
+ x: numpy.ndarray # Eigen::VectorXd
6903
5647
  """
6904
-
6905
- None( (placo.Problem)arg1) -> object :
6906
-
6907
- C++ signature :
6908
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Problem {lvalue})
5648
+ Computed result.
6909
5649
  """
6910
5650
 
6911
5651
 
@@ -6930,40 +5670,24 @@ class ProblemConstraint:
6930
5670
  """
6931
5671
  ...
6932
5672
 
6933
- expression: any
5673
+ expression: Expression # placo::problem::Expression
6934
5674
  """
6935
-
6936
- None( (placo.ProblemConstraint)arg1) -> object :
6937
-
6938
- C++ signature :
6939
- placo::problem::Expression {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5675
+ The constraint expression (Ax + b)
6940
5676
  """
6941
5677
 
6942
- is_active: any
5678
+ is_active: bool # bool
6943
5679
  """
6944
-
6945
- None( (placo.ProblemConstraint)arg1) -> bool :
6946
-
6947
- C++ signature :
6948
- bool {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5680
+ This flag will be set by the solver if the constraint is active in the optimal solution.
6949
5681
  """
6950
5682
 
6951
- priority: any
5683
+ priority: any # placo::problem::ProblemConstraint::Priority
6952
5684
  """
6953
-
6954
- None( (placo.ProblemConstraint)arg1) -> str :
6955
-
6956
- C++ signature :
6957
- char const* None(placo::problem::ProblemConstraint)
5685
+ Constraint priority.
6958
5686
  """
6959
5687
 
6960
- weight: any
5688
+ weight: float # double
6961
5689
  """
6962
-
6963
- None( (placo.ProblemConstraint)arg1) -> float :
6964
-
6965
- C++ signature :
6966
- double {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5690
+ Constraint weight (for soft constraints)
6967
5691
  """
6968
5692
 
6969
5693
 
@@ -7005,58 +5729,34 @@ class PuppetContact:
7005
5729
  """
7006
5730
  ...
7007
5731
 
7008
- active: any
5732
+ active: bool # bool
7009
5733
  """
7010
-
7011
- None( (placo.Contact)arg1) -> bool :
7012
-
7013
- C++ signature :
7014
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5734
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
7015
5735
  """
7016
5736
 
7017
- mu: any
5737
+ mu: float # double
7018
5738
  """
7019
-
7020
- None( (placo.Contact)arg1) -> float :
7021
-
7022
- C++ signature :
7023
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5739
+ Coefficient of friction (if relevant)
7024
5740
  """
7025
5741
 
7026
- weight_forces: any
5742
+ weight_forces: float # double
7027
5743
  """
7028
-
7029
- None( (placo.Contact)arg1) -> float :
7030
-
7031
- C++ signature :
7032
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5744
+ Weight of forces for the optimization (if relevant)
7033
5745
  """
7034
5746
 
7035
- weight_moments: any
5747
+ weight_moments: float # double
7036
5748
  """
7037
-
7038
- None( (placo.Contact)arg1) -> float :
7039
-
7040
- C++ signature :
7041
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5749
+ Weight of moments for optimization (if relevant)
7042
5750
  """
7043
5751
 
7044
- weight_tangentials: any
5752
+ weight_tangentials: float # double
7045
5753
  """
7046
-
7047
- None( (placo.Contact)arg1) -> float :
7048
-
7049
- C++ signature :
7050
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5754
+ Extra cost for tangential forces.
7051
5755
  """
7052
5756
 
7053
- wrench: any
5757
+ wrench: numpy.ndarray # Eigen::VectorXd
7054
5758
  """
7055
-
7056
- None( (placo.Contact)arg1) -> object :
7057
-
7058
- C++ signature :
7059
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
5759
+ Wrench populated after the DynamicsSolver::solve call.
7060
5760
  """
7061
5761
 
7062
5762
 
@@ -7077,13 +5777,9 @@ class QPError:
7077
5777
 
7078
5778
 
7079
5779
  class RegularizationTask:
7080
- A: any
5780
+ A: numpy.ndarray # Eigen::MatrixXd
7081
5781
  """
7082
-
7083
- None( (placo.Task)arg1) -> object :
7084
-
7085
- C++ signature :
7086
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5782
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7087
5783
  """
7088
5784
 
7089
5785
  def __init__(
@@ -7091,13 +5787,9 @@ None( (placo.Task)arg1) -> object :
7091
5787
  ) -> None:
7092
5788
  ...
7093
5789
 
7094
- b: any
5790
+ b: numpy.ndarray # Eigen::MatrixXd
7095
5791
  """
7096
-
7097
- None( (placo.Task)arg1) -> object :
7098
-
7099
- C++ signature :
7100
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5792
+ Vector b in the task Ax = b, where x are the joint delta positions.
7101
5793
  """
7102
5794
 
7103
5795
  def configure(
@@ -7131,13 +5823,9 @@ None( (placo.Task)arg1) -> object :
7131
5823
  """
7132
5824
  ...
7133
5825
 
7134
- name: any
5826
+ name: str # std::string
7135
5827
  """
7136
-
7137
- None( (placo.Prioritized)arg1) -> str :
7138
-
7139
- C++ signature :
7140
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5828
+ Object name.
7141
5829
  """
7142
5830
 
7143
5831
  priority: str
@@ -7156,13 +5844,6 @@ None( (placo.Prioritized)arg1) -> str :
7156
5844
 
7157
5845
  class RelativeFrameTask:
7158
5846
  T_a_b: any
7159
- """
7160
-
7161
- None( (placo.RelativeFrameTask)arg1) -> object :
7162
-
7163
- C++ signature :
7164
- Eigen::Transform<double, 3, 2, 0> None(placo::kinematics::RelativeFrameTask {lvalue})
7165
- """
7166
5847
 
7167
5848
  def __init__(
7168
5849
  self,
@@ -7203,22 +5884,14 @@ None( (placo.RelativeFrameTask)arg1) -> object :
7203
5884
 
7204
5885
 
7205
5886
  class RelativeOrientationTask:
7206
- A: any
5887
+ A: numpy.ndarray # Eigen::MatrixXd
7207
5888
  """
7208
-
7209
- None( (placo.Task)arg1) -> object :
7210
-
7211
- C++ signature :
7212
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5889
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7213
5890
  """
7214
5891
 
7215
- R_a_b: any
5892
+ R_a_b: numpy.ndarray # Eigen::Matrix3d
7216
5893
  """
7217
-
7218
- None( (placo.RelativeOrientationTask)arg1) -> object :
7219
-
7220
- C++ signature :
7221
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5894
+ Target relative orientation of b in a.
7222
5895
  """
7223
5896
 
7224
5897
  def __init__(
@@ -7232,13 +5905,9 @@ None( (placo.RelativeOrientationTask)arg1) -> object :
7232
5905
  """
7233
5906
  ...
7234
5907
 
7235
- b: any
5908
+ b: numpy.ndarray # Eigen::MatrixXd
7236
5909
  """
7237
-
7238
- None( (placo.Task)arg1) -> object :
7239
-
7240
- C++ signature :
7241
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5910
+ Vector b in the task Ax = b, where x are the joint delta positions.
7242
5911
  """
7243
5912
 
7244
5913
  def configure(
@@ -7272,40 +5941,24 @@ None( (placo.Task)arg1) -> object :
7272
5941
  """
7273
5942
  ...
7274
5943
 
7275
- frame_a: any
5944
+ frame_a: any # pinocchio::FrameIndex
7276
5945
  """
7277
-
7278
- None( (placo.RelativeOrientationTask)arg1) -> int :
7279
-
7280
- C++ signature :
7281
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5946
+ Frame A.
7282
5947
  """
7283
5948
 
7284
- frame_b: any
5949
+ frame_b: any # pinocchio::FrameIndex
7285
5950
  """
7286
-
7287
- None( (placo.RelativeOrientationTask)arg1) -> int :
7288
-
7289
- C++ signature :
7290
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5951
+ Frame B.
7291
5952
  """
7292
5953
 
7293
- mask: any
5954
+ mask: AxisesMask # placo::tools::AxisesMask
7294
5955
  """
7295
-
7296
- None( (placo.RelativeOrientationTask)arg1) -> placo.AxisesMask :
7297
-
7298
- C++ signature :
7299
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5956
+ Mask.
7300
5957
  """
7301
5958
 
7302
- name: any
5959
+ name: str # std::string
7303
5960
  """
7304
-
7305
- None( (placo.Prioritized)arg1) -> str :
7306
-
7307
- C++ signature :
7308
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
5961
+ Object name.
7309
5962
  """
7310
5963
 
7311
5964
  priority: str
@@ -7323,13 +5976,9 @@ None( (placo.Prioritized)arg1) -> str :
7323
5976
 
7324
5977
 
7325
5978
  class RelativePositionTask:
7326
- A: any
5979
+ A: numpy.ndarray # Eigen::MatrixXd
7327
5980
  """
7328
-
7329
- None( (placo.Task)arg1) -> object :
7330
-
7331
- C++ signature :
7332
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5981
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7333
5982
  """
7334
5983
 
7335
5984
  def __init__(
@@ -7343,13 +5992,9 @@ None( (placo.Task)arg1) -> object :
7343
5992
  """
7344
5993
  ...
7345
5994
 
7346
- b: any
5995
+ b: numpy.ndarray # Eigen::MatrixXd
7347
5996
  """
7348
-
7349
- None( (placo.Task)arg1) -> object :
7350
-
7351
- C++ signature :
7352
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
5997
+ Vector b in the task Ax = b, where x are the joint delta positions.
7353
5998
  """
7354
5999
 
7355
6000
  def configure(
@@ -7383,40 +6028,24 @@ None( (placo.Task)arg1) -> object :
7383
6028
  """
7384
6029
  ...
7385
6030
 
7386
- frame_a: any
6031
+ frame_a: any # pinocchio::FrameIndex
7387
6032
  """
7388
-
7389
- None( (placo.RelativePositionTask)arg1) -> int :
7390
-
7391
- C++ signature :
7392
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6033
+ Frame A.
7393
6034
  """
7394
6035
 
7395
- frame_b: any
6036
+ frame_b: any # pinocchio::FrameIndex
7396
6037
  """
7397
-
7398
- None( (placo.RelativePositionTask)arg1) -> int :
7399
-
7400
- C++ signature :
7401
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6038
+ Frame B.
7402
6039
  """
7403
6040
 
7404
- mask: any
6041
+ mask: AxisesMask # placo::tools::AxisesMask
7405
6042
  """
7406
-
7407
- None( (placo.RelativePositionTask)arg1) -> placo.AxisesMask :
7408
-
7409
- C++ signature :
7410
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6043
+ Mask.
7411
6044
  """
7412
6045
 
7413
- name: any
6046
+ name: str # std::string
7414
6047
  """
7415
-
7416
- None( (placo.Prioritized)arg1) -> str :
7417
-
7418
- C++ signature :
7419
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
6048
+ Object name.
7420
6049
  """
7421
6050
 
7422
6051
  priority: str
@@ -7424,13 +6053,9 @@ None( (placo.Prioritized)arg1) -> str :
7424
6053
  Priority [str]
7425
6054
  """
7426
6055
 
7427
- target: any
6056
+ target: numpy.ndarray # Eigen::Vector3d
7428
6057
  """
7429
-
7430
- None( (placo.RelativePositionTask)arg1) -> object :
7431
-
7432
- C++ signature :
7433
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6058
+ Target position of B in A.
7434
6059
  """
7435
6060
 
7436
6061
  def update(
@@ -7475,13 +6100,9 @@ class RobotWrapper:
7475
6100
  """
7476
6101
  ...
7477
6102
 
7478
- collision_model: any
6103
+ collision_model: any # pinocchio::GeometryModel
7479
6104
  """
7480
-
7481
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
7482
-
7483
- C++ signature :
7484
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6105
+ Pinocchio collision model.
7485
6106
  """
7486
6107
 
7487
6108
  def com_jacobian(
@@ -7522,7 +6143,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7522
6143
  """
7523
6144
  Computes all minimum distances between current collision pairs.
7524
6145
 
7525
- :return: <Element 'para' at 0xff6275ca5a80>
6146
+ :return: <Element 'para' at 0xffe7bccceb60>
7526
6147
  """
7527
6148
  ...
7528
6149
 
@@ -7535,7 +6156,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7535
6156
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7536
6157
 
7537
6158
  :param any frame: the frame for which we want the jacobian
7538
- :return: <Element 'para' at 0xff6275cc2fc0>
6159
+ :return: <Element 'para' at 0xffe7bcccdf30>
7539
6160
  """
7540
6161
  ...
7541
6162
 
@@ -7548,7 +6169,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7548
6169
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7549
6170
 
7550
6171
  :param any frame: the frame for which we want the jacobian time variation
7551
- :return: <Element 'para' at 0xff6275cc1990>
6172
+ :return: <Element 'para' at 0xffe7bcccc360>
7552
6173
  """
7553
6174
  ...
7554
6175
 
@@ -7732,13 +6353,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7732
6353
  """
7733
6354
  ...
7734
6355
 
7735
- model: any
6356
+ model: any # pinocchio::Model
7736
6357
  """
7737
-
7738
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7739
-
7740
- C++ signature :
7741
- pinocchio::ModelTpl<double, 0, pinocchio::JointCollectionDefaultTpl> {lvalue} None(placo::model::RobotWrapper {lvalue})
6358
+ Pinocchio model.
7742
6359
  """
7743
6360
 
7744
6361
  def neutral_state(
@@ -7786,7 +6403,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7786
6403
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7787
6404
 
7788
6405
  :param bool stop_at_first: whether to stop at the first collision found
7789
- :return: <Element 'para' at 0xff6275ca4900>
6406
+ :return: <Element 'para' at 0xffe7bcccfa10>
7790
6407
  """
7791
6408
  ...
7792
6409
 
@@ -7934,13 +6551,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7934
6551
  """
7935
6552
  ...
7936
6553
 
7937
- state: any
6554
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
7938
6555
  """
7939
-
7940
- None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7941
-
7942
- C++ signature :
7943
- placo::model::RobotWrapper::State {lvalue} None(placo::model::RobotWrapper {lvalue})
6556
+ Robot's current state.
7944
6557
  """
7945
6558
 
7946
6559
  def static_gravity_compensation_torques(
@@ -7996,13 +6609,9 @@ None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7996
6609
  """
7997
6610
  ...
7998
6611
 
7999
- visual_model: any
6612
+ visual_model: any # pinocchio::GeometryModel
8000
6613
  """
8001
-
8002
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
8003
-
8004
- C++ signature :
8005
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6614
+ Pinocchio visual model.
8006
6615
  """
8007
6616
 
8008
6617
 
@@ -8012,31 +6621,19 @@ class RobotWrapper_State:
8012
6621
  ) -> None:
8013
6622
  ...
8014
6623
 
8015
- q: any
6624
+ q: numpy.ndarray # Eigen::VectorXd
8016
6625
  """
8017
-
8018
- None( (placo.RobotWrapper_State)arg1) -> object :
8019
-
8020
- C++ signature :
8021
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
6626
+ joints configuration $q$
8022
6627
  """
8023
6628
 
8024
- qd: any
6629
+ qd: numpy.ndarray # Eigen::VectorXd
8025
6630
  """
8026
-
8027
- None( (placo.RobotWrapper_State)arg1) -> object :
8028
-
8029
- C++ signature :
8030
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
6631
+ joints velocity $\dot q$
8031
6632
  """
8032
6633
 
8033
- qdd: any
6634
+ qdd: numpy.ndarray # Eigen::VectorXd
8034
6635
  """
8035
-
8036
- None( (placo.RobotWrapper_State)arg1) -> object :
8037
-
8038
- C++ signature :
8039
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::model::RobotWrapper::State {lvalue})
6636
+ joints acceleration $\ddot q$
8040
6637
  """
8041
6638
 
8042
6639
 
@@ -8046,14 +6643,7 @@ class Segment:
8046
6643
  ) -> any:
8047
6644
  ...
8048
6645
 
8049
- end: any
8050
- """
8051
-
8052
- None( (placo.Segment)arg1) -> object :
8053
-
8054
- C++ signature :
8055
- Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::tools::Segment {lvalue})
8056
- """
6646
+ end: numpy.ndarray # Eigen::Vector2d
8057
6647
 
8058
6648
  def half_line_pass_through(
8059
6649
  self,
@@ -8156,14 +6746,7 @@ None( (placo.Segment)arg1) -> object :
8156
6746
  ) -> float:
8157
6747
  ...
8158
6748
 
8159
- start: any
8160
- """
8161
-
8162
- None( (placo.Segment)arg1) -> object :
8163
-
8164
- C++ signature :
8165
- Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::tools::Segment {lvalue})
8166
- """
6749
+ start: numpy.ndarray # Eigen::Vector2d
8167
6750
 
8168
6751
 
8169
6752
  class Sparsity:
@@ -8197,13 +6780,9 @@ class Sparsity:
8197
6780
  """
8198
6781
  ...
8199
6782
 
8200
- intervals: any
6783
+ intervals: list[SparsityInterval] # std::vector<placo::problem::Sparsity::Interval>
8201
6784
  """
8202
-
8203
- None( (placo.Sparsity)arg1) -> numpy.ndarray :
8204
-
8205
- C++ signature :
8206
- Eigen::Matrix<int, -1, -1, 0, -1, -1> None(placo::problem::Sparsity)
6785
+ Intervals of non-sparse columns.
8207
6786
  """
8208
6787
 
8209
6788
  def print_intervals(
@@ -8221,22 +6800,14 @@ class SparsityInterval:
8221
6800
  ) -> None:
8222
6801
  ...
8223
6802
 
8224
- end: any
6803
+ end: int # int
8225
6804
  """
8226
-
8227
- None( (placo.SparsityInterval)arg1) -> int :
8228
-
8229
- C++ signature :
8230
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6805
+ End of interval.
8231
6806
  """
8232
6807
 
8233
- start: any
6808
+ start: int # int
8234
6809
  """
8235
-
8236
- None( (placo.SparsityInterval)arg1) -> int :
8237
-
8238
- C++ signature :
8239
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6810
+ Start of interval.
8240
6811
  """
8241
6812
 
8242
6813
 
@@ -8252,23 +6823,9 @@ class Support:
8252
6823
  ) -> None:
8253
6824
  ...
8254
6825
 
8255
- elapsed_ratio: any
8256
- """
8257
-
8258
- None( (placo.Support)arg1) -> float :
8259
-
8260
- C++ signature :
8261
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8262
- """
8263
-
8264
- end: any
8265
- """
8266
-
8267
- None( (placo.Support)arg1) -> bool :
6826
+ elapsed_ratio: float # double
8268
6827
 
8269
- C++ signature :
8270
- bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8271
- """
6828
+ end: bool # bool
8272
6829
 
8273
6830
  def footstep_frame(
8274
6831
  self,
@@ -8281,14 +6838,7 @@ None( (placo.Support)arg1) -> bool :
8281
6838
  """
8282
6839
  ...
8283
6840
 
8284
- footsteps: any
8285
- """
8286
-
8287
- None( (placo.Support)arg1) -> object :
8288
-
8289
- C++ signature :
8290
- std::vector<placo::humanoid::FootstepsPlanner::Footstep, std::allocator<placo::humanoid::FootstepsPlanner::Footstep> > {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8291
- """
6841
+ footsteps: list[Footstep] # std::vector<placo::humanoid::FootstepsPlanner::Footstep>
8292
6842
 
8293
6843
  def frame(
8294
6844
  self,
@@ -8326,46 +6876,18 @@ None( (placo.Support)arg1) -> object :
8326
6876
  """
8327
6877
  ...
8328
6878
 
8329
- start: any
8330
- """
8331
-
8332
- None( (placo.Support)arg1) -> bool :
8333
-
8334
- C++ signature :
8335
- bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8336
- """
6879
+ start: bool # bool
8337
6880
 
8338
6881
  def support_polygon(
8339
6882
  self,
8340
6883
  ) -> list[numpy.ndarray]:
8341
6884
  ...
8342
6885
 
8343
- t_start: any
8344
- """
8345
-
8346
- None( (placo.Support)arg1) -> float :
8347
-
8348
- C++ signature :
8349
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8350
- """
8351
-
8352
- target_world_dcm: any
8353
- """
8354
-
8355
- None( (placo.Support)arg1) -> object :
8356
-
8357
- C++ signature :
8358
- Eigen::Matrix<double, 2, 1, 0, 2, 1> {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8359
- """
6886
+ t_start: float # double
8360
6887
 
8361
- time_ratio: any
8362
- """
8363
-
8364
- None( (placo.Support)arg1) -> float :
6888
+ target_world_dcm: numpy.ndarray # Eigen::Vector2d
8365
6889
 
8366
- C++ signature :
8367
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8368
- """
6890
+ time_ratio: float # double
8369
6891
 
8370
6892
 
8371
6893
  class Supports:
@@ -8514,26 +7036,18 @@ class SwingFootTrajectory:
8514
7036
 
8515
7037
 
8516
7038
  class Task:
8517
- A: any
7039
+ A: numpy.ndarray # Eigen::MatrixXd
8518
7040
  """
8519
-
8520
- None( (placo.Task)arg1) -> object :
8521
-
8522
- C++ signature :
8523
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7041
+ Matrix A in the task Ax = b, where x are the joint delta positions.
8524
7042
  """
8525
7043
 
8526
7044
  def __init__(
8527
7045
  ) -> any:
8528
7046
  ...
8529
7047
 
8530
- b: any
7048
+ b: numpy.ndarray # Eigen::MatrixXd
8531
7049
  """
8532
-
8533
- None( (placo.Task)arg1) -> object :
8534
-
8535
- C++ signature :
8536
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7050
+ Vector b in the task Ax = b, where x are the joint delta positions.
8537
7051
  """
8538
7052
 
8539
7053
  def configure(
@@ -8567,13 +7081,9 @@ None( (placo.Task)arg1) -> object :
8567
7081
  """
8568
7082
  ...
8569
7083
 
8570
- name: any
7084
+ name: str # std::string
8571
7085
  """
8572
-
8573
- None( (placo.Prioritized)arg1) -> str :
8574
-
8575
- C++ signature :
8576
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
7086
+ Object name.
8577
7087
  """
8578
7088
 
8579
7089
  priority: str
@@ -8600,58 +7110,34 @@ class TaskContact:
8600
7110
  """
8601
7111
  ...
8602
7112
 
8603
- active: any
7113
+ active: bool # bool
8604
7114
  """
8605
-
8606
- None( (placo.Contact)arg1) -> bool :
8607
-
8608
- C++ signature :
8609
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
7115
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
8610
7116
  """
8611
7117
 
8612
- mu: any
7118
+ mu: float # double
8613
7119
  """
8614
-
8615
- None( (placo.Contact)arg1) -> float :
8616
-
8617
- C++ signature :
8618
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7120
+ Coefficient of friction (if relevant)
8619
7121
  """
8620
7122
 
8621
- weight_forces: any
7123
+ weight_forces: float # double
8622
7124
  """
8623
-
8624
- None( (placo.Contact)arg1) -> float :
8625
-
8626
- C++ signature :
8627
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7125
+ Weight of forces for the optimization (if relevant)
8628
7126
  """
8629
7127
 
8630
- weight_moments: any
7128
+ weight_moments: float # double
8631
7129
  """
8632
-
8633
- None( (placo.Contact)arg1) -> float :
8634
-
8635
- C++ signature :
8636
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7130
+ Weight of moments for optimization (if relevant)
8637
7131
  """
8638
7132
 
8639
- weight_tangentials: any
7133
+ weight_tangentials: float # double
8640
7134
  """
8641
-
8642
- None( (placo.Contact)arg1) -> float :
8643
-
8644
- C++ signature :
8645
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7135
+ Extra cost for tangential forces.
8646
7136
  """
8647
7137
 
8648
- wrench: any
7138
+ wrench: numpy.ndarray # Eigen::VectorXd
8649
7139
  """
8650
-
8651
- None( (placo.Contact)arg1) -> object :
8652
-
8653
- C++ signature :
8654
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
7140
+ Wrench populated after the DynamicsSolver::solve call.
8655
7141
  """
8656
7142
 
8657
7143
 
@@ -8677,31 +7163,19 @@ class Variable:
8677
7163
  """
8678
7164
  ...
8679
7165
 
8680
- k_end: any
7166
+ k_end: int # int
8681
7167
  """
8682
-
8683
- None( (placo.Variable)arg1) -> int :
8684
-
8685
- C++ signature :
8686
- int {lvalue} None(placo::problem::Variable {lvalue})
7168
+ End offset in the Problem.
8687
7169
  """
8688
7170
 
8689
- k_start: any
7171
+ k_start: int # int
8690
7172
  """
8691
-
8692
- None( (placo.Variable)arg1) -> int :
8693
-
8694
- C++ signature :
8695
- int {lvalue} None(placo::problem::Variable {lvalue})
7173
+ Start offset in the Problem.
8696
7174
  """
8697
7175
 
8698
- value: any
7176
+ value: numpy.ndarray # Eigen::VectorXd
8699
7177
  """
8700
-
8701
- None( (placo.Variable)arg1) -> object :
8702
-
8703
- C++ signature :
8704
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Variable {lvalue})
7178
+ Variable value, populated by Problem after a solve.
8705
7179
  """
8706
7180
 
8707
7181
 
@@ -8724,14 +7198,7 @@ class WPGTrajectory:
8724
7198
  """
8725
7199
  ...
8726
7200
 
8727
- com_target_z: any
8728
- """
8729
-
8730
- None( (placo.WPGTrajectory)arg1) -> float :
8731
-
8732
- C++ signature :
8733
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8734
- """
7201
+ com_target_z: float # double
8735
7202
 
8736
7203
  def get_R_world_trunk(
8737
7204
  self,
@@ -8883,28 +7350,14 @@ None( (placo.WPGTrajectory)arg1) -> float :
8883
7350
  ) -> numpy.ndarray:
8884
7351
  ...
8885
7352
 
8886
- parts: any
8887
- """
8888
-
8889
- None( (placo.WPGTrajectory)arg1) -> object :
8890
-
8891
- C++ signature :
8892
- std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart, std::allocator<placo::humanoid::WalkPatternGenerator::TrajectoryPart> > {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8893
- """
7353
+ parts: list[WPGTrajectoryPart] # std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart>
8894
7354
 
8895
7355
  def print_parts_timings(
8896
7356
  self,
8897
7357
  ) -> None:
8898
7358
  ...
8899
7359
 
8900
- replan_success: any
8901
- """
8902
-
8903
- None( (placo.WPGTrajectory)arg1) -> bool :
8904
-
8905
- C++ signature :
8906
- bool {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8907
- """
7360
+ replan_success: bool # bool
8908
7361
 
8909
7362
  def support_is_both(
8910
7363
  self,
@@ -8918,41 +7371,13 @@ None( (placo.WPGTrajectory)arg1) -> bool :
8918
7371
  ) -> any:
8919
7372
  ...
8920
7373
 
8921
- t_end: any
8922
- """
8923
-
8924
- None( (placo.WPGTrajectory)arg1) -> float :
8925
-
8926
- C++ signature :
8927
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8928
- """
8929
-
8930
- t_start: any
8931
- """
8932
-
8933
- None( (placo.WPGTrajectory)arg1) -> float :
8934
-
8935
- C++ signature :
8936
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8937
- """
7374
+ t_end: float # double
8938
7375
 
8939
- trunk_pitch: any
8940
- """
8941
-
8942
- None( (placo.WPGTrajectory)arg1) -> float :
8943
-
8944
- C++ signature :
8945
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8946
- """
7376
+ t_start: float # double
8947
7377
 
8948
- trunk_roll: any
8949
- """
8950
-
8951
- None( (placo.WPGTrajectory)arg1) -> float :
7378
+ trunk_pitch: float # double
8952
7379
 
8953
- C++ signature :
8954
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8955
- """
7380
+ trunk_roll: float # double
8956
7381
 
8957
7382
 
8958
7383
  class WPGTrajectoryPart:
@@ -8963,32 +7388,11 @@ class WPGTrajectoryPart:
8963
7388
  ) -> None:
8964
7389
  ...
8965
7390
 
8966
- support: any
8967
- """
8968
-
8969
- None( (placo.WPGTrajectoryPart)arg1) -> placo.Support :
8970
-
8971
- C++ signature :
8972
- placo::humanoid::FootstepsPlanner::Support {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8973
- """
8974
-
8975
- t_end: any
8976
- """
8977
-
8978
- None( (placo.WPGTrajectoryPart)arg1) -> float :
8979
-
8980
- C++ signature :
8981
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8982
- """
7391
+ support: Support # placo::humanoid::FootstepsPlanner::Support
8983
7392
 
8984
- t_start: any
8985
- """
8986
-
8987
- None( (placo.WPGTrajectoryPart)arg1) -> float :
7393
+ t_end: float # double
8988
7394
 
8989
- C++ signature :
8990
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8991
- """
7395
+ t_start: float # double
8992
7396
 
8993
7397
 
8994
7398
  class WalkPatternGenerator:
@@ -9066,23 +7470,9 @@ class WalkPatternGenerator:
9066
7470
  """
9067
7471
  ...
9068
7472
 
9069
- soft: any
9070
- """
9071
-
9072
- None( (placo.WalkPatternGenerator)arg1) -> bool :
9073
-
9074
- C++ signature :
9075
- bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9076
- """
7473
+ soft: bool # bool
9077
7474
 
9078
- stop_end_support_weight: any
9079
- """
9080
-
9081
- None( (placo.WalkPatternGenerator)arg1) -> float :
9082
-
9083
- C++ signature :
9084
- double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9085
- """
7475
+ stop_end_support_weight: float # double
9086
7476
 
9087
7477
  def support_default_duration(
9088
7478
  self,
@@ -9111,14 +7501,7 @@ None( (placo.WalkPatternGenerator)arg1) -> float :
9111
7501
  """
9112
7502
  ...
9113
7503
 
9114
- zmp_in_support_weight: any
9115
- """
9116
-
9117
- None( (placo.WalkPatternGenerator)arg1) -> float :
9118
-
9119
- C++ signature :
9120
- double {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9121
- """
7504
+ zmp_in_support_weight: float # double
9122
7505
 
9123
7506
 
9124
7507
  class WalkTasks:
@@ -9127,32 +7510,11 @@ class WalkTasks:
9127
7510
  ) -> None:
9128
7511
  ...
9129
7512
 
9130
- com_task: any
9131
- """
9132
-
9133
- None( (placo.WalkTasks)arg1) -> placo.CoMTask :
9134
-
9135
- C++ signature :
9136
- placo::kinematics::CoMTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9137
- """
9138
-
9139
- com_x: any
9140
- """
9141
-
9142
- None( (placo.WalkTasks)arg1) -> float :
9143
-
9144
- C++ signature :
9145
- double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9146
- """
7513
+ com_task: CoMTask # placo::kinematics::CoMTask
9147
7514
 
9148
- com_y: any
9149
- """
9150
-
9151
- None( (placo.WalkTasks)arg1) -> float :
7515
+ com_x: float # double
9152
7516
 
9153
- C++ signature :
9154
- double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9155
- """
7517
+ com_y: float # double
9156
7518
 
9157
7519
  def get_tasks_error(
9158
7520
  self,
@@ -9166,14 +7528,7 @@ None( (placo.WalkTasks)arg1) -> float :
9166
7528
  ) -> None:
9167
7529
  ...
9168
7530
 
9169
- left_foot_task: any
9170
- """
9171
-
9172
- None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9173
-
9174
- C++ signature :
9175
- placo::kinematics::FrameTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9176
- """
7531
+ left_foot_task: FrameTask # placo::kinematics::FrameTask
9177
7532
 
9178
7533
  def reach_initial_pose(
9179
7534
  self,
@@ -9189,59 +7544,17 @@ None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9189
7544
  ) -> None:
9190
7545
  ...
9191
7546
 
9192
- right_foot_task: any
9193
- """
9194
-
9195
- None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9196
-
9197
- C++ signature :
9198
- placo::kinematics::FrameTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9199
- """
9200
-
9201
- scaled: any
9202
- """
9203
-
9204
- None( (placo.WalkTasks)arg1) -> bool :
9205
-
9206
- C++ signature :
9207
- bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9208
- """
9209
-
9210
- solver: any
9211
- """
9212
-
9213
- None( (placo.WalkTasks)arg1) -> placo.KinematicsSolver :
9214
-
9215
- C++ signature :
9216
- placo::kinematics::KinematicsSolver None(placo::humanoid::WalkTasks {lvalue})
9217
- """
9218
-
9219
- trunk_mode: any
9220
- """
9221
-
9222
- None( (placo.WalkTasks)arg1) -> bool :
7547
+ right_foot_task: FrameTask # placo::kinematics::FrameTask
9223
7548
 
9224
- C++ signature :
9225
- bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9226
- """
7549
+ scaled: bool # bool
9227
7550
 
9228
- trunk_orientation_task: any
9229
- """
9230
-
9231
- None( (placo.WalkTasks)arg1) -> placo.OrientationTask :
7551
+ solver: KinematicsSolver # placo::kinematics::KinematicsSolver
9232
7552
 
9233
- C++ signature :
9234
- placo::kinematics::OrientationTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9235
- """
7553
+ trunk_mode: bool # bool
9236
7554
 
9237
- trunk_task: any
9238
- """
9239
-
9240
- None( (placo.WalkTasks)arg1) -> placo.PositionTask :
7555
+ trunk_orientation_task: OrientationTask # placo::kinematics::OrientationTask
9241
7556
 
9242
- C++ signature :
9243
- placo::kinematics::PositionTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9244
- """
7557
+ trunk_task: PositionTask # placo::kinematics::PositionTask
9245
7558
 
9246
7559
  def update_tasks(
9247
7560
  self,
@@ -9259,22 +7572,14 @@ None( (placo.WalkTasks)arg1) -> placo.PositionTask :
9259
7572
 
9260
7573
 
9261
7574
  class WheelTask:
9262
- A: any
7575
+ A: numpy.ndarray # Eigen::MatrixXd
9263
7576
  """
9264
-
9265
- None( (placo.Task)arg1) -> object :
9266
-
9267
- C++ signature :
9268
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7577
+ Matrix A in the task Ax = b, where x are the joint delta positions.
9269
7578
  """
9270
7579
 
9271
- T_world_surface: any
7580
+ T_world_surface: numpy.ndarray # Eigen::Affine3d
9272
7581
  """
9273
-
9274
- None( (placo.WheelTask)arg1) -> object :
9275
-
9276
- C++ signature :
9277
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::kinematics::WheelTask {lvalue})
7582
+ Target position in the world.
9278
7583
  """
9279
7584
 
9280
7585
  def __init__(
@@ -9288,13 +7593,9 @@ None( (placo.WheelTask)arg1) -> object :
9288
7593
  """
9289
7594
  ...
9290
7595
 
9291
- b: any
7596
+ b: numpy.ndarray # Eigen::MatrixXd
9292
7597
  """
9293
-
9294
- None( (placo.Task)arg1) -> object :
9295
-
9296
- C++ signature :
9297
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::kinematics::Task {lvalue})
7598
+ Vector b in the task Ax = b, where x are the joint delta positions.
9298
7599
  """
9299
7600
 
9300
7601
  def configure(
@@ -9328,31 +7629,19 @@ None( (placo.Task)arg1) -> object :
9328
7629
  """
9329
7630
  ...
9330
7631
 
9331
- joint: any
7632
+ joint: str # std::string
9332
7633
  """
9333
-
9334
- None( (placo.WheelTask)arg1) -> str :
9335
-
9336
- C++ signature :
9337
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::kinematics::WheelTask {lvalue})
7634
+ Frame.
9338
7635
  """
9339
7636
 
9340
- name: any
7637
+ name: str # std::string
9341
7638
  """
9342
-
9343
- None( (placo.Prioritized)arg1) -> str :
9344
-
9345
- C++ signature :
9346
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
7639
+ Object name.
9347
7640
  """
9348
7641
 
9349
- omniwheel: any
7642
+ omniwheel: bool # bool
9350
7643
  """
9351
-
9352
- None( (placo.WheelTask)arg1) -> bool :
9353
-
9354
- C++ signature :
9355
- bool {lvalue} None(placo::kinematics::WheelTask {lvalue})
7644
+ Omniwheel (can slide laterally)
9356
7645
  """
9357
7646
 
9358
7647
  priority: str
@@ -9360,13 +7649,9 @@ None( (placo.WheelTask)arg1) -> bool :
9360
7649
  Priority [str]
9361
7650
  """
9362
7651
 
9363
- radius: any
7652
+ radius: float # double
9364
7653
  """
9365
-
9366
- None( (placo.WheelTask)arg1) -> float :
9367
-
9368
- C++ signature :
9369
- double {lvalue} None(placo::kinematics::WheelTask {lvalue})
7654
+ Wheel radius.
9370
7655
  """
9371
7656
 
9372
7657
  def update(
@@ -9390,13 +7675,9 @@ class YawConstraint:
9390
7675
  """
9391
7676
  ...
9392
7677
 
9393
- angle_max: any
7678
+ angle_max: float # double
9394
7679
  """
9395
-
9396
- None( (placo.YawConstraint)arg1) -> float :
9397
-
9398
- C++ signature :
9399
- double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
7680
+ Maximum angle allowable by the yaw constraint (yaw is taken for x-axis of b around z-axis in a)
9400
7681
  """
9401
7682
 
9402
7683
  def configure(
@@ -9414,13 +7695,9 @@ None( (placo.YawConstraint)arg1) -> float :
9414
7695
  """
9415
7696
  ...
9416
7697
 
9417
- name: any
7698
+ name: str # std::string
9418
7699
  """
9419
-
9420
- None( (placo.Prioritized)arg1) -> str :
9421
-
9422
- C++ signature :
9423
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
7700
+ Object name.
9424
7701
  """
9425
7702
 
9426
7703
  priority: str