placo 0.9.5__0-cp312-cp312-manylinux_2_28_aarch64.whl → 0.9.7__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,14 @@ None( (placo.DummyWalk)arg1) -> object :
1357
1069
  ) -> any:
1358
1070
  ...
1359
1071
 
1360
- feet_spacing: any
1072
+ feet_spacing: float # double
1361
1073
  """
1362
-
1363
- None( (placo.DummyWalk)arg1) -> float :
1364
-
1365
- C++ signature :
1366
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1074
+ Feet spacing [m].
1367
1075
  """
1368
1076
 
1369
- lift_height: any
1077
+ lift_height: float # double
1370
1078
  """
1371
-
1372
- None( (placo.DummyWalk)arg1) -> float :
1373
-
1374
- C++ signature :
1375
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1079
+ Lift height [m].
1376
1080
  """
1377
1081
 
1378
1082
  def next_step(
@@ -1401,49 +1105,29 @@ None( (placo.DummyWalk)arg1) -> float :
1401
1105
  """
1402
1106
  ...
1403
1107
 
1404
- robot: any
1108
+ robot: RobotWrapper # placo::model::RobotWrapper
1405
1109
  """
1406
-
1407
- None( (placo.DummyWalk)arg1) -> placo.RobotWrapper :
1408
-
1409
- C++ signature :
1410
- placo::model::RobotWrapper {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1110
+ Robot wrapper.
1411
1111
  """
1412
1112
 
1413
- solver: any
1113
+ solver: KinematicsSolver # placo::kinematics::KinematicsSolver
1414
1114
  """
1415
-
1416
- None( (placo.DummyWalk)arg1) -> placo.KinematicsSolver :
1417
-
1418
- C++ signature :
1419
- placo::kinematics::KinematicsSolver {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1115
+ Kinematics solver.
1420
1116
  """
1421
1117
 
1422
- support_left: any
1118
+ support_left: bool # bool
1423
1119
  """
1424
-
1425
- None( (placo.DummyWalk)arg1) -> bool :
1426
-
1427
- C++ signature :
1428
- bool {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1120
+ Whether the current support is left or right.
1429
1121
  """
1430
1122
 
1431
- trunk_height: any
1123
+ trunk_height: float # double
1432
1124
  """
1433
-
1434
- None( (placo.DummyWalk)arg1) -> float :
1435
-
1436
- C++ signature :
1437
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1125
+ Trunk height [m].
1438
1126
  """
1439
1127
 
1440
- trunk_pitch: any
1128
+ trunk_pitch: float # double
1441
1129
  """
1442
-
1443
- None( (placo.DummyWalk)arg1) -> float :
1444
-
1445
- C++ signature :
1446
- double {lvalue} None(placo::humanoid::DummyWalk {lvalue})
1130
+ Trunk pitch angle [rad].
1447
1131
  """
1448
1132
 
1449
1133
  def update(
@@ -1468,13 +1152,9 @@ None( (placo.DummyWalk)arg1) -> float :
1468
1152
 
1469
1153
 
1470
1154
  class DynamicsCoMTask:
1471
- A: any
1155
+ A: numpy.ndarray # Eigen::MatrixXd
1472
1156
  """
1473
-
1474
- None( (placo.DynamicsTask)arg1) -> object :
1475
-
1476
- C++ signature :
1477
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1157
+ A matrix in Ax = b, where x is the accelerations.
1478
1158
  """
1479
1159
 
1480
1160
  def __init__(
@@ -1483,13 +1163,9 @@ None( (placo.DynamicsTask)arg1) -> object :
1483
1163
  ) -> None:
1484
1164
  ...
1485
1165
 
1486
- b: any
1166
+ b: numpy.ndarray # Eigen::MatrixXd
1487
1167
  """
1488
-
1489
- None( (placo.DynamicsTask)arg1) -> object :
1490
-
1491
- C++ signature :
1492
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1168
+ b vector in Ax = b, where x is the accelerations
1493
1169
  """
1494
1170
 
1495
1171
  def configure(
@@ -1507,76 +1183,44 @@ None( (placo.DynamicsTask)arg1) -> object :
1507
1183
  """
1508
1184
  ...
1509
1185
 
1510
- ddtarget_world: any
1186
+ ddtarget_world: numpy.ndarray # Eigen::Vector3d
1511
1187
  """
1512
-
1513
- None( (placo.DynamicsCoMTask)arg1) -> object :
1514
-
1515
- C++ signature :
1516
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
1188
+ Target acceleration in the world.
1517
1189
  """
1518
1190
 
1519
- derror: any
1191
+ derror: numpy.ndarray # Eigen::MatrixXd
1520
1192
  """
1521
-
1522
- None( (placo.DynamicsTask)arg1) -> object :
1523
-
1524
- C++ signature :
1525
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1193
+ Current velocity error vector.
1526
1194
  """
1527
1195
 
1528
- dtarget_world: any
1196
+ dtarget_world: numpy.ndarray # Eigen::Vector3d
1529
1197
  """
1530
-
1531
- None( (placo.DynamicsCoMTask)arg1) -> object :
1532
-
1533
- C++ signature :
1534
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
1198
+ Target velocity to reach in robot frame.
1535
1199
  """
1536
1200
 
1537
- error: any
1201
+ error: numpy.ndarray # Eigen::MatrixXd
1538
1202
  """
1539
-
1540
- None( (placo.DynamicsTask)arg1) -> object :
1541
-
1542
- C++ signature :
1543
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1203
+ Current error vector.
1544
1204
  """
1545
1205
 
1546
- kd: any
1206
+ kd: float # double
1547
1207
  """
1548
-
1549
- None( (placo.DynamicsTask)arg1) -> float :
1550
-
1551
- C++ signature :
1552
- double {lvalue} None(placo::dynamics::Task {lvalue})
1208
+ D gain for position control (if negative, will be critically damped)
1553
1209
  """
1554
1210
 
1555
- kp: any
1211
+ kp: float # double
1556
1212
  """
1557
-
1558
- None( (placo.DynamicsTask)arg1) -> float :
1559
-
1560
- C++ signature :
1561
- double {lvalue} None(placo::dynamics::Task {lvalue})
1213
+ K gain for position control.
1562
1214
  """
1563
1215
 
1564
- mask: any
1216
+ mask: AxisesMask # placo::tools::AxisesMask
1565
1217
  """
1566
-
1567
- None( (placo.DynamicsCoMTask)arg1) -> placo.AxisesMask :
1568
-
1569
- C++ signature :
1570
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::CoMTask {lvalue})
1218
+ Axises mask.
1571
1219
  """
1572
1220
 
1573
- name: any
1221
+ name: str # std::string
1574
1222
  """
1575
-
1576
- None( (placo.Prioritized)arg1) -> str :
1577
-
1578
- C++ signature :
1579
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1223
+ Object name.
1580
1224
  """
1581
1225
 
1582
1226
  priority: str
@@ -1584,13 +1228,9 @@ None( (placo.Prioritized)arg1) -> str :
1584
1228
  Priority [str]
1585
1229
  """
1586
1230
 
1587
- target_world: any
1231
+ target_world: numpy.ndarray # Eigen::Vector3d
1588
1232
  """
1589
-
1590
- None( (placo.DynamicsCoMTask)arg1) -> object :
1591
-
1592
- C++ signature :
1593
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::CoMTask {lvalue})
1233
+ Target to reach in world frame.
1594
1234
  """
1595
1235
 
1596
1236
 
@@ -1614,13 +1254,9 @@ class DynamicsConstraint:
1614
1254
  """
1615
1255
  ...
1616
1256
 
1617
- name: any
1257
+ name: str # std::string
1618
1258
  """
1619
-
1620
- None( (placo.Prioritized)arg1) -> str :
1621
-
1622
- C++ signature :
1623
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1259
+ Object name.
1624
1260
  """
1625
1261
 
1626
1262
  priority: str
@@ -1631,13 +1267,6 @@ None( (placo.Prioritized)arg1) -> str :
1631
1267
 
1632
1268
  class DynamicsFrameTask:
1633
1269
  T_world_frame: any
1634
- """
1635
-
1636
- None( (placo.DynamicsFrameTask)arg1) -> object :
1637
-
1638
- C++ signature :
1639
- Eigen::Transform<double, 3, 2, 0> None(placo::dynamics::FrameTask {lvalue})
1640
- """
1641
1270
 
1642
1271
  def __init__(
1643
1272
  arg1: object,
@@ -1673,13 +1302,9 @@ None( (placo.DynamicsFrameTask)arg1) -> object :
1673
1302
 
1674
1303
 
1675
1304
  class DynamicsGearTask:
1676
- A: any
1305
+ A: numpy.ndarray # Eigen::MatrixXd
1677
1306
  """
1678
-
1679
- None( (placo.DynamicsTask)arg1) -> object :
1680
-
1681
- C++ signature :
1682
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1307
+ A matrix in Ax = b, where x is the accelerations.
1683
1308
  """
1684
1309
 
1685
1310
  def __init__(
@@ -1702,13 +1327,9 @@ None( (placo.DynamicsTask)arg1) -> object :
1702
1327
  """
1703
1328
  ...
1704
1329
 
1705
- b: any
1330
+ b: numpy.ndarray # Eigen::MatrixXd
1706
1331
  """
1707
-
1708
- None( (placo.DynamicsTask)arg1) -> object :
1709
-
1710
- C++ signature :
1711
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1332
+ b vector in Ax = b, where x is the accelerations
1712
1333
  """
1713
1334
 
1714
1335
  def configure(
@@ -1726,49 +1347,29 @@ None( (placo.DynamicsTask)arg1) -> object :
1726
1347
  """
1727
1348
  ...
1728
1349
 
1729
- derror: any
1350
+ derror: numpy.ndarray # Eigen::MatrixXd
1730
1351
  """
1731
-
1732
- None( (placo.DynamicsTask)arg1) -> object :
1733
-
1734
- C++ signature :
1735
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1352
+ Current velocity error vector.
1736
1353
  """
1737
1354
 
1738
- error: any
1355
+ error: numpy.ndarray # Eigen::MatrixXd
1739
1356
  """
1740
-
1741
- None( (placo.DynamicsTask)arg1) -> object :
1742
-
1743
- C++ signature :
1744
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1357
+ Current error vector.
1745
1358
  """
1746
1359
 
1747
- kd: any
1360
+ kd: float # double
1748
1361
  """
1749
-
1750
- None( (placo.DynamicsTask)arg1) -> float :
1751
-
1752
- C++ signature :
1753
- double {lvalue} None(placo::dynamics::Task {lvalue})
1362
+ D gain for position control (if negative, will be critically damped)
1754
1363
  """
1755
1364
 
1756
- kp: any
1365
+ kp: float # double
1757
1366
  """
1758
-
1759
- None( (placo.DynamicsTask)arg1) -> float :
1760
-
1761
- C++ signature :
1762
- double {lvalue} None(placo::dynamics::Task {lvalue})
1367
+ K gain for position control.
1763
1368
  """
1764
1369
 
1765
- name: any
1370
+ name: str # std::string
1766
1371
  """
1767
-
1768
- None( (placo.Prioritized)arg1) -> str :
1769
-
1770
- C++ signature :
1771
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1372
+ Object name.
1772
1373
  """
1773
1374
 
1774
1375
  priority: str
@@ -1793,13 +1394,9 @@ None( (placo.Prioritized)arg1) -> str :
1793
1394
 
1794
1395
 
1795
1396
  class DynamicsJointsTask:
1796
- A: any
1397
+ A: numpy.ndarray # Eigen::MatrixXd
1797
1398
  """
1798
-
1799
- None( (placo.DynamicsTask)arg1) -> object :
1800
-
1801
- C++ signature :
1802
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1399
+ A matrix in Ax = b, where x is the accelerations.
1803
1400
  """
1804
1401
 
1805
1402
  def __init__(
@@ -1807,13 +1404,9 @@ None( (placo.DynamicsTask)arg1) -> object :
1807
1404
  ) -> None:
1808
1405
  ...
1809
1406
 
1810
- b: any
1407
+ b: numpy.ndarray # Eigen::MatrixXd
1811
1408
  """
1812
-
1813
- None( (placo.DynamicsTask)arg1) -> object :
1814
-
1815
- C++ signature :
1816
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1409
+ b vector in Ax = b, where x is the accelerations
1817
1410
  """
1818
1411
 
1819
1412
  def configure(
@@ -1831,22 +1424,14 @@ None( (placo.DynamicsTask)arg1) -> object :
1831
1424
  """
1832
1425
  ...
1833
1426
 
1834
- derror: any
1427
+ derror: numpy.ndarray # Eigen::MatrixXd
1835
1428
  """
1836
-
1837
- None( (placo.DynamicsTask)arg1) -> object :
1838
-
1839
- C++ signature :
1840
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1429
+ Current velocity error vector.
1841
1430
  """
1842
1431
 
1843
- error: any
1432
+ error: numpy.ndarray # Eigen::MatrixXd
1844
1433
  """
1845
-
1846
- None( (placo.DynamicsTask)arg1) -> object :
1847
-
1848
- C++ signature :
1849
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1434
+ Current error vector.
1850
1435
  """
1851
1436
 
1852
1437
  def get_joint(
@@ -1860,31 +1445,19 @@ None( (placo.DynamicsTask)arg1) -> object :
1860
1445
  """
1861
1446
  ...
1862
1447
 
1863
- kd: any
1448
+ kd: float # double
1864
1449
  """
1865
-
1866
- None( (placo.DynamicsTask)arg1) -> float :
1867
-
1868
- C++ signature :
1869
- double {lvalue} None(placo::dynamics::Task {lvalue})
1450
+ D gain for position control (if negative, will be critically damped)
1870
1451
  """
1871
1452
 
1872
- kp: any
1453
+ kp: float # double
1873
1454
  """
1874
-
1875
- None( (placo.DynamicsTask)arg1) -> float :
1876
-
1877
- C++ signature :
1878
- double {lvalue} None(placo::dynamics::Task {lvalue})
1455
+ K gain for position control.
1879
1456
  """
1880
1457
 
1881
- name: any
1458
+ name: str # std::string
1882
1459
  """
1883
-
1884
- None( (placo.Prioritized)arg1) -> str :
1885
-
1886
- C++ signature :
1887
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1460
+ Object name.
1888
1461
  """
1889
1462
 
1890
1463
  priority: str
@@ -1923,22 +1496,14 @@ None( (placo.Prioritized)arg1) -> str :
1923
1496
 
1924
1497
 
1925
1498
  class DynamicsOrientationTask:
1926
- A: any
1499
+ A: numpy.ndarray # Eigen::MatrixXd
1927
1500
  """
1928
-
1929
- None( (placo.DynamicsTask)arg1) -> object :
1930
-
1931
- C++ signature :
1932
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1501
+ A matrix in Ax = b, where x is the accelerations.
1933
1502
  """
1934
1503
 
1935
- R_world_frame: any
1504
+ R_world_frame: numpy.ndarray # Eigen::Matrix3d
1936
1505
  """
1937
-
1938
- None( (placo.DynamicsOrientationTask)arg1) -> object :
1939
-
1940
- C++ signature :
1941
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1506
+ Target orientation.
1942
1507
  """
1943
1508
 
1944
1509
  def __init__(
@@ -1948,13 +1513,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
1948
1513
  ) -> None:
1949
1514
  ...
1950
1515
 
1951
- b: any
1516
+ b: numpy.ndarray # Eigen::MatrixXd
1952
1517
  """
1953
-
1954
- None( (placo.DynamicsTask)arg1) -> object :
1955
-
1956
- C++ signature :
1957
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1518
+ b vector in Ax = b, where x is the accelerations
1958
1519
  """
1959
1520
 
1960
1521
  def configure(
@@ -1972,76 +1533,44 @@ None( (placo.DynamicsTask)arg1) -> object :
1972
1533
  """
1973
1534
  ...
1974
1535
 
1975
- derror: any
1536
+ derror: numpy.ndarray # Eigen::MatrixXd
1976
1537
  """
1977
-
1978
- None( (placo.DynamicsTask)arg1) -> object :
1979
-
1980
- C++ signature :
1981
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1538
+ Current velocity error vector.
1982
1539
  """
1983
1540
 
1984
- domega_world: any
1541
+ domega_world: numpy.ndarray # Eigen::Vector3d
1985
1542
  """
1986
-
1987
- None( (placo.DynamicsOrientationTask)arg1) -> object :
1988
-
1989
- C++ signature :
1990
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1543
+ Target angular acceleration.
1991
1544
  """
1992
1545
 
1993
- error: any
1546
+ error: numpy.ndarray # Eigen::MatrixXd
1994
1547
  """
1995
-
1996
- None( (placo.DynamicsTask)arg1) -> object :
1997
-
1998
- C++ signature :
1999
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1548
+ Current error vector.
2000
1549
  """
2001
1550
 
2002
- kd: any
1551
+ kd: float # double
2003
1552
  """
2004
-
2005
- None( (placo.DynamicsTask)arg1) -> float :
2006
-
2007
- C++ signature :
2008
- double {lvalue} None(placo::dynamics::Task {lvalue})
1553
+ D gain for position control (if negative, will be critically damped)
2009
1554
  """
2010
1555
 
2011
- kp: any
1556
+ kp: float # double
2012
1557
  """
2013
-
2014
- None( (placo.DynamicsTask)arg1) -> float :
2015
-
2016
- C++ signature :
2017
- double {lvalue} None(placo::dynamics::Task {lvalue})
1558
+ K gain for position control.
2018
1559
  """
2019
1560
 
2020
- mask: any
1561
+ mask: AxisesMask # placo::tools::AxisesMask
2021
1562
  """
2022
-
2023
- None( (placo.DynamicsOrientationTask)arg1) -> placo.AxisesMask :
2024
-
2025
- C++ signature :
2026
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1563
+ Mask.
2027
1564
  """
2028
1565
 
2029
- name: any
1566
+ name: str # std::string
2030
1567
  """
2031
-
2032
- None( (placo.Prioritized)arg1) -> str :
2033
-
2034
- C++ signature :
2035
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1568
+ Object name.
2036
1569
  """
2037
1570
 
2038
- omega_world: any
1571
+ omega_world: numpy.ndarray # Eigen::Vector3d
2039
1572
  """
2040
-
2041
- None( (placo.DynamicsOrientationTask)arg1) -> object :
2042
-
2043
- C++ signature :
2044
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::OrientationTask {lvalue})
1573
+ Target angular velocity.
2045
1574
  """
2046
1575
 
2047
1576
  priority: str
@@ -2051,13 +1580,9 @@ None( (placo.DynamicsOrientationTask)arg1) -> object :
2051
1580
 
2052
1581
 
2053
1582
  class DynamicsPositionTask:
2054
- A: any
1583
+ A: numpy.ndarray # Eigen::MatrixXd
2055
1584
  """
2056
-
2057
- None( (placo.DynamicsTask)arg1) -> object :
2058
-
2059
- C++ signature :
2060
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1585
+ A matrix in Ax = b, where x is the accelerations.
2061
1586
  """
2062
1587
 
2063
1588
  def __init__(
@@ -2067,13 +1592,9 @@ None( (placo.DynamicsTask)arg1) -> object :
2067
1592
  ) -> None:
2068
1593
  ...
2069
1594
 
2070
- b: any
1595
+ b: numpy.ndarray # Eigen::MatrixXd
2071
1596
  """
2072
-
2073
- None( (placo.DynamicsTask)arg1) -> object :
2074
-
2075
- C++ signature :
2076
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1597
+ b vector in Ax = b, where x is the accelerations
2077
1598
  """
2078
1599
 
2079
1600
  def configure(
@@ -2091,85 +1612,49 @@ None( (placo.DynamicsTask)arg1) -> object :
2091
1612
  """
2092
1613
  ...
2093
1614
 
2094
- ddtarget_world: any
1615
+ ddtarget_world: numpy.ndarray # Eigen::Vector3d
2095
1616
  """
2096
-
2097
- None( (placo.DynamicsPositionTask)arg1) -> object :
2098
-
2099
- C++ signature :
2100
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
1617
+ Target acceleration in the world.
2101
1618
  """
2102
1619
 
2103
- derror: any
1620
+ derror: numpy.ndarray # Eigen::MatrixXd
2104
1621
  """
2105
-
2106
- None( (placo.DynamicsTask)arg1) -> object :
2107
-
2108
- C++ signature :
2109
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1622
+ Current velocity error vector.
2110
1623
  """
2111
1624
 
2112
- dtarget_world: any
1625
+ dtarget_world: numpy.ndarray # Eigen::Vector3d
2113
1626
  """
2114
-
2115
- None( (placo.DynamicsPositionTask)arg1) -> object :
2116
-
2117
- C++ signature :
2118
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
1627
+ Target velocity in the world.
2119
1628
  """
2120
1629
 
2121
- error: any
1630
+ error: numpy.ndarray # Eigen::MatrixXd
2122
1631
  """
2123
-
2124
- None( (placo.DynamicsTask)arg1) -> object :
2125
-
2126
- C++ signature :
2127
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1632
+ Current error vector.
2128
1633
  """
2129
1634
 
2130
- frame_index: any
1635
+ frame_index: any # pinocchio::FrameIndex
2131
1636
  """
2132
-
2133
- None( (placo.DynamicsPositionTask)arg1) -> int :
2134
-
2135
- C++ signature :
2136
- unsigned long {lvalue} None(placo::dynamics::PositionTask {lvalue})
1637
+ Frame.
2137
1638
  """
2138
1639
 
2139
- kd: any
1640
+ kd: float # double
2140
1641
  """
2141
-
2142
- None( (placo.DynamicsTask)arg1) -> float :
2143
-
2144
- C++ signature :
2145
- double {lvalue} None(placo::dynamics::Task {lvalue})
1642
+ D gain for position control (if negative, will be critically damped)
2146
1643
  """
2147
1644
 
2148
- kp: any
1645
+ kp: float # double
2149
1646
  """
2150
-
2151
- None( (placo.DynamicsTask)arg1) -> float :
2152
-
2153
- C++ signature :
2154
- double {lvalue} None(placo::dynamics::Task {lvalue})
1647
+ K gain for position control.
2155
1648
  """
2156
1649
 
2157
- mask: any
1650
+ mask: AxisesMask # placo::tools::AxisesMask
2158
1651
  """
2159
-
2160
- None( (placo.DynamicsPositionTask)arg1) -> placo.AxisesMask :
2161
-
2162
- C++ signature :
2163
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::PositionTask {lvalue})
1652
+ Mask.
2164
1653
  """
2165
1654
 
2166
- name: any
1655
+ name: str # std::string
2167
1656
  """
2168
-
2169
- None( (placo.Prioritized)arg1) -> str :
2170
-
2171
- C++ signature :
2172
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1657
+ Object name.
2173
1658
  """
2174
1659
 
2175
1660
  priority: str
@@ -2177,25 +1662,14 @@ None( (placo.Prioritized)arg1) -> str :
2177
1662
  Priority [str]
2178
1663
  """
2179
1664
 
2180
- target_world: any
1665
+ target_world: numpy.ndarray # Eigen::Vector3d
2181
1666
  """
2182
-
2183
- None( (placo.DynamicsPositionTask)arg1) -> object :
2184
-
2185
- C++ signature :
2186
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::PositionTask {lvalue})
1667
+ Target position in the world.
2187
1668
  """
2188
1669
 
2189
1670
 
2190
1671
  class DynamicsRelativeFrameTask:
2191
1672
  T_a_b: any
2192
- """
2193
-
2194
- None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
2195
-
2196
- C++ signature :
2197
- Eigen::Transform<double, 3, 2, 0> None(placo::dynamics::RelativeFrameTask {lvalue})
2198
- """
2199
1673
 
2200
1674
  def __init__(
2201
1675
  arg1: object,
@@ -2231,22 +1705,14 @@ None( (placo.DynamicsRelativeFrameTask)arg1) -> object :
2231
1705
 
2232
1706
 
2233
1707
  class DynamicsRelativeOrientationTask:
2234
- A: any
1708
+ A: numpy.ndarray # Eigen::MatrixXd
2235
1709
  """
2236
-
2237
- None( (placo.DynamicsTask)arg1) -> object :
2238
-
2239
- C++ signature :
2240
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1710
+ A matrix in Ax = b, where x is the accelerations.
2241
1711
  """
2242
1712
 
2243
- R_a_b: any
1713
+ R_a_b: numpy.ndarray # Eigen::Matrix3d
2244
1714
  """
2245
-
2246
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2247
-
2248
- C++ signature :
2249
- Eigen::Matrix<double, 3, 3, 0, 3, 3> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1715
+ Target relative orientation.
2250
1716
  """
2251
1717
 
2252
1718
  def __init__(
@@ -2257,13 +1723,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2257
1723
  ) -> None:
2258
1724
  ...
2259
1725
 
2260
- b: any
1726
+ b: numpy.ndarray # Eigen::MatrixXd
2261
1727
  """
2262
-
2263
- None( (placo.DynamicsTask)arg1) -> object :
2264
-
2265
- C++ signature :
2266
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1728
+ b vector in Ax = b, where x is the accelerations
2267
1729
  """
2268
1730
 
2269
1731
  def configure(
@@ -2281,76 +1743,44 @@ None( (placo.DynamicsTask)arg1) -> object :
2281
1743
  """
2282
1744
  ...
2283
1745
 
2284
- derror: any
1746
+ derror: numpy.ndarray # Eigen::MatrixXd
2285
1747
  """
2286
-
2287
- None( (placo.DynamicsTask)arg1) -> object :
2288
-
2289
- C++ signature :
2290
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1748
+ Current velocity error vector.
2291
1749
  """
2292
1750
 
2293
- domega_a_b: any
1751
+ domega_a_b: numpy.ndarray # Eigen::Vector3d
2294
1752
  """
2295
-
2296
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2297
-
2298
- C++ signature :
2299
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1753
+ Target relative angular velocity.
2300
1754
  """
2301
1755
 
2302
- error: any
1756
+ error: numpy.ndarray # Eigen::MatrixXd
2303
1757
  """
2304
-
2305
- None( (placo.DynamicsTask)arg1) -> object :
2306
-
2307
- C++ signature :
2308
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1758
+ Current error vector.
2309
1759
  """
2310
1760
 
2311
- kd: any
1761
+ kd: float # double
2312
1762
  """
2313
-
2314
- None( (placo.DynamicsTask)arg1) -> float :
2315
-
2316
- C++ signature :
2317
- double {lvalue} None(placo::dynamics::Task {lvalue})
1763
+ D gain for position control (if negative, will be critically damped)
2318
1764
  """
2319
1765
 
2320
- kp: any
1766
+ kp: float # double
2321
1767
  """
2322
-
2323
- None( (placo.DynamicsTask)arg1) -> float :
2324
-
2325
- C++ signature :
2326
- double {lvalue} None(placo::dynamics::Task {lvalue})
1768
+ K gain for position control.
2327
1769
  """
2328
1770
 
2329
- mask: any
1771
+ mask: AxisesMask # placo::tools::AxisesMask
2330
1772
  """
2331
-
2332
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> placo.AxisesMask :
2333
-
2334
- C++ signature :
2335
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1773
+ Mask.
2336
1774
  """
2337
1775
 
2338
- name: any
1776
+ name: str # std::string
2339
1777
  """
2340
-
2341
- None( (placo.Prioritized)arg1) -> str :
2342
-
2343
- C++ signature :
2344
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1778
+ Object name.
2345
1779
  """
2346
1780
 
2347
- omega_a_b: any
1781
+ omega_a_b: numpy.ndarray # Eigen::Vector3d
2348
1782
  """
2349
-
2350
- None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2351
-
2352
- C++ signature :
2353
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativeOrientationTask {lvalue})
1783
+ Target relative angular velocity.
2354
1784
  """
2355
1785
 
2356
1786
  priority: str
@@ -2360,13 +1790,9 @@ None( (placo.DynamicsRelativeOrientationTask)arg1) -> object :
2360
1790
 
2361
1791
 
2362
1792
  class DynamicsRelativePositionTask:
2363
- A: any
1793
+ A: numpy.ndarray # Eigen::MatrixXd
2364
1794
  """
2365
-
2366
- None( (placo.DynamicsTask)arg1) -> object :
2367
-
2368
- C++ signature :
2369
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1795
+ A matrix in Ax = b, where x is the accelerations.
2370
1796
  """
2371
1797
 
2372
1798
  def __init__(
@@ -2377,13 +1803,9 @@ None( (placo.DynamicsTask)arg1) -> object :
2377
1803
  ) -> None:
2378
1804
  ...
2379
1805
 
2380
- b: any
1806
+ b: numpy.ndarray # Eigen::MatrixXd
2381
1807
  """
2382
-
2383
- None( (placo.DynamicsTask)arg1) -> object :
2384
-
2385
- C++ signature :
2386
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1808
+ b vector in Ax = b, where x is the accelerations
2387
1809
  """
2388
1810
 
2389
1811
  def configure(
@@ -2401,76 +1823,44 @@ None( (placo.DynamicsTask)arg1) -> object :
2401
1823
  """
2402
1824
  ...
2403
1825
 
2404
- ddtarget: any
1826
+ ddtarget: numpy.ndarray # Eigen::Vector3d
2405
1827
  """
2406
-
2407
- None( (placo.DynamicsRelativePositionTask)arg1) -> object :
2408
-
2409
- C++ signature :
2410
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1828
+ Target relative acceleration.
2411
1829
  """
2412
1830
 
2413
- derror: any
1831
+ derror: numpy.ndarray # Eigen::MatrixXd
2414
1832
  """
2415
-
2416
- None( (placo.DynamicsTask)arg1) -> object :
2417
-
2418
- C++ signature :
2419
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1833
+ Current velocity error vector.
2420
1834
  """
2421
1835
 
2422
- dtarget: any
1836
+ dtarget: numpy.ndarray # Eigen::Vector3d
2423
1837
  """
2424
-
2425
- None( (placo.DynamicsRelativePositionTask)arg1) -> object :
2426
-
2427
- C++ signature :
2428
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1838
+ Target relative velocity.
2429
1839
  """
2430
1840
 
2431
- error: any
1841
+ error: numpy.ndarray # Eigen::MatrixXd
2432
1842
  """
2433
-
2434
- None( (placo.DynamicsTask)arg1) -> object :
2435
-
2436
- C++ signature :
2437
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
1843
+ Current error vector.
2438
1844
  """
2439
1845
 
2440
- kd: any
1846
+ kd: float # double
2441
1847
  """
2442
-
2443
- None( (placo.DynamicsTask)arg1) -> float :
2444
-
2445
- C++ signature :
2446
- double {lvalue} None(placo::dynamics::Task {lvalue})
1848
+ D gain for position control (if negative, will be critically damped)
2447
1849
  """
2448
1850
 
2449
- kp: any
1851
+ kp: float # double
2450
1852
  """
2451
-
2452
- None( (placo.DynamicsTask)arg1) -> float :
2453
-
2454
- C++ signature :
2455
- double {lvalue} None(placo::dynamics::Task {lvalue})
1853
+ K gain for position control.
2456
1854
  """
2457
1855
 
2458
- mask: any
1856
+ mask: AxisesMask # placo::tools::AxisesMask
2459
1857
  """
2460
-
2461
- None( (placo.DynamicsRelativePositionTask)arg1) -> placo.AxisesMask :
2462
-
2463
- C++ signature :
2464
- placo::tools::AxisesMask {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1858
+ Mask.
2465
1859
  """
2466
1860
 
2467
- name: any
1861
+ name: str # std::string
2468
1862
  """
2469
-
2470
- None( (placo.Prioritized)arg1) -> str :
2471
-
2472
- C++ signature :
2473
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
1863
+ Object name.
2474
1864
  """
2475
1865
 
2476
1866
  priority: str
@@ -2478,13 +1868,9 @@ None( (placo.Prioritized)arg1) -> str :
2478
1868
  Priority [str]
2479
1869
  """
2480
1870
 
2481
- target: any
1871
+ target: numpy.ndarray # Eigen::Vector3d
2482
1872
  """
2483
-
2484
- None( (placo.DynamicsRelativePositionTask)arg1) -> object :
2485
-
2486
- C++ signature :
2487
- Eigen::Matrix<double, 3, 1, 0, 3, 1> {lvalue} None(placo::dynamics::RelativePositionTask {lvalue})
1873
+ Target relative position.
2488
1874
  """
2489
1875
 
2490
1876
 
@@ -2741,22 +2127,14 @@ class DynamicsSolver:
2741
2127
  ) -> int:
2742
2128
  ...
2743
2129
 
2744
- damping: any
2130
+ damping: float # double
2745
2131
  """
2746
-
2747
- None( (placo.DynamicsSolver)arg1) -> float :
2748
-
2749
- C++ signature :
2750
- double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2132
+ Global damping that is added to all the joints.
2751
2133
  """
2752
2134
 
2753
- dt: any
2135
+ dt: float # double
2754
2136
  """
2755
-
2756
- None( (placo.DynamicsSolver)arg1) -> float :
2757
-
2758
- C++ signature :
2759
- double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2137
+ Solver dt (seconds)
2760
2138
  """
2761
2139
 
2762
2140
  def dump_status(
@@ -2803,13 +2181,9 @@ None( (placo.DynamicsSolver)arg1) -> float :
2803
2181
  """
2804
2182
  ...
2805
2183
 
2806
- extra_force: any
2184
+ extra_force: numpy.ndarray # Eigen::VectorXd
2807
2185
  """
2808
-
2809
- None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
2810
-
2811
- C++ signature :
2812
- Eigen::Matrix<double, -1, 1, 0, -1, 1> None(placo::dynamics::DynamicsSolver {lvalue})
2186
+ Extra force to be added to the system (similar to non-linear terms)
2813
2187
  """
2814
2188
 
2815
2189
  def get_contact(
@@ -2818,13 +2192,9 @@ None( (placo.DynamicsSolver)arg1) -> numpy.ndarray :
2818
2192
  ) -> Contact:
2819
2193
  ...
2820
2194
 
2821
- gravity_only: any
2195
+ gravity_only: bool # bool
2822
2196
  """
2823
-
2824
- None( (placo.DynamicsSolver)arg1) -> bool :
2825
-
2826
- C++ signature :
2827
- bool {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2197
+ Use gravity only (no coriolis, no centrifugal)
2828
2198
  """
2829
2199
 
2830
2200
  def mask_fbase(
@@ -2836,13 +2206,9 @@ None( (placo.DynamicsSolver)arg1) -> bool :
2836
2206
  """
2837
2207
  ...
2838
2208
 
2839
- problem: any
2209
+ problem: Problem # placo::problem::Problem
2840
2210
  """
2841
-
2842
- None( (placo.DynamicsSolver)arg1) -> object :
2843
-
2844
- C++ signature :
2845
- placo::problem::Problem {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2211
+ Instance of the problem.
2846
2212
  """
2847
2213
 
2848
2214
  def remove_constraint(
@@ -2876,14 +2242,7 @@ None( (placo.DynamicsSolver)arg1) -> object :
2876
2242
  """
2877
2243
  ...
2878
2244
 
2879
- robot: any
2880
- """
2881
-
2882
- None( (placo.DynamicsSolver)arg1) -> object :
2883
-
2884
- C++ signature :
2885
- placo::model::RobotWrapper None(placo::dynamics::DynamicsSolver)
2886
- """
2245
+ robot: RobotWrapper # placo::model::RobotWrapper
2887
2246
 
2888
2247
  def set_kd(
2889
2248
  self,
@@ -2929,13 +2288,9 @@ None( (placo.DynamicsSolver)arg1) -> object :
2929
2288
  ) -> DynamicsSolverResult:
2930
2289
  ...
2931
2290
 
2932
- torque_cost: any
2291
+ torque_cost: float # double
2933
2292
  """
2934
-
2935
- None( (placo.DynamicsSolver)arg1) -> float :
2936
-
2937
- C++ signature :
2938
- double {lvalue} None(placo::dynamics::DynamicsSolver {lvalue})
2293
+ Cost for torque regularization (1e-3 by default)
2939
2294
  """
2940
2295
 
2941
2296
 
@@ -2945,41 +2300,13 @@ class DynamicsSolverResult:
2945
2300
  ) -> None:
2946
2301
  ...
2947
2302
 
2948
- qdd: any
2949
- """
2950
-
2951
- None( (placo.DynamicsSolverResult)arg1) -> object :
2303
+ qdd: numpy.ndarray # Eigen::VectorXd
2952
2304
 
2953
- C++ signature :
2954
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2955
- """
2305
+ success: bool # bool
2956
2306
 
2957
- success: any
2958
- """
2959
-
2960
- None( (placo.DynamicsSolverResult)arg1) -> bool :
2961
-
2962
- C++ signature :
2963
- bool {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2964
- """
2965
-
2966
- tau: any
2967
- """
2968
-
2969
- None( (placo.DynamicsSolverResult)arg1) -> object :
2307
+ tau: numpy.ndarray # Eigen::VectorXd
2970
2308
 
2971
- C++ signature :
2972
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2973
- """
2974
-
2975
- tau_contacts: any
2976
- """
2977
-
2978
- None( (placo.DynamicsSolverResult)arg1) -> object :
2979
-
2980
- C++ signature :
2981
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::DynamicsSolver::Result {lvalue})
2982
- """
2309
+ tau_contacts: numpy.ndarray # Eigen::VectorXd
2983
2310
 
2984
2311
  def tau_dict(
2985
2312
  arg1: DynamicsSolverResult,
@@ -2989,26 +2316,18 @@ None( (placo.DynamicsSolverResult)arg1) -> object :
2989
2316
 
2990
2317
 
2991
2318
  class DynamicsTask:
2992
- A: any
2319
+ A: numpy.ndarray # Eigen::MatrixXd
2993
2320
  """
2994
-
2995
- None( (placo.DynamicsTask)arg1) -> object :
2996
-
2997
- C++ signature :
2998
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2321
+ A matrix in Ax = b, where x is the accelerations.
2999
2322
  """
3000
2323
 
3001
2324
  def __init__(
3002
2325
  ) -> any:
3003
2326
  ...
3004
2327
 
3005
- b: any
2328
+ b: numpy.ndarray # Eigen::MatrixXd
3006
2329
  """
3007
-
3008
- None( (placo.DynamicsTask)arg1) -> object :
3009
-
3010
- C++ signature :
3011
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2330
+ b vector in Ax = b, where x is the accelerations
3012
2331
  """
3013
2332
 
3014
2333
  def configure(
@@ -3026,49 +2345,29 @@ None( (placo.DynamicsTask)arg1) -> object :
3026
2345
  """
3027
2346
  ...
3028
2347
 
3029
- derror: any
2348
+ derror: numpy.ndarray # Eigen::MatrixXd
3030
2349
  """
3031
-
3032
- None( (placo.DynamicsTask)arg1) -> object :
3033
-
3034
- C++ signature :
3035
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2350
+ Current velocity error vector.
3036
2351
  """
3037
2352
 
3038
- error: any
2353
+ error: numpy.ndarray # Eigen::MatrixXd
3039
2354
  """
3040
-
3041
- None( (placo.DynamicsTask)arg1) -> object :
3042
-
3043
- C++ signature :
3044
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2355
+ Current error vector.
3045
2356
  """
3046
2357
 
3047
- kd: any
2358
+ kd: float # double
3048
2359
  """
3049
-
3050
- None( (placo.DynamicsTask)arg1) -> float :
3051
-
3052
- C++ signature :
3053
- double {lvalue} None(placo::dynamics::Task {lvalue})
2360
+ D gain for position control (if negative, will be critically damped)
3054
2361
  """
3055
2362
 
3056
- kp: any
2363
+ kp: float # double
3057
2364
  """
3058
-
3059
- None( (placo.DynamicsTask)arg1) -> float :
3060
-
3061
- C++ signature :
3062
- double {lvalue} None(placo::dynamics::Task {lvalue})
2365
+ K gain for position control.
3063
2366
  """
3064
2367
 
3065
- name: any
2368
+ name: str # std::string
3066
2369
  """
3067
-
3068
- None( (placo.Prioritized)arg1) -> str :
3069
-
3070
- C++ signature :
3071
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
2370
+ Object name.
3072
2371
  """
3073
2372
 
3074
2373
  priority: str
@@ -3078,13 +2377,9 @@ None( (placo.Prioritized)arg1) -> str :
3078
2377
 
3079
2378
 
3080
2379
  class DynamicsTorqueTask:
3081
- A: any
2380
+ A: numpy.ndarray # Eigen::MatrixXd
3082
2381
  """
3083
-
3084
- None( (placo.DynamicsTask)arg1) -> object :
3085
-
3086
- C++ signature :
3087
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2382
+ A matrix in Ax = b, where x is the accelerations.
3088
2383
  """
3089
2384
 
3090
2385
  def __init__(
@@ -3092,13 +2387,9 @@ None( (placo.DynamicsTask)arg1) -> object :
3092
2387
  ) -> None:
3093
2388
  ...
3094
2389
 
3095
- b: any
2390
+ b: numpy.ndarray # Eigen::MatrixXd
3096
2391
  """
3097
-
3098
- None( (placo.DynamicsTask)arg1) -> object :
3099
-
3100
- C++ signature :
3101
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2392
+ b vector in Ax = b, where x is the accelerations
3102
2393
  """
3103
2394
 
3104
2395
  def configure(
@@ -3116,49 +2407,29 @@ None( (placo.DynamicsTask)arg1) -> object :
3116
2407
  """
3117
2408
  ...
3118
2409
 
3119
- derror: any
2410
+ derror: numpy.ndarray # Eigen::MatrixXd
3120
2411
  """
3121
-
3122
- None( (placo.DynamicsTask)arg1) -> object :
3123
-
3124
- C++ signature :
3125
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2412
+ Current velocity error vector.
3126
2413
  """
3127
2414
 
3128
- error: any
2415
+ error: numpy.ndarray # Eigen::MatrixXd
3129
2416
  """
3130
-
3131
- None( (placo.DynamicsTask)arg1) -> object :
3132
-
3133
- C++ signature :
3134
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::dynamics::Task {lvalue})
2417
+ Current error vector.
3135
2418
  """
3136
2419
 
3137
- kd: any
2420
+ kd: float # double
3138
2421
  """
3139
-
3140
- None( (placo.DynamicsTask)arg1) -> float :
3141
-
3142
- C++ signature :
3143
- double {lvalue} None(placo::dynamics::Task {lvalue})
2422
+ D gain for position control (if negative, will be critically damped)
3144
2423
  """
3145
2424
 
3146
- kp: any
2425
+ kp: float # double
3147
2426
  """
3148
-
3149
- None( (placo.DynamicsTask)arg1) -> float :
3150
-
3151
- C++ signature :
3152
- double {lvalue} None(placo::dynamics::Task {lvalue})
2427
+ K gain for position control.
3153
2428
  """
3154
2429
 
3155
- name: any
2430
+ name: str # std::string
3156
2431
  """
3157
-
3158
- None( (placo.Prioritized)arg1) -> str :
3159
-
3160
- C++ signature :
3161
- std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > {lvalue} None(placo::tools::Prioritized {lvalue})
2432
+ Object name.
3162
2433
  """
3163
2434
 
3164
2435
  priority: str
@@ -3196,13 +2467,9 @@ None( (placo.Prioritized)arg1) -> str :
3196
2467
 
3197
2468
 
3198
2469
  class Expression:
3199
- A: any
2470
+ A: numpy.ndarray # Eigen::MatrixXd
3200
2471
  """
3201
-
3202
- None( (placo.Expression)arg1) -> object :
3203
-
3204
- C++ signature :
3205
- Eigen::Matrix<double, -1, -1, 0, -1, -1> {lvalue} None(placo::problem::Expression {lvalue})
2472
+ Expression A matrix, in Ax + b.
3206
2473
  """
3207
2474
 
3208
2475
  def __init__(
@@ -3210,13 +2477,9 @@ None( (placo.Expression)arg1) -> object :
3210
2477
  ) -> any:
3211
2478
  ...
3212
2479
 
3213
- b: any
2480
+ b: numpy.ndarray # Eigen::VectorXd
3214
2481
  """
3215
-
3216
- None( (placo.Expression)arg1) -> object :
3217
-
3218
- C++ signature :
3219
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::problem::Expression {lvalue})
2482
+ Expression b vector, in Ax + b.
3220
2483
  """
3221
2484
 
3222
2485
  def cols(
@@ -3345,76 +2608,38 @@ class ExternalWrenchContact:
3345
2608
  """
3346
2609
  ...
3347
2610
 
3348
- active: any
3349
- """
3350
-
3351
- None( (placo.Contact)arg1) -> bool :
3352
-
3353
- C++ signature :
3354
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
3355
- """
3356
-
3357
- frame_index: any
2611
+ active: bool # bool
3358
2612
  """
3359
-
3360
- None( (placo.ExternalWrenchContact)arg1) -> int :
3361
-
3362
- C++ signature :
3363
- unsigned long {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
2613
+ true if the contact is active (ignored by the solver else, this allow to enable/disable a contact without removing it from the solver)
3364
2614
  """
3365
2615
 
3366
- mu: any
3367
- """
3368
-
3369
- None( (placo.Contact)arg1) -> float :
2616
+ frame_index: any # pinocchio::FrameIndex
3370
2617
 
3371
- C++ signature :
3372
- double {lvalue} None(placo::dynamics::Contact {lvalue})
2618
+ mu: float # double
3373
2619
  """
3374
-
3375
- w_ext: any
2620
+ Coefficient of friction (if relevant)
3376
2621
  """
3377
-
3378
- None( (placo.ExternalWrenchContact)arg1) -> object :
3379
2622
 
3380
- C++ signature :
3381
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::ExternalWrenchContact {lvalue})
3382
- """
2623
+ w_ext: numpy.ndarray # Eigen::VectorXd
3383
2624
 
3384
- weight_forces: any
2625
+ weight_forces: float # double
3385
2626
  """
3386
-
3387
- None( (placo.Contact)arg1) -> float :
3388
-
3389
- C++ signature :
3390
- double {lvalue} None(placo::dynamics::Contact {lvalue})
2627
+ Weight of forces for the optimization (if relevant)
3391
2628
  """
3392
2629
 
3393
- weight_moments: any
2630
+ weight_moments: float # double
3394
2631
  """
3395
-
3396
- None( (placo.Contact)arg1) -> float :
3397
-
3398
- C++ signature :
3399
- double {lvalue} None(placo::dynamics::Contact {lvalue})
2632
+ Weight of moments for optimization (if relevant)
3400
2633
  """
3401
2634
 
3402
- weight_tangentials: any
2635
+ weight_tangentials: float # double
3403
2636
  """
3404
-
3405
- None( (placo.Contact)arg1) -> float :
3406
-
3407
- C++ signature :
3408
- double {lvalue} None(placo::dynamics::Contact {lvalue})
2637
+ Extra cost for tangential forces.
3409
2638
  """
3410
2639
 
3411
- wrench: any
2640
+ wrench: numpy.ndarray # Eigen::VectorXd
3412
2641
  """
3413
-
3414
- None( (placo.Contact)arg1) -> object :
3415
-
3416
- C++ signature :
3417
- Eigen::Matrix<double, -1, 1, 0, -1, 1> {lvalue} None(placo::dynamics::Contact {lvalue})
2642
+ Wrench populated after the DynamicsSolver::solve call.
3418
2643
  """
3419
2644
 
3420
2645
 
@@ -3512,32 +2737,11 @@ class Footstep:
3512
2737
  ) -> any:
3513
2738
  ...
3514
2739
 
3515
- foot_length: any
3516
- """
3517
-
3518
- None( (placo.Footstep)arg1) -> float :
2740
+ foot_length: float # double
3519
2741
 
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 :
2742
+ foot_width: float # double
3537
2743
 
3538
- C++ signature :
3539
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::humanoid::FootstepsPlanner::Footstep {lvalue})
3540
- """
2744
+ frame: numpy.ndarray # Eigen::Affine3d
3541
2745
 
3542
2746
  def overlap(
3543
2747
  self,
@@ -3561,14 +2765,7 @@ None( (placo.Footstep)arg1) -> object :
3561
2765
  ) -> None:
3562
2766
  ...
3563
2767
 
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
- """
2768
+ side: any # placo::humanoid::HumanoidRobot::Side
3572
2769
 
3573
2770
  def support_polygon(
3574
2771
  self,
@@ -3797,13 +2994,6 @@ class FootstepsPlannerRepetitive:
3797
2994
 
3798
2995
  class FrameTask:
3799
2996
  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
2997
 
3808
2998
  def __init__(
3809
2999
  self,
@@ -3842,13 +3032,9 @@ None( (placo.FrameTask)arg1) -> object :
3842
3032
 
3843
3033
 
3844
3034
  class GearTask:
3845
- A: any
3035
+ A: numpy.ndarray # Eigen::MatrixXd
3846
3036
  """
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})
3037
+ Matrix A in the task Ax = b, where x are the joint delta positions.
3852
3038
  """
3853
3039
 
3854
3040
  def __init__(
@@ -3874,13 +3060,9 @@ None( (placo.Task)arg1) -> object :
3874
3060
  """
3875
3061
  ...
3876
3062
 
3877
- b: any
3063
+ b: numpy.ndarray # Eigen::MatrixXd
3878
3064
  """
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})
3065
+ Vector b in the task Ax = b, where x are the joint delta positions.
3884
3066
  """
3885
3067
 
3886
3068
  def configure(
@@ -3914,13 +3096,9 @@ None( (placo.Task)arg1) -> object :
3914
3096
  """
3915
3097
  ...
3916
3098
 
3917
- name: any
3099
+ name: str # std::string
3918
3100
  """
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})
3101
+ Object name.
3924
3102
  """
3925
3103
 
3926
3104
  priority: str
@@ -3958,14 +3136,7 @@ class HumanoidParameters:
3958
3136
  ) -> None:
3959
3137
  ...
3960
3138
 
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
- """
3139
+ dcm_offset_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
3969
3140
 
3970
3141
  def double_support_duration(
3971
3142
  self,
@@ -3975,13 +3146,9 @@ None( (placo.HumanoidParameters)arg1) -> placo.vector_Vector2d :
3975
3146
  """
3976
3147
  ...
3977
3148
 
3978
- double_support_ratio: any
3149
+ double_support_ratio: float # double
3979
3150
  """
3980
-
3981
- None( (placo.HumanoidParameters)arg1) -> float :
3982
-
3983
- C++ signature :
3984
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3151
+ Duration ratio between single support and double support.
3985
3152
  """
3986
3153
 
3987
3154
  def double_support_timesteps(
@@ -4009,49 +3176,29 @@ None( (placo.HumanoidParameters)arg1) -> float :
4009
3176
  """
4010
3177
  ...
4011
3178
 
4012
- feet_spacing: any
3179
+ feet_spacing: float # double
4013
3180
  """
4014
-
4015
- None( (placo.HumanoidParameters)arg1) -> float :
4016
-
4017
- C++ signature :
4018
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3181
+ Lateral spacing between feet [m].
4019
3182
  """
4020
3183
 
4021
- foot_length: any
3184
+ foot_length: float # double
4022
3185
  """
4023
-
4024
- None( (placo.HumanoidParameters)arg1) -> float :
4025
-
4026
- C++ signature :
4027
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3186
+ Foot length [m].
4028
3187
  """
4029
3188
 
4030
- foot_width: any
3189
+ foot_width: float # double
4031
3190
  """
4032
-
4033
- None( (placo.HumanoidParameters)arg1) -> float :
4034
-
4035
- C++ signature :
4036
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3191
+ Foot width [m].
4037
3192
  """
4038
3193
 
4039
- foot_zmp_target_x: any
3194
+ foot_zmp_target_x: float # double
4040
3195
  """
4041
-
4042
- None( (placo.HumanoidParameters)arg1) -> float :
4043
-
4044
- C++ signature :
4045
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3196
+ Target offset for the ZMP x reference trajectory in the foot frame [m].
4046
3197
  """
4047
3198
 
4048
- foot_zmp_target_y: any
3199
+ foot_zmp_target_y: float # double
4049
3200
  """
4050
-
4051
- None( (placo.HumanoidParameters)arg1) -> float :
4052
-
4053
- C++ signature :
4054
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3201
+ Target offset for the ZMP x reference trajectory in the foot frame, positive is "outward" [m].
4055
3202
  """
4056
3203
 
4057
3204
  def has_double_support(
@@ -4062,40 +3209,21 @@ None( (placo.HumanoidParameters)arg1) -> float :
4062
3209
  """
4063
3210
  ...
4064
3211
 
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
- """
3212
+ op_space_polygon: list[numpy.ndarray] # std::vector< Eigen::Vector2d >
4073
3213
 
4074
- planned_timesteps: any
3214
+ planned_timesteps: int # int
4075
3215
  """
4076
-
4077
- None( (placo.HumanoidParameters)arg1) -> int :
4078
-
4079
- C++ signature :
4080
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3216
+ Planning horizon for the CoM trajectory.
4081
3217
  """
4082
3218
 
4083
- single_support_duration: any
3219
+ single_support_duration: float # double
4084
3220
  """
4085
-
4086
- None( (placo.HumanoidParameters)arg1) -> float :
4087
-
4088
- C++ signature :
4089
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3221
+ Single support duration [s].
4090
3222
  """
4091
3223
 
4092
- single_support_timesteps: any
3224
+ single_support_timesteps: int # int
4093
3225
  """
4094
-
4095
- None( (placo.HumanoidParameters)arg1) -> int :
4096
-
4097
- C++ signature :
4098
- int {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3226
+ Number of timesteps for one single support.
4099
3227
  """
4100
3228
 
4101
3229
  def startend_double_support_duration(
@@ -4106,13 +3234,9 @@ None( (placo.HumanoidParameters)arg1) -> int :
4106
3234
  """
4107
3235
  ...
4108
3236
 
4109
- startend_double_support_ratio: any
3237
+ startend_double_support_ratio: float # double
4110
3238
  """
4111
-
4112
- None( (placo.HumanoidParameters)arg1) -> float :
4113
-
4114
- C++ signature :
4115
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3239
+ Duration ratio between single support and start/end double support.
4116
3240
  """
4117
3241
 
4118
3242
  def startend_double_support_timesteps(
@@ -4123,103 +3247,59 @@ None( (placo.HumanoidParameters)arg1) -> float :
4123
3247
  """
4124
3248
  ...
4125
3249
 
4126
- walk_com_height: any
3250
+ walk_com_height: float # double
4127
3251
  """
4128
-
4129
- None( (placo.HumanoidParameters)arg1) -> float :
4130
-
4131
- C++ signature :
4132
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3252
+ Target CoM height while walking [m].
4133
3253
  """
4134
3254
 
4135
- walk_dtheta_spacing: any
3255
+ walk_dtheta_spacing: float # double
4136
3256
  """
4137
-
4138
- None( (placo.HumanoidParameters)arg1) -> float :
4139
-
4140
- C++ signature :
4141
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3257
+ How much we need to space the feet per dtheta [m/rad].
4142
3258
  """
4143
3259
 
4144
- walk_foot_height: any
3260
+ walk_foot_height: float # double
4145
3261
  """
4146
-
4147
- None( (placo.HumanoidParameters)arg1) -> float :
4148
-
4149
- C++ signature :
4150
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3262
+ How height the feet are rising while walking [m].
4151
3263
  """
4152
3264
 
4153
- walk_foot_rise_ratio: any
3265
+ walk_foot_rise_ratio: float # double
4154
3266
  """
4155
-
4156
- None( (placo.HumanoidParameters)arg1) -> float :
4157
-
4158
- C++ signature :
4159
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3267
+ ratio of time spent at foot height during the step
4160
3268
  """
4161
3269
 
4162
- walk_max_dtheta: any
3270
+ walk_max_dtheta: float # double
4163
3271
  """
4164
-
4165
- None( (placo.HumanoidParameters)arg1) -> float :
4166
-
4167
- C++ signature :
4168
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3272
+ Maximum step (yaw)
4169
3273
  """
4170
3274
 
4171
- walk_max_dx_backward: any
3275
+ walk_max_dx_backward: float # double
4172
3276
  """
4173
-
4174
- None( (placo.HumanoidParameters)arg1) -> float :
4175
-
4176
- C++ signature :
4177
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3277
+ Maximum step (backward)
4178
3278
  """
4179
3279
 
4180
- walk_max_dx_forward: any
3280
+ walk_max_dx_forward: float # double
4181
3281
  """
4182
-
4183
- None( (placo.HumanoidParameters)arg1) -> float :
4184
-
4185
- C++ signature :
4186
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3282
+ Maximum step (forward)
4187
3283
  """
4188
3284
 
4189
- walk_max_dy: any
3285
+ walk_max_dy: float # double
4190
3286
  """
4191
-
4192
- None( (placo.HumanoidParameters)arg1) -> float :
4193
-
4194
- C++ signature :
4195
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3287
+ Maximum step (lateral)
4196
3288
  """
4197
3289
 
4198
- walk_trunk_pitch: any
3290
+ walk_trunk_pitch: float # double
4199
3291
  """
4200
-
4201
- None( (placo.HumanoidParameters)arg1) -> float :
4202
-
4203
- C++ signature :
4204
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3292
+ Trunk pitch while walking [rad].
4205
3293
  """
4206
3294
 
4207
- zmp_margin: any
3295
+ zmp_margin: float # double
4208
3296
  """
4209
-
4210
- None( (placo.HumanoidParameters)arg1) -> float :
4211
-
4212
- C++ signature :
4213
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3297
+ Margin for the ZMP to live in the support polygon [m].
4214
3298
  """
4215
3299
 
4216
- zmp_reference_weight: any
3300
+ zmp_reference_weight: float # double
4217
3301
  """
4218
-
4219
- None( (placo.HumanoidParameters)arg1) -> float :
4220
-
4221
- C++ signature :
4222
- double {lvalue} None(placo::humanoid::HumanoidParameters {lvalue})
3302
+ Weight for ZMP reference in the solver.
4223
3303
  """
4224
3304
 
4225
3305
 
@@ -4249,13 +3329,9 @@ class HumanoidRobot:
4249
3329
  """
4250
3330
  ...
4251
3331
 
4252
- collision_model: any
3332
+ collision_model: any # pinocchio::GeometryModel
4253
3333
  """
4254
-
4255
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4256
-
4257
- C++ signature :
4258
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3334
+ Pinocchio collision model.
4259
3335
  """
4260
3336
 
4261
3337
  def com_jacobian(
@@ -4309,7 +3385,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4309
3385
  """
4310
3386
  Computes all minimum distances between current collision pairs.
4311
3387
 
4312
- :return: <Element 'para' at 0xffd1adccc360>
3388
+ :return: <Element 'para' at 0xff1e452b4360>
4313
3389
  """
4314
3390
  ...
4315
3391
 
@@ -4341,7 +3417,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4341
3417
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
4342
3418
 
4343
3419
  :param any frame: the frame for which we want the jacobian
4344
- :return: <Element 'para' at 0xffd1adcccdb0>
3420
+ :return: <Element 'para' at 0xff1e452b4db0>
4345
3421
  """
4346
3422
  ...
4347
3423
 
@@ -4354,7 +3430,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4354
3430
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
4355
3431
 
4356
3432
  :param any frame: the frame for which we want the jacobian time variation
4357
- :return: <Element 'para' at 0xffd1adcce480>
3433
+ :return: <Element 'para' at 0xff1e452b6480>
4358
3434
  """
4359
3435
  ...
4360
3436
 
@@ -4599,13 +3675,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
4599
3675
  """
4600
3676
  ...
4601
3677
 
4602
- model: any
3678
+ model: any # pinocchio::Model
4603
3679
  """
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})
3680
+ Pinocchio model.
4609
3681
  """
4610
3682
 
4611
3683
  def neutral_state(
@@ -4660,7 +3732,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4660
3732
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
4661
3733
 
4662
3734
  :param bool stop_at_first: whether to stop at the first collision found
4663
- :return: <Element 'para' at 0xffd1adcdbba0>
3735
+ :return: <Element 'para' at 0xff1e452d3ba0>
4664
3736
  """
4665
3737
  ...
4666
3738
 
@@ -4814,13 +3886,9 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
4814
3886
  """
4815
3887
  ...
4816
3888
 
4817
- state: any
3889
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
4818
3890
  """
4819
-
4820
- None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4821
-
4822
- C++ signature :
4823
- placo::model::RobotWrapper::State {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3891
+ Robot's current state.
4824
3892
  """
4825
3893
 
4826
3894
  def static_gravity_compensation_torques(
@@ -4838,22 +3906,14 @@ None( (placo.HumanoidRobot)arg1) -> placo.RobotWrapper_State :
4838
3906
  ) -> dict:
4839
3907
  ...
4840
3908
 
4841
- support_is_both: any
3909
+ support_is_both: bool # bool
4842
3910
  """
4843
-
4844
- None( (placo.HumanoidRobot)arg1) -> bool :
4845
-
4846
- C++ signature :
4847
- bool {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3911
+ Are both feet supporting the robot.
4848
3912
  """
4849
3913
 
4850
- support_side: any
3914
+ support_side: any # placo::humanoid::HumanoidRobot::Side
4851
3915
  """
4852
-
4853
- None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4854
-
4855
- C++ signature :
4856
- placo::humanoid::HumanoidRobot::Side {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3916
+ The current side (left or right) associated with T_world_support.
4857
3917
  """
4858
3918
 
4859
3919
  def torques_from_acceleration_with_fixed_frame(
@@ -4914,13 +3974,9 @@ None( (placo.HumanoidRobot)arg1) -> placo.HumanoidRobot_Side :
4914
3974
  """
4915
3975
  ...
4916
3976
 
4917
- visual_model: any
3977
+ visual_model: any # pinocchio::GeometryModel
4918
3978
  """
4919
-
4920
- None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
4921
-
4922
- C++ signature :
4923
- pinocchio::GeometryModel {lvalue} None(placo::humanoid::HumanoidRobot {lvalue})
3979
+ Pinocchio visual model.
4924
3980
  """
4925
3981
 
4926
3982
  def zmp(
@@ -5027,31 +4083,19 @@ class Integrator:
5027
4083
  """
5028
4084
  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
4085
  """
5030
- A: any
4086
+ A: numpy.ndarray # Eigen::MatrixXd
5031
4087
  """
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})
4088
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5037
4089
  """
5038
4090
 
5039
- B: any
4091
+ B: numpy.ndarray # Eigen::MatrixXd
5040
4092
  """
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})
4093
+ The discrete system matrix such that $X_{k+1} = A X_k + B u_k$.
5046
4094
  """
5047
4095
 
5048
- M: any
4096
+ M: numpy.ndarray # Eigen::MatrixXd
5049
4097
  """
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})
4098
+ The continuous system matrix.
5055
4099
  """
5056
4100
 
5057
4101
  def __init__(
@@ -5085,13 +4129,9 @@ None( (placo.Integrator)arg1) -> object :
5085
4129
  """
5086
4130
  ...
5087
4131
 
5088
- final_transition_matrix: any
4132
+ final_transition_matrix: numpy.ndarray # Eigen::MatrixXd
5089
4133
  """
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})
4134
+ Caching the discrete matrix for the last step.
5095
4135
  """
5096
4136
 
5097
4137
  def get_trajectory(
@@ -5102,13 +4142,9 @@ None( (placo.Integrator)arg1) -> object :
5102
4142
  """
5103
4143
  ...
5104
4144
 
5105
- t_start: any
4145
+ t_start: float # double
5106
4146
  """
5107
-
5108
- None( (placo.Integrator)arg1) -> float :
5109
-
5110
- C++ signature :
5111
- double {lvalue} None(placo::problem::Integrator {lvalue})
4147
+ Time offset for the trajectory.
5112
4148
  """
5113
4149
 
5114
4150
  @staticmethod
@@ -5161,13 +4197,9 @@ class IntegratorTrajectory:
5161
4197
 
5162
4198
 
5163
4199
  class JointSpaceHalfSpacesConstraint:
5164
- A: any
4200
+ A: numpy.ndarray # Eigen::MatrixXd
5165
4201
  """
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})
4202
+ Matrix A in Aq <= b.
5171
4203
  """
5172
4204
 
5173
4205
  def __init__(
@@ -5180,13 +4212,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5180
4212
  """
5181
4213
  ...
5182
4214
 
5183
- b: any
4215
+ b: numpy.ndarray # Eigen::VectorXd
5184
4216
  """
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})
4217
+ Vector b in Aq <= b.
5190
4218
  """
5191
4219
 
5192
4220
  def configure(
@@ -5204,13 +4232,9 @@ None( (placo.JointSpaceHalfSpacesConstraint)arg1) -> object :
5204
4232
  """
5205
4233
  ...
5206
4234
 
5207
- name: any
4235
+ name: str # std::string
5208
4236
  """
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})
4237
+ Object name.
5214
4238
  """
5215
4239
 
5216
4240
  priority: str
@@ -5220,13 +4244,9 @@ None( (placo.Prioritized)arg1) -> str :
5220
4244
 
5221
4245
 
5222
4246
  class JointsTask:
5223
- A: any
4247
+ A: numpy.ndarray # Eigen::MatrixXd
5224
4248
  """
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})
4249
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5230
4250
  """
5231
4251
 
5232
4252
  def __init__(
@@ -5237,13 +4257,9 @@ None( (placo.Task)arg1) -> object :
5237
4257
  """
5238
4258
  ...
5239
4259
 
5240
- b: any
4260
+ b: numpy.ndarray # Eigen::MatrixXd
5241
4261
  """
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})
4262
+ Vector b in the task Ax = b, where x are the joint delta positions.
5247
4263
  """
5248
4264
 
5249
4265
  def configure(
@@ -5288,13 +4304,9 @@ None( (placo.Task)arg1) -> object :
5288
4304
  """
5289
4305
  ...
5290
4306
 
5291
- name: any
4307
+ name: str # std::string
5292
4308
  """
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})
4309
+ Object name.
5298
4310
  """
5299
4311
 
5300
4312
  priority: str
@@ -5350,13 +4362,9 @@ class KinematicsConstraint:
5350
4362
  """
5351
4363
  ...
5352
4364
 
5353
- name: any
4365
+ name: str # std::string
5354
4366
  """
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})
4367
+ Object name.
5360
4368
  """
5361
4369
 
5362
4370
  priority: str
@@ -5366,13 +4374,9 @@ None( (placo.Prioritized)arg1) -> str :
5366
4374
 
5367
4375
 
5368
4376
  class KinematicsSolver:
5369
- N: any
4377
+ N: int # int
5370
4378
  """
5371
-
5372
- None( (placo.KinematicsSolver)arg1) -> int :
5373
-
5374
- C++ signature :
5375
- int {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4379
+ Size of the problem (number of variables)
5376
4380
  """
5377
4381
 
5378
4382
  def __init__(
@@ -5686,13 +4690,9 @@ None( (placo.KinematicsSolver)arg1) -> int :
5686
4690
  """
5687
4691
  ...
5688
4692
 
5689
- dt: any
4693
+ dt: float # double
5690
4694
  """
5691
-
5692
- None( (placo.KinematicsSolver)arg1) -> float :
5693
-
5694
- C++ signature :
5695
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4695
+ solver dt (for speeds limiting)
5696
4696
  """
5697
4697
 
5698
4698
  def dump_status(
@@ -5741,13 +4741,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5741
4741
  """
5742
4742
  ...
5743
4743
 
5744
- problem: any
4744
+ problem: Problem # placo::problem::Problem
5745
4745
  """
5746
-
5747
- None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5748
-
5749
- C++ signature :
5750
- placo::problem::Problem {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4746
+ The underlying QP problem.
5751
4747
  """
5752
4748
 
5753
4749
  def remove_constraint(
@@ -5772,22 +4768,14 @@ None( (placo.KinematicsSolver)arg1) -> placo.Problem :
5772
4768
  """
5773
4769
  ...
5774
4770
 
5775
- robot: any
4771
+ robot: RobotWrapper # placo::model::RobotWrapper
5776
4772
  """
5777
-
5778
- None( (placo.KinematicsSolver)arg1) -> placo.RobotWrapper :
5779
-
5780
- C++ signature :
5781
- placo::model::RobotWrapper {lvalue} None(placo::kinematics::KinematicsSolver)
4773
+ The robot controlled by this solver.
5782
4774
  """
5783
4775
 
5784
- scale: any
4776
+ scale: float # double
5785
4777
  """
5786
-
5787
- None( (placo.KinematicsSolver)arg1) -> float :
5788
-
5789
- C++ signature :
5790
- double {lvalue} None(placo::kinematics::KinematicsSolver {lvalue})
4778
+ scale obtained when using tasks scaling
5791
4779
  """
5792
4780
 
5793
4781
  def solve(
@@ -5822,13 +4810,9 @@ None( (placo.KinematicsSolver)arg1) -> float :
5822
4810
 
5823
4811
 
5824
4812
  class KineticEnergyRegularizationTask:
5825
- A: any
4813
+ A: numpy.ndarray # Eigen::MatrixXd
5826
4814
  """
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})
4815
+ Matrix A in the task Ax = b, where x are the joint delta positions.
5832
4816
  """
5833
4817
 
5834
4818
  def __init__(
@@ -5836,13 +4820,9 @@ None( (placo.Task)arg1) -> object :
5836
4820
  ) -> None:
5837
4821
  ...
5838
4822
 
5839
- b: any
4823
+ b: numpy.ndarray # Eigen::MatrixXd
5840
4824
  """
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})
4825
+ Vector b in the task Ax = b, where x are the joint delta positions.
5846
4826
  """
5847
4827
 
5848
4828
  def configure(
@@ -5876,13 +4856,9 @@ None( (placo.Task)arg1) -> object :
5876
4856
  """
5877
4857
  ...
5878
4858
 
5879
- name: any
4859
+ name: str # std::string
5880
4860
  """
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})
4861
+ Object name.
5886
4862
  """
5887
4863
 
5888
4864
  priority: str
@@ -5942,14 +4918,7 @@ class LIPM:
5942
4918
  ) -> Expression:
5943
4919
  ...
5944
4920
 
5945
- dt: any
5946
- """
5947
-
5948
- None( (placo.LIPM)arg1) -> float :
5949
-
5950
- C++ signature :
5951
- double {lvalue} None(placo::humanoid::LIPM {lvalue})
5952
- """
4921
+ dt: float # double
5953
4922
 
5954
4923
  def dzmp(
5955
4924
  self,
@@ -5979,31 +4948,10 @@ None( (placo.LIPM)arg1) -> float :
5979
4948
  ...
5980
4949
 
5981
4950
  t_end: any
5982
- """
5983
-
5984
- None( (placo.LIPM)arg1) -> float :
5985
4951
 
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 :
4952
+ t_start: float # double
6003
4953
 
6004
- C++ signature :
6005
- int {lvalue} None(placo::humanoid::LIPM {lvalue})
6006
- """
4954
+ timesteps: int # int
6007
4955
 
6008
4956
  def vel(
6009
4957
  self,
@@ -6011,41 +4959,13 @@ None( (placo.LIPM)arg1) -> int :
6011
4959
  ) -> Expression:
6012
4960
  ...
6013
4961
 
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 :
4962
+ x: Integrator # placo::problem::Integrator
6036
4963
 
6037
- C++ signature :
6038
- placo::problem::Integrator {lvalue} None(placo::humanoid::LIPM {lvalue})
6039
- """
4964
+ x_var: Variable # placo::problem::Variable
6040
4965
 
6041
- y_var: any
6042
- """
6043
-
6044
- None( (placo.LIPM)arg1) -> object :
4966
+ y: Integrator # placo::problem::Integrator
6045
4967
 
6046
- C++ signature :
6047
- placo::problem::Variable* {lvalue} None(placo::humanoid::LIPM {lvalue})
6048
- """
4968
+ y_var: Variable # placo::problem::Variable
6049
4969
 
6050
4970
  def zmp(
6051
4971
  self,
@@ -6108,13 +5028,9 @@ class LIPMTrajectory:
6108
5028
 
6109
5029
 
6110
5030
  class LineContact:
6111
- R_world_surface: any
5031
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6112
5032
  """
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})
5033
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6118
5034
  """
6119
5035
 
6120
5036
  def __init__(
@@ -6127,31 +5043,19 @@ None( (placo.PointContact)arg1) -> numpy.ndarray :
6127
5043
  """
6128
5044
  ...
6129
5045
 
6130
- active: any
5046
+ active: bool # bool
6131
5047
  """
6132
-
6133
- None( (placo.Contact)arg1) -> bool :
6134
-
6135
- C++ signature :
6136
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5048
+ 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
5049
  """
6138
5050
 
6139
- length: any
5051
+ length: float # double
6140
5052
  """
6141
-
6142
- None( (placo.LineContact)arg1) -> float :
6143
-
6144
- C++ signature :
6145
- double {lvalue} None(placo::dynamics::LineContact {lvalue})
5053
+ Rectangular contact length along local x-axis.
6146
5054
  """
6147
5055
 
6148
- mu: any
5056
+ mu: float # double
6149
5057
  """
6150
-
6151
- None( (placo.Contact)arg1) -> float :
6152
-
6153
- C++ signature :
6154
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5058
+ Coefficient of friction (if relevant)
6155
5059
  """
6156
5060
 
6157
5061
  def orientation_task(
@@ -6164,49 +5068,29 @@ None( (placo.Contact)arg1) -> float :
6164
5068
  ) -> DynamicsPositionTask:
6165
5069
  ...
6166
5070
 
6167
- unilateral: any
5071
+ unilateral: bool # bool
6168
5072
  """
6169
-
6170
- None( (placo.LineContact)arg1) -> bool :
6171
-
6172
- C++ signature :
6173
- bool {lvalue} None(placo::dynamics::LineContact {lvalue})
5073
+ true for unilateral contact with the ground
6174
5074
  """
6175
5075
 
6176
- weight_forces: any
5076
+ weight_forces: float # double
6177
5077
  """
6178
-
6179
- None( (placo.Contact)arg1) -> float :
6180
-
6181
- C++ signature :
6182
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5078
+ Weight of forces for the optimization (if relevant)
6183
5079
  """
6184
5080
 
6185
- weight_moments: any
5081
+ weight_moments: float # double
6186
5082
  """
6187
-
6188
- None( (placo.Contact)arg1) -> float :
6189
-
6190
- C++ signature :
6191
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5083
+ Weight of moments for optimization (if relevant)
6192
5084
  """
6193
5085
 
6194
- weight_tangentials: any
5086
+ weight_tangentials: float # double
6195
5087
  """
6196
-
6197
- None( (placo.Contact)arg1) -> float :
6198
-
6199
- C++ signature :
6200
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5088
+ Extra cost for tangential forces.
6201
5089
  """
6202
5090
 
6203
- wrench: any
5091
+ wrench: numpy.ndarray # Eigen::VectorXd
6204
5092
  """
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})
5093
+ Wrench populated after the DynamicsSolver::solve call.
6210
5094
  """
6211
5095
 
6212
5096
  def zmp(
@@ -6219,13 +5103,9 @@ None( (placo.Contact)arg1) -> object :
6219
5103
 
6220
5104
 
6221
5105
  class ManipulabilityTask:
6222
- A: any
5106
+ A: numpy.ndarray # Eigen::MatrixXd
6223
5107
  """
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})
5108
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6229
5109
  """
6230
5110
 
6231
5111
  def __init__(
@@ -6236,13 +5116,9 @@ None( (placo.Task)arg1) -> object :
6236
5116
  ) -> any:
6237
5117
  ...
6238
5118
 
6239
- b: any
5119
+ b: numpy.ndarray # Eigen::MatrixXd
6240
5120
  """
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})
5121
+ Vector b in the task Ax = b, where x are the joint delta positions.
6246
5122
  """
6247
5123
 
6248
5124
  def configure(
@@ -6277,39 +5153,20 @@ None( (placo.Task)arg1) -> object :
6277
5153
  ...
6278
5154
 
6279
5155
  lambda_: any
6280
- """
6281
-
6282
- None( (placo.ManipulabilityTask)arg1) -> float :
6283
-
6284
- C++ signature :
6285
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
6286
- """
6287
5156
 
6288
- manipulability: any
5157
+ manipulability: float # double
6289
5158
  """
6290
-
6291
- None( (placo.ManipulabilityTask)arg1) -> float :
6292
-
6293
- C++ signature :
6294
- double {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5159
+ The last computed manipulability value.
6295
5160
  """
6296
5161
 
6297
- minimize: any
5162
+ minimize: bool # bool
6298
5163
  """
6299
-
6300
- None( (placo.ManipulabilityTask)arg1) -> bool :
6301
-
6302
- C++ signature :
6303
- bool {lvalue} None(placo::kinematics::ManipulabilityTask {lvalue})
5164
+ Should the manipulability be minimized (can be useful to find singularities)
6304
5165
  """
6305
5166
 
6306
- name: any
5167
+ name: str # std::string
6307
5168
  """
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})
5169
+ Object name.
6313
5170
  """
6314
5171
 
6315
5172
  priority: str
@@ -6327,22 +5184,14 @@ None( (placo.Prioritized)arg1) -> str :
6327
5184
 
6328
5185
 
6329
5186
  class OrientationTask:
6330
- A: any
5187
+ A: numpy.ndarray # Eigen::MatrixXd
6331
5188
  """
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})
5189
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6337
5190
  """
6338
5191
 
6339
- R_world_frame: any
5192
+ R_world_frame: numpy.ndarray # Eigen::Matrix3d
6340
5193
  """
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})
5194
+ Target frame orientation in the world.
6346
5195
  """
6347
5196
 
6348
5197
  def __init__(
@@ -6355,13 +5204,9 @@ None( (placo.OrientationTask)arg1) -> object :
6355
5204
  """
6356
5205
  ...
6357
5206
 
6358
- b: any
5207
+ b: numpy.ndarray # Eigen::MatrixXd
6359
5208
  """
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})
5209
+ Vector b in the task Ax = b, where x are the joint delta positions.
6365
5210
  """
6366
5211
 
6367
5212
  def configure(
@@ -6395,31 +5240,19 @@ None( (placo.Task)arg1) -> object :
6395
5240
  """
6396
5241
  ...
6397
5242
 
6398
- frame_index: any
5243
+ frame_index: any # pinocchio::FrameIndex
6399
5244
  """
6400
-
6401
- None( (placo.OrientationTask)arg1) -> int :
6402
-
6403
- C++ signature :
6404
- unsigned long {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5245
+ Frame.
6405
5246
  """
6406
5247
 
6407
- mask: any
5248
+ mask: AxisesMask # placo::tools::AxisesMask
6408
5249
  """
6409
-
6410
- None( (placo.OrientationTask)arg1) -> placo.AxisesMask :
6411
-
6412
- C++ signature :
6413
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::OrientationTask {lvalue})
5250
+ Mask.
6414
5251
  """
6415
5252
 
6416
- name: any
5253
+ name: str # std::string
6417
5254
  """
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})
5255
+ Object name.
6423
5256
  """
6424
5257
 
6425
5258
  priority: str
@@ -6437,13 +5270,9 @@ None( (placo.Prioritized)arg1) -> str :
6437
5270
 
6438
5271
 
6439
5272
  class PointContact:
6440
- R_world_surface: any
5273
+ R_world_surface: numpy.ndarray # Eigen::Matrix3d
6441
5274
  """
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})
5275
+ rotation matrix expressing the surface frame in the world frame (for unilateral contact)
6447
5276
  """
6448
5277
 
6449
5278
  def __init__(
@@ -6456,22 +5285,14 @@ None( (placo.PointContact)arg1) -> object :
6456
5285
  """
6457
5286
  ...
6458
5287
 
6459
- active: any
5288
+ active: bool # bool
6460
5289
  """
6461
-
6462
- None( (placo.Contact)arg1) -> bool :
6463
-
6464
- C++ signature :
6465
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5290
+ 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
5291
  """
6467
5292
 
6468
- mu: any
5293
+ mu: float # double
6469
5294
  """
6470
-
6471
- None( (placo.Contact)arg1) -> float :
6472
-
6473
- C++ signature :
6474
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5295
+ Coefficient of friction (if relevant)
6475
5296
  """
6476
5297
 
6477
5298
  def position_task(
@@ -6479,49 +5300,29 @@ None( (placo.Contact)arg1) -> float :
6479
5300
  ) -> DynamicsPositionTask:
6480
5301
  ...
6481
5302
 
6482
- unilateral: any
5303
+ unilateral: bool # bool
6483
5304
  """
6484
-
6485
- None( (placo.PointContact)arg1) -> bool :
6486
-
6487
- C++ signature :
6488
- bool {lvalue} None(placo::dynamics::PointContact {lvalue})
5305
+ true for unilateral contact with the ground
6489
5306
  """
6490
5307
 
6491
- weight_forces: any
5308
+ weight_forces: float # double
6492
5309
  """
6493
-
6494
- None( (placo.Contact)arg1) -> float :
6495
-
6496
- C++ signature :
6497
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5310
+ Weight of forces for the optimization (if relevant)
6498
5311
  """
6499
5312
 
6500
- weight_moments: any
5313
+ weight_moments: float # double
6501
5314
  """
6502
-
6503
- None( (placo.Contact)arg1) -> float :
6504
-
6505
- C++ signature :
6506
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5315
+ Weight of moments for optimization (if relevant)
6507
5316
  """
6508
5317
 
6509
- weight_tangentials: any
5318
+ weight_tangentials: float # double
6510
5319
  """
6511
-
6512
- None( (placo.Contact)arg1) -> float :
6513
-
6514
- C++ signature :
6515
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5320
+ Extra cost for tangential forces.
6516
5321
  """
6517
5322
 
6518
- wrench: any
5323
+ wrench: numpy.ndarray # Eigen::VectorXd
6519
5324
  """
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})
5325
+ Wrench populated after the DynamicsSolver::solve call.
6525
5326
  """
6526
5327
 
6527
5328
 
@@ -6561,13 +5362,9 @@ class Polynom:
6561
5362
  ) -> any:
6562
5363
  ...
6563
5364
 
6564
- coefficients: any
5365
+ coefficients: numpy.ndarray # Eigen::VectorXd
6565
5366
  """
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})
5367
+ coefficients, from highest to lowest
6571
5368
  """
6572
5369
 
6573
5370
  @staticmethod
@@ -6599,13 +5396,9 @@ None( (placo.Polynom)arg1) -> object :
6599
5396
 
6600
5397
 
6601
5398
  class PositionTask:
6602
- A: any
5399
+ A: numpy.ndarray # Eigen::MatrixXd
6603
5400
  """
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})
5401
+ Matrix A in the task Ax = b, where x are the joint delta positions.
6609
5402
  """
6610
5403
 
6611
5404
  def __init__(
@@ -6618,13 +5411,9 @@ None( (placo.Task)arg1) -> object :
6618
5411
  """
6619
5412
  ...
6620
5413
 
6621
- b: any
5414
+ b: numpy.ndarray # Eigen::MatrixXd
6622
5415
  """
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})
5416
+ Vector b in the task Ax = b, where x are the joint delta positions.
6628
5417
  """
6629
5418
 
6630
5419
  def configure(
@@ -6658,31 +5447,19 @@ None( (placo.Task)arg1) -> object :
6658
5447
  """
6659
5448
  ...
6660
5449
 
6661
- frame_index: any
5450
+ frame_index: any # pinocchio::FrameIndex
6662
5451
  """
6663
-
6664
- None( (placo.PositionTask)arg1) -> int :
6665
-
6666
- C++ signature :
6667
- unsigned long {lvalue} None(placo::kinematics::PositionTask {lvalue})
5452
+ Frame.
6668
5453
  """
6669
5454
 
6670
- mask: any
5455
+ mask: AxisesMask # placo::tools::AxisesMask
6671
5456
  """
6672
-
6673
- None( (placo.PositionTask)arg1) -> placo.AxisesMask :
6674
-
6675
- C++ signature :
6676
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::PositionTask {lvalue})
5457
+ Mask.
6677
5458
  """
6678
5459
 
6679
- name: any
5460
+ name: str # std::string
6680
5461
  """
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})
5462
+ Object name.
6686
5463
  """
6687
5464
 
6688
5465
  priority: str
@@ -6690,13 +5467,9 @@ None( (placo.Prioritized)arg1) -> str :
6690
5467
  Priority [str]
6691
5468
  """
6692
5469
 
6693
- target_world: any
5470
+ target_world: numpy.ndarray # Eigen::Vector3d
6694
5471
  """
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)
5472
+ Target position in the world.
6700
5473
  """
6701
5474
 
6702
5475
  def update(
@@ -6729,13 +5502,9 @@ class Prioritized:
6729
5502
  """
6730
5503
  ...
6731
5504
 
6732
- name: any
5505
+ name: str # std::string
6733
5506
  """
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})
5507
+ Object name.
6739
5508
  """
6740
5509
 
6741
5510
  priority: str
@@ -6796,13 +5565,9 @@ class Problem:
6796
5565
  """
6797
5566
  ...
6798
5567
 
6799
- determined_variables: any
5568
+ determined_variables: int # int
6800
5569
  """
6801
-
6802
- None( (placo.Problem)arg1) -> int :
6803
-
6804
- C++ signature :
6805
- int {lvalue} None(placo::problem::Problem {lvalue})
5570
+ Number of determined variables.
6806
5571
  """
6807
5572
 
6808
5573
  def dump_status(
@@ -6810,76 +5575,44 @@ None( (placo.Problem)arg1) -> int :
6810
5575
  ) -> None:
6811
5576
  ...
6812
5577
 
6813
- free_variables: any
5578
+ free_variables: int # int
6814
5579
  """
6815
-
6816
- None( (placo.Problem)arg1) -> int :
6817
-
6818
- C++ signature :
6819
- int {lvalue} None(placo::problem::Problem {lvalue})
5580
+ Number of free variables to solve.
6820
5581
  """
6821
5582
 
6822
- n_equalities: any
5583
+ n_equalities: int # int
6823
5584
  """
6824
-
6825
- None( (placo.Problem)arg1) -> int :
6826
-
6827
- C++ signature :
6828
- int {lvalue} None(placo::problem::Problem {lvalue})
5585
+ Number of equalities.
6829
5586
  """
6830
5587
 
6831
- n_inequalities: any
5588
+ n_inequalities: int # int
6832
5589
  """
6833
-
6834
- None( (placo.Problem)arg1) -> int :
6835
-
6836
- C++ signature :
6837
- int {lvalue} None(placo::problem::Problem {lvalue})
5590
+ Number of inequality constraints.
6838
5591
  """
6839
5592
 
6840
- n_variables: any
5593
+ n_variables: int # int
6841
5594
  """
6842
-
6843
- None( (placo.Problem)arg1) -> int :
6844
-
6845
- C++ signature :
6846
- int {lvalue} None(placo::problem::Problem {lvalue})
5595
+ Number of problem variables that need to be solved.
6847
5596
  """
6848
5597
 
6849
- regularization: any
5598
+ regularization: float # double
6850
5599
  """
6851
-
6852
- None( (placo.Problem)arg1) -> float :
6853
-
6854
- C++ signature :
6855
- double {lvalue} None(placo::problem::Problem {lvalue})
5600
+ Default internal regularization.
6856
5601
  """
6857
5602
 
6858
- rewrite_equalities: any
5603
+ rewrite_equalities: bool # bool
6859
5604
  """
6860
-
6861
- None( (placo.Problem)arg1) -> bool :
6862
-
6863
- C++ signature :
6864
- bool {lvalue} None(placo::problem::Problem {lvalue})
5605
+ 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
5606
  """
6866
5607
 
6867
- slack_variables: any
5608
+ slack_variables: int # int
6868
5609
  """
6869
-
6870
- None( (placo.Problem)arg1) -> int :
6871
-
6872
- C++ signature :
6873
- int {lvalue} None(placo::problem::Problem {lvalue})
5610
+ Number of slack variables in the solver.
6874
5611
  """
6875
5612
 
6876
- slacks: any
5613
+ slacks: numpy.ndarray # Eigen::VectorXd
6877
5614
  """
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)
5615
+ Computed slack variables.
6883
5616
  """
6884
5617
 
6885
5618
  def solve(
@@ -6890,22 +5623,14 @@ None( (placo.Problem)arg1) -> numpy.ndarray :
6890
5623
  """
6891
5624
  ...
6892
5625
 
6893
- use_sparsity: any
5626
+ use_sparsity: bool # bool
6894
5627
  """
6895
-
6896
- None( (placo.Problem)arg1) -> bool :
6897
-
6898
- C++ signature :
6899
- bool {lvalue} None(placo::problem::Problem {lvalue})
5628
+ 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
5629
  """
6901
5630
 
6902
- x: any
5631
+ x: numpy.ndarray # Eigen::VectorXd
6903
5632
  """
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})
5633
+ Computed result.
6909
5634
  """
6910
5635
 
6911
5636
 
@@ -6930,40 +5655,24 @@ class ProblemConstraint:
6930
5655
  """
6931
5656
  ...
6932
5657
 
6933
- expression: any
5658
+ expression: Expression # placo::problem::Expression
6934
5659
  """
6935
-
6936
- None( (placo.ProblemConstraint)arg1) -> object :
6937
-
6938
- C++ signature :
6939
- placo::problem::Expression {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5660
+ The constraint expression (Ax + b)
6940
5661
  """
6941
5662
 
6942
- is_active: any
5663
+ is_active: bool # bool
6943
5664
  """
6944
-
6945
- None( (placo.ProblemConstraint)arg1) -> bool :
6946
-
6947
- C++ signature :
6948
- bool {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5665
+ This flag will be set by the solver if the constraint is active in the optimal solution.
6949
5666
  """
6950
5667
 
6951
- priority: any
5668
+ priority: any # placo::problem::ProblemConstraint::Priority
6952
5669
  """
6953
-
6954
- None( (placo.ProblemConstraint)arg1) -> str :
6955
-
6956
- C++ signature :
6957
- char const* None(placo::problem::ProblemConstraint)
5670
+ Constraint priority.
6958
5671
  """
6959
5672
 
6960
- weight: any
5673
+ weight: float # double
6961
5674
  """
6962
-
6963
- None( (placo.ProblemConstraint)arg1) -> float :
6964
-
6965
- C++ signature :
6966
- double {lvalue} None(placo::problem::ProblemConstraint {lvalue})
5675
+ Constraint weight (for soft constraints)
6967
5676
  """
6968
5677
 
6969
5678
 
@@ -7005,58 +5714,34 @@ class PuppetContact:
7005
5714
  """
7006
5715
  ...
7007
5716
 
7008
- active: any
5717
+ active: bool # bool
7009
5718
  """
7010
-
7011
- None( (placo.Contact)arg1) -> bool :
7012
-
7013
- C++ signature :
7014
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
5719
+ 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
5720
  """
7016
5721
 
7017
- mu: any
5722
+ mu: float # double
7018
5723
  """
7019
-
7020
- None( (placo.Contact)arg1) -> float :
7021
-
7022
- C++ signature :
7023
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5724
+ Coefficient of friction (if relevant)
7024
5725
  """
7025
5726
 
7026
- weight_forces: any
5727
+ weight_forces: float # double
7027
5728
  """
7028
-
7029
- None( (placo.Contact)arg1) -> float :
7030
-
7031
- C++ signature :
7032
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5729
+ Weight of forces for the optimization (if relevant)
7033
5730
  """
7034
5731
 
7035
- weight_moments: any
5732
+ weight_moments: float # double
7036
5733
  """
7037
-
7038
- None( (placo.Contact)arg1) -> float :
7039
-
7040
- C++ signature :
7041
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5734
+ Weight of moments for optimization (if relevant)
7042
5735
  """
7043
5736
 
7044
- weight_tangentials: any
5737
+ weight_tangentials: float # double
7045
5738
  """
7046
-
7047
- None( (placo.Contact)arg1) -> float :
7048
-
7049
- C++ signature :
7050
- double {lvalue} None(placo::dynamics::Contact {lvalue})
5739
+ Extra cost for tangential forces.
7051
5740
  """
7052
5741
 
7053
- wrench: any
5742
+ wrench: numpy.ndarray # Eigen::VectorXd
7054
5743
  """
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})
5744
+ Wrench populated after the DynamicsSolver::solve call.
7060
5745
  """
7061
5746
 
7062
5747
 
@@ -7077,13 +5762,9 @@ class QPError:
7077
5762
 
7078
5763
 
7079
5764
  class RegularizationTask:
7080
- A: any
5765
+ A: numpy.ndarray # Eigen::MatrixXd
7081
5766
  """
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})
5767
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7087
5768
  """
7088
5769
 
7089
5770
  def __init__(
@@ -7091,13 +5772,9 @@ None( (placo.Task)arg1) -> object :
7091
5772
  ) -> None:
7092
5773
  ...
7093
5774
 
7094
- b: any
5775
+ b: numpy.ndarray # Eigen::MatrixXd
7095
5776
  """
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})
5777
+ Vector b in the task Ax = b, where x are the joint delta positions.
7101
5778
  """
7102
5779
 
7103
5780
  def configure(
@@ -7131,13 +5808,9 @@ None( (placo.Task)arg1) -> object :
7131
5808
  """
7132
5809
  ...
7133
5810
 
7134
- name: any
5811
+ name: str # std::string
7135
5812
  """
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})
5813
+ Object name.
7141
5814
  """
7142
5815
 
7143
5816
  priority: str
@@ -7156,13 +5829,6 @@ None( (placo.Prioritized)arg1) -> str :
7156
5829
 
7157
5830
  class RelativeFrameTask:
7158
5831
  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
5832
 
7167
5833
  def __init__(
7168
5834
  self,
@@ -7203,22 +5869,14 @@ None( (placo.RelativeFrameTask)arg1) -> object :
7203
5869
 
7204
5870
 
7205
5871
  class RelativeOrientationTask:
7206
- A: any
5872
+ A: numpy.ndarray # Eigen::MatrixXd
7207
5873
  """
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})
5874
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7213
5875
  """
7214
5876
 
7215
- R_a_b: any
5877
+ R_a_b: numpy.ndarray # Eigen::Matrix3d
7216
5878
  """
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})
5879
+ Target relative orientation of b in a.
7222
5880
  """
7223
5881
 
7224
5882
  def __init__(
@@ -7232,13 +5890,9 @@ None( (placo.RelativeOrientationTask)arg1) -> object :
7232
5890
  """
7233
5891
  ...
7234
5892
 
7235
- b: any
5893
+ b: numpy.ndarray # Eigen::MatrixXd
7236
5894
  """
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})
5895
+ Vector b in the task Ax = b, where x are the joint delta positions.
7242
5896
  """
7243
5897
 
7244
5898
  def configure(
@@ -7272,40 +5926,24 @@ None( (placo.Task)arg1) -> object :
7272
5926
  """
7273
5927
  ...
7274
5928
 
7275
- frame_a: any
5929
+ frame_a: any # pinocchio::FrameIndex
7276
5930
  """
7277
-
7278
- None( (placo.RelativeOrientationTask)arg1) -> int :
7279
-
7280
- C++ signature :
7281
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5931
+ Frame A.
7282
5932
  """
7283
5933
 
7284
- frame_b: any
5934
+ frame_b: any # pinocchio::FrameIndex
7285
5935
  """
7286
-
7287
- None( (placo.RelativeOrientationTask)arg1) -> int :
7288
-
7289
- C++ signature :
7290
- unsigned long {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5936
+ Frame B.
7291
5937
  """
7292
5938
 
7293
- mask: any
5939
+ mask: AxisesMask # placo::tools::AxisesMask
7294
5940
  """
7295
-
7296
- None( (placo.RelativeOrientationTask)arg1) -> placo.AxisesMask :
7297
-
7298
- C++ signature :
7299
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativeOrientationTask {lvalue})
5941
+ Mask.
7300
5942
  """
7301
5943
 
7302
- name: any
5944
+ name: str # std::string
7303
5945
  """
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})
5946
+ Object name.
7309
5947
  """
7310
5948
 
7311
5949
  priority: str
@@ -7323,13 +5961,9 @@ None( (placo.Prioritized)arg1) -> str :
7323
5961
 
7324
5962
 
7325
5963
  class RelativePositionTask:
7326
- A: any
5964
+ A: numpy.ndarray # Eigen::MatrixXd
7327
5965
  """
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})
5966
+ Matrix A in the task Ax = b, where x are the joint delta positions.
7333
5967
  """
7334
5968
 
7335
5969
  def __init__(
@@ -7343,13 +5977,9 @@ None( (placo.Task)arg1) -> object :
7343
5977
  """
7344
5978
  ...
7345
5979
 
7346
- b: any
5980
+ b: numpy.ndarray # Eigen::MatrixXd
7347
5981
  """
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})
5982
+ Vector b in the task Ax = b, where x are the joint delta positions.
7353
5983
  """
7354
5984
 
7355
5985
  def configure(
@@ -7383,40 +6013,24 @@ None( (placo.Task)arg1) -> object :
7383
6013
  """
7384
6014
  ...
7385
6015
 
7386
- frame_a: any
6016
+ frame_a: any # pinocchio::FrameIndex
7387
6017
  """
7388
-
7389
- None( (placo.RelativePositionTask)arg1) -> int :
7390
-
7391
- C++ signature :
7392
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6018
+ Frame A.
7393
6019
  """
7394
6020
 
7395
- frame_b: any
6021
+ frame_b: any # pinocchio::FrameIndex
7396
6022
  """
7397
-
7398
- None( (placo.RelativePositionTask)arg1) -> int :
7399
-
7400
- C++ signature :
7401
- unsigned long {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6023
+ Frame B.
7402
6024
  """
7403
6025
 
7404
- mask: any
6026
+ mask: AxisesMask # placo::tools::AxisesMask
7405
6027
  """
7406
-
7407
- None( (placo.RelativePositionTask)arg1) -> placo.AxisesMask :
7408
-
7409
- C++ signature :
7410
- placo::tools::AxisesMask {lvalue} None(placo::kinematics::RelativePositionTask {lvalue})
6028
+ Mask.
7411
6029
  """
7412
6030
 
7413
- name: any
6031
+ name: str # std::string
7414
6032
  """
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})
6033
+ Object name.
7420
6034
  """
7421
6035
 
7422
6036
  priority: str
@@ -7424,13 +6038,9 @@ None( (placo.Prioritized)arg1) -> str :
7424
6038
  Priority [str]
7425
6039
  """
7426
6040
 
7427
- target: any
6041
+ target: numpy.ndarray # Eigen::Vector3d
7428
6042
  """
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})
6043
+ Target position of B in A.
7434
6044
  """
7435
6045
 
7436
6046
  def update(
@@ -7475,13 +6085,9 @@ class RobotWrapper:
7475
6085
  """
7476
6086
  ...
7477
6087
 
7478
- collision_model: any
6088
+ collision_model: any # pinocchio::GeometryModel
7479
6089
  """
7480
-
7481
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
7482
-
7483
- C++ signature :
7484
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6090
+ Pinocchio collision model.
7485
6091
  """
7486
6092
 
7487
6093
  def com_jacobian(
@@ -7522,7 +6128,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7522
6128
  """
7523
6129
  Computes all minimum distances between current collision pairs.
7524
6130
 
7525
- :return: <Element 'para' at 0xffd1adcce610>
6131
+ :return: <Element 'para' at 0xff1e452b6610>
7526
6132
  """
7527
6133
  ...
7528
6134
 
@@ -7535,7 +6141,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7535
6141
  Frame jacobian, default reference is LOCAL_WORLD_ALIGNED.
7536
6142
 
7537
6143
  :param any frame: the frame for which we want the jacobian
7538
- :return: <Element 'para' at 0xffd1add78db0>
6144
+ :return: <Element 'para' at 0xff1e453a4db0>
7539
6145
  """
7540
6146
  ...
7541
6147
 
@@ -7548,7 +6154,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7548
6154
  Jacobian time variation $\dot J$, default reference is LOCAL_WORLD_ALIGNED.
7549
6155
 
7550
6156
  :param any frame: the frame for which we want the jacobian time variation
7551
- :return: <Element 'para' at 0xffd1add7a200>
6157
+ :return: <Element 'para' at 0xff1e453a6200>
7552
6158
  """
7553
6159
  ...
7554
6160
 
@@ -7732,13 +6338,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
7732
6338
  """
7733
6339
  ...
7734
6340
 
7735
- model: any
6341
+ model: any # pinocchio::Model
7736
6342
  """
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})
6343
+ Pinocchio model.
7742
6344
  """
7743
6345
 
7744
6346
  def neutral_state(
@@ -7786,7 +6388,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7786
6388
  Finds the self collision in current state, if stop_at_first is true, it will stop at the first collision found.
7787
6389
 
7788
6390
  :param bool stop_at_first: whether to stop at the first collision found
7789
- :return: <Element 'para' at 0xffd1adccf790>
6391
+ :return: <Element 'para' at 0xff1e452b7790>
7790
6392
  """
7791
6393
  ...
7792
6394
 
@@ -7934,13 +6536,9 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
7934
6536
  """
7935
6537
  ...
7936
6538
 
7937
- state: any
6539
+ state: RobotWrapper_State # placo::model::RobotWrapper::State
7938
6540
  """
7939
-
7940
- None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7941
-
7942
- C++ signature :
7943
- placo::model::RobotWrapper::State {lvalue} None(placo::model::RobotWrapper {lvalue})
6541
+ Robot's current state.
7944
6542
  """
7945
6543
 
7946
6544
  def static_gravity_compensation_torques(
@@ -7996,13 +6594,9 @@ None( (placo.RobotWrapper)arg1) -> placo.RobotWrapper_State :
7996
6594
  """
7997
6595
  ...
7998
6596
 
7999
- visual_model: any
6597
+ visual_model: any # pinocchio::GeometryModel
8000
6598
  """
8001
-
8002
- None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryModel :
8003
-
8004
- C++ signature :
8005
- pinocchio::GeometryModel {lvalue} None(placo::model::RobotWrapper {lvalue})
6599
+ Pinocchio visual model.
8006
6600
  """
8007
6601
 
8008
6602
 
@@ -8012,31 +6606,19 @@ class RobotWrapper_State:
8012
6606
  ) -> None:
8013
6607
  ...
8014
6608
 
8015
- q: any
6609
+ q: numpy.ndarray # Eigen::VectorXd
8016
6610
  """
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})
6611
+ joints configuration $q$
8022
6612
  """
8023
6613
 
8024
- qd: any
6614
+ qd: numpy.ndarray # Eigen::VectorXd
8025
6615
  """
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})
6616
+ joints velocity $\dot q$
8031
6617
  """
8032
6618
 
8033
- qdd: any
6619
+ qdd: numpy.ndarray # Eigen::VectorXd
8034
6620
  """
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})
6621
+ joints acceleration $\ddot q$
8040
6622
  """
8041
6623
 
8042
6624
 
@@ -8046,14 +6628,7 @@ class Segment:
8046
6628
  ) -> any:
8047
6629
  ...
8048
6630
 
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
- """
6631
+ end: numpy.ndarray # Eigen::Vector2d
8057
6632
 
8058
6633
  def half_line_pass_through(
8059
6634
  self,
@@ -8156,14 +6731,7 @@ None( (placo.Segment)arg1) -> object :
8156
6731
  ) -> float:
8157
6732
  ...
8158
6733
 
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
- """
6734
+ start: numpy.ndarray # Eigen::Vector2d
8167
6735
 
8168
6736
 
8169
6737
  class Sparsity:
@@ -8197,13 +6765,9 @@ class Sparsity:
8197
6765
  """
8198
6766
  ...
8199
6767
 
8200
- intervals: any
6768
+ intervals: list[SparsityInterval] # std::vector<placo::problem::Sparsity::Interval>
8201
6769
  """
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)
6770
+ Intervals of non-sparse columns.
8207
6771
  """
8208
6772
 
8209
6773
  def print_intervals(
@@ -8221,22 +6785,14 @@ class SparsityInterval:
8221
6785
  ) -> None:
8222
6786
  ...
8223
6787
 
8224
- end: any
6788
+ end: int # int
8225
6789
  """
8226
-
8227
- None( (placo.SparsityInterval)arg1) -> int :
8228
-
8229
- C++ signature :
8230
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6790
+ End of interval.
8231
6791
  """
8232
6792
 
8233
- start: any
6793
+ start: int # int
8234
6794
  """
8235
-
8236
- None( (placo.SparsityInterval)arg1) -> int :
8237
-
8238
- C++ signature :
8239
- int {lvalue} None(placo::problem::Sparsity::Interval {lvalue})
6795
+ Start of interval.
8240
6796
  """
8241
6797
 
8242
6798
 
@@ -8252,23 +6808,9 @@ class Support:
8252
6808
  ) -> None:
8253
6809
  ...
8254
6810
 
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 :
6811
+ elapsed_ratio: float # double
8268
6812
 
8269
- C++ signature :
8270
- bool {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8271
- """
6813
+ end: bool # bool
8272
6814
 
8273
6815
  def footstep_frame(
8274
6816
  self,
@@ -8281,14 +6823,7 @@ None( (placo.Support)arg1) -> bool :
8281
6823
  """
8282
6824
  ...
8283
6825
 
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
- """
6826
+ footsteps: list[Footstep] # std::vector<placo::humanoid::FootstepsPlanner::Footstep>
8292
6827
 
8293
6828
  def frame(
8294
6829
  self,
@@ -8326,46 +6861,18 @@ None( (placo.Support)arg1) -> object :
8326
6861
  """
8327
6862
  ...
8328
6863
 
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
- """
6864
+ start: bool # bool
8337
6865
 
8338
6866
  def support_polygon(
8339
6867
  self,
8340
6868
  ) -> list[numpy.ndarray]:
8341
6869
  ...
8342
6870
 
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
- """
6871
+ t_start: float # double
8360
6872
 
8361
- time_ratio: any
8362
- """
8363
-
8364
- None( (placo.Support)arg1) -> float :
6873
+ target_world_dcm: numpy.ndarray # Eigen::Vector2d
8365
6874
 
8366
- C++ signature :
8367
- double {lvalue} None(placo::humanoid::FootstepsPlanner::Support {lvalue})
8368
- """
6875
+ time_ratio: float # double
8369
6876
 
8370
6877
 
8371
6878
  class Supports:
@@ -8514,26 +7021,18 @@ class SwingFootTrajectory:
8514
7021
 
8515
7022
 
8516
7023
  class Task:
8517
- A: any
7024
+ A: numpy.ndarray # Eigen::MatrixXd
8518
7025
  """
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})
7026
+ Matrix A in the task Ax = b, where x are the joint delta positions.
8524
7027
  """
8525
7028
 
8526
7029
  def __init__(
8527
7030
  ) -> any:
8528
7031
  ...
8529
7032
 
8530
- b: any
7033
+ b: numpy.ndarray # Eigen::MatrixXd
8531
7034
  """
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})
7035
+ Vector b in the task Ax = b, where x are the joint delta positions.
8537
7036
  """
8538
7037
 
8539
7038
  def configure(
@@ -8567,13 +7066,9 @@ None( (placo.Task)arg1) -> object :
8567
7066
  """
8568
7067
  ...
8569
7068
 
8570
- name: any
7069
+ name: str # std::string
8571
7070
  """
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})
7071
+ Object name.
8577
7072
  """
8578
7073
 
8579
7074
  priority: str
@@ -8600,58 +7095,34 @@ class TaskContact:
8600
7095
  """
8601
7096
  ...
8602
7097
 
8603
- active: any
7098
+ active: bool # bool
8604
7099
  """
8605
-
8606
- None( (placo.Contact)arg1) -> bool :
8607
-
8608
- C++ signature :
8609
- bool {lvalue} None(placo::dynamics::Contact {lvalue})
7100
+ 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
7101
  """
8611
7102
 
8612
- mu: any
7103
+ mu: float # double
8613
7104
  """
8614
-
8615
- None( (placo.Contact)arg1) -> float :
8616
-
8617
- C++ signature :
8618
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7105
+ Coefficient of friction (if relevant)
8619
7106
  """
8620
7107
 
8621
- weight_forces: any
7108
+ weight_forces: float # double
8622
7109
  """
8623
-
8624
- None( (placo.Contact)arg1) -> float :
8625
-
8626
- C++ signature :
8627
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7110
+ Weight of forces for the optimization (if relevant)
8628
7111
  """
8629
7112
 
8630
- weight_moments: any
7113
+ weight_moments: float # double
8631
7114
  """
8632
-
8633
- None( (placo.Contact)arg1) -> float :
8634
-
8635
- C++ signature :
8636
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7115
+ Weight of moments for optimization (if relevant)
8637
7116
  """
8638
7117
 
8639
- weight_tangentials: any
7118
+ weight_tangentials: float # double
8640
7119
  """
8641
-
8642
- None( (placo.Contact)arg1) -> float :
8643
-
8644
- C++ signature :
8645
- double {lvalue} None(placo::dynamics::Contact {lvalue})
7120
+ Extra cost for tangential forces.
8646
7121
  """
8647
7122
 
8648
- wrench: any
7123
+ wrench: numpy.ndarray # Eigen::VectorXd
8649
7124
  """
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})
7125
+ Wrench populated after the DynamicsSolver::solve call.
8655
7126
  """
8656
7127
 
8657
7128
 
@@ -8677,31 +7148,19 @@ class Variable:
8677
7148
  """
8678
7149
  ...
8679
7150
 
8680
- k_end: any
7151
+ k_end: int # int
8681
7152
  """
8682
-
8683
- None( (placo.Variable)arg1) -> int :
8684
-
8685
- C++ signature :
8686
- int {lvalue} None(placo::problem::Variable {lvalue})
7153
+ End offset in the Problem.
8687
7154
  """
8688
7155
 
8689
- k_start: any
7156
+ k_start: int # int
8690
7157
  """
8691
-
8692
- None( (placo.Variable)arg1) -> int :
8693
-
8694
- C++ signature :
8695
- int {lvalue} None(placo::problem::Variable {lvalue})
7158
+ Start offset in the Problem.
8696
7159
  """
8697
7160
 
8698
- value: any
7161
+ value: numpy.ndarray # Eigen::VectorXd
8699
7162
  """
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})
7163
+ Variable value, populated by Problem after a solve.
8705
7164
  """
8706
7165
 
8707
7166
 
@@ -8724,14 +7183,7 @@ class WPGTrajectory:
8724
7183
  """
8725
7184
  ...
8726
7185
 
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
- """
7186
+ com_target_z: float # double
8735
7187
 
8736
7188
  def get_R_world_trunk(
8737
7189
  self,
@@ -8883,28 +7335,14 @@ None( (placo.WPGTrajectory)arg1) -> float :
8883
7335
  ) -> numpy.ndarray:
8884
7336
  ...
8885
7337
 
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
- """
7338
+ parts: list[WPGTrajectoryPart] # std::vector<placo::humanoid::WalkPatternGenerator::TrajectoryPart>
8894
7339
 
8895
7340
  def print_parts_timings(
8896
7341
  self,
8897
7342
  ) -> None:
8898
7343
  ...
8899
7344
 
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
- """
7345
+ replan_success: bool # bool
8908
7346
 
8909
7347
  def support_is_both(
8910
7348
  self,
@@ -8918,41 +7356,13 @@ None( (placo.WPGTrajectory)arg1) -> bool :
8918
7356
  ) -> any:
8919
7357
  ...
8920
7358
 
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
- """
7359
+ t_end: float # double
8938
7360
 
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
- """
7361
+ t_start: float # double
8947
7362
 
8948
- trunk_roll: any
8949
- """
8950
-
8951
- None( (placo.WPGTrajectory)arg1) -> float :
7363
+ trunk_pitch: float # double
8952
7364
 
8953
- C++ signature :
8954
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::Trajectory {lvalue})
8955
- """
7365
+ trunk_roll: float # double
8956
7366
 
8957
7367
 
8958
7368
  class WPGTrajectoryPart:
@@ -8963,32 +7373,11 @@ class WPGTrajectoryPart:
8963
7373
  ) -> None:
8964
7374
  ...
8965
7375
 
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
- """
7376
+ support: Support # placo::humanoid::FootstepsPlanner::Support
8983
7377
 
8984
- t_start: any
8985
- """
8986
-
8987
- None( (placo.WPGTrajectoryPart)arg1) -> float :
7378
+ t_end: float # double
8988
7379
 
8989
- C++ signature :
8990
- double {lvalue} None(placo::humanoid::WalkPatternGenerator::TrajectoryPart {lvalue})
8991
- """
7380
+ t_start: float # double
8992
7381
 
8993
7382
 
8994
7383
  class WalkPatternGenerator:
@@ -9066,23 +7455,9 @@ class WalkPatternGenerator:
9066
7455
  """
9067
7456
  ...
9068
7457
 
9069
- soft: any
9070
- """
9071
-
9072
- None( (placo.WalkPatternGenerator)arg1) -> bool :
9073
-
9074
- C++ signature :
9075
- bool {lvalue} None(placo::humanoid::WalkPatternGenerator {lvalue})
9076
- """
7458
+ soft: bool # bool
9077
7459
 
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
- """
7460
+ stop_end_support_weight: float # double
9086
7461
 
9087
7462
  def support_default_duration(
9088
7463
  self,
@@ -9111,14 +7486,7 @@ None( (placo.WalkPatternGenerator)arg1) -> float :
9111
7486
  """
9112
7487
  ...
9113
7488
 
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
- """
7489
+ zmp_in_support_weight: float # double
9122
7490
 
9123
7491
 
9124
7492
  class WalkTasks:
@@ -9127,32 +7495,11 @@ class WalkTasks:
9127
7495
  ) -> None:
9128
7496
  ...
9129
7497
 
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
- """
7498
+ com_task: CoMTask # placo::kinematics::CoMTask
9147
7499
 
9148
- com_y: any
9149
- """
9150
-
9151
- None( (placo.WalkTasks)arg1) -> float :
7500
+ com_x: float # double
9152
7501
 
9153
- C++ signature :
9154
- double {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9155
- """
7502
+ com_y: float # double
9156
7503
 
9157
7504
  def get_tasks_error(
9158
7505
  self,
@@ -9166,14 +7513,7 @@ None( (placo.WalkTasks)arg1) -> float :
9166
7513
  ) -> None:
9167
7514
  ...
9168
7515
 
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
- """
7516
+ left_foot_task: FrameTask # placo::kinematics::FrameTask
9177
7517
 
9178
7518
  def reach_initial_pose(
9179
7519
  self,
@@ -9189,59 +7529,17 @@ None( (placo.WalkTasks)arg1) -> placo.FrameTask :
9189
7529
  ) -> None:
9190
7530
  ...
9191
7531
 
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 :
7532
+ right_foot_task: FrameTask # placo::kinematics::FrameTask
9223
7533
 
9224
- C++ signature :
9225
- bool {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9226
- """
7534
+ scaled: bool # bool
9227
7535
 
9228
- trunk_orientation_task: any
9229
- """
9230
-
9231
- None( (placo.WalkTasks)arg1) -> placo.OrientationTask :
7536
+ solver: KinematicsSolver # placo::kinematics::KinematicsSolver
9232
7537
 
9233
- C++ signature :
9234
- placo::kinematics::OrientationTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9235
- """
7538
+ trunk_mode: bool # bool
9236
7539
 
9237
- trunk_task: any
9238
- """
9239
-
9240
- None( (placo.WalkTasks)arg1) -> placo.PositionTask :
7540
+ trunk_orientation_task: OrientationTask # placo::kinematics::OrientationTask
9241
7541
 
9242
- C++ signature :
9243
- placo::kinematics::PositionTask {lvalue} None(placo::humanoid::WalkTasks {lvalue})
9244
- """
7542
+ trunk_task: PositionTask # placo::kinematics::PositionTask
9245
7543
 
9246
7544
  def update_tasks(
9247
7545
  self,
@@ -9259,22 +7557,14 @@ None( (placo.WalkTasks)arg1) -> placo.PositionTask :
9259
7557
 
9260
7558
 
9261
7559
  class WheelTask:
9262
- A: any
7560
+ A: numpy.ndarray # Eigen::MatrixXd
9263
7561
  """
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})
7562
+ Matrix A in the task Ax = b, where x are the joint delta positions.
9269
7563
  """
9270
7564
 
9271
- T_world_surface: any
7565
+ T_world_surface: numpy.ndarray # Eigen::Affine3d
9272
7566
  """
9273
-
9274
- None( (placo.WheelTask)arg1) -> object :
9275
-
9276
- C++ signature :
9277
- Eigen::Transform<double, 3, 2, 0> {lvalue} None(placo::kinematics::WheelTask {lvalue})
7567
+ Target position in the world.
9278
7568
  """
9279
7569
 
9280
7570
  def __init__(
@@ -9288,13 +7578,9 @@ None( (placo.WheelTask)arg1) -> object :
9288
7578
  """
9289
7579
  ...
9290
7580
 
9291
- b: any
7581
+ b: numpy.ndarray # Eigen::MatrixXd
9292
7582
  """
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})
7583
+ Vector b in the task Ax = b, where x are the joint delta positions.
9298
7584
  """
9299
7585
 
9300
7586
  def configure(
@@ -9328,31 +7614,19 @@ None( (placo.Task)arg1) -> object :
9328
7614
  """
9329
7615
  ...
9330
7616
 
9331
- joint: any
7617
+ joint: str # std::string
9332
7618
  """
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})
7619
+ Frame.
9338
7620
  """
9339
7621
 
9340
- name: any
7622
+ name: str # std::string
9341
7623
  """
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})
7624
+ Object name.
9347
7625
  """
9348
7626
 
9349
- omniwheel: any
7627
+ omniwheel: bool # bool
9350
7628
  """
9351
-
9352
- None( (placo.WheelTask)arg1) -> bool :
9353
-
9354
- C++ signature :
9355
- bool {lvalue} None(placo::kinematics::WheelTask {lvalue})
7629
+ Omniwheel (can slide laterally)
9356
7630
  """
9357
7631
 
9358
7632
  priority: str
@@ -9360,13 +7634,9 @@ None( (placo.WheelTask)arg1) -> bool :
9360
7634
  Priority [str]
9361
7635
  """
9362
7636
 
9363
- radius: any
7637
+ radius: float # double
9364
7638
  """
9365
-
9366
- None( (placo.WheelTask)arg1) -> float :
9367
-
9368
- C++ signature :
9369
- double {lvalue} None(placo::kinematics::WheelTask {lvalue})
7639
+ Wheel radius.
9370
7640
  """
9371
7641
 
9372
7642
  def update(
@@ -9390,13 +7660,9 @@ class YawConstraint:
9390
7660
  """
9391
7661
  ...
9392
7662
 
9393
- angle_max: any
7663
+ angle_max: float # double
9394
7664
  """
9395
-
9396
- None( (placo.YawConstraint)arg1) -> float :
9397
-
9398
- C++ signature :
9399
- double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
7665
+ Maximum angle allowable by the yaw constraint (yaw is taken for x-axis of b around z-axis in a)
9400
7666
  """
9401
7667
 
9402
7668
  def configure(
@@ -9414,13 +7680,9 @@ None( (placo.YawConstraint)arg1) -> float :
9414
7680
  """
9415
7681
  ...
9416
7682
 
9417
- name: any
7683
+ name: str # std::string
9418
7684
  """
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})
7685
+ Object name.
9424
7686
  """
9425
7687
 
9426
7688
  priority: str