forked from dartsim/dart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamics.pyi
More file actions
6627 lines (6580 loc) · 366 KB
/
dynamics.pyi
File metadata and controls
6627 lines (6580 loc) · 366 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
import dartpy.common
import dartpy.math
import dartpy.optimizer
import numpy
import typing
__all__: list[str] = ['ACCELERATION', 'ActuatorType', 'ArrowShape', 'ArrowShapeProperties', 'BallJoint', 'BallJointProperties', 'BodyNode', 'BodyNodeAspectProperties', 'BodyNodeProperties', 'BoxShape', 'CapsuleShape', 'Chain', 'ChainCriteria', 'CollisionAspect', 'CompositeJoiner_EmbedProperties_EulerJoint_EulerJointUniqueProperties_GenericJoint_R3Space', 'CompositeJoiner_EmbedProperties_PlanarJoint_PlanarJointUniqueProperties_GenericJoint_R3Space', 'CompositeJoiner_EmbedProperties_PrismaticJoint_PrismaticJointUniqueProperties_GenericJoint_R1Space', 'CompositeJoiner_EmbedProperties_RevoluteJoint_RevoluteJointUniqueProperties_GenericJoint_R1Space', 'CompositeJoiner_EmbedProperties_ScrewJoint_ScrewJointUniqueProperties_GenericJoint_R1Space', 'CompositeJoiner_EmbedProperties_TranslationalJoint2D_TranslationalJoint2DUniqueProperties_GenericJoint_R2Space', 'CompositeJoiner_EmbedProperties_UniversalJoint_UniversalJointUniqueProperties_GenericJoint_R2Space', 'CompositeJoiner_EmbedStateAndProperties_GenericJoint_R1GenericJointStateGenericJointUniqueProperties_Joint', 'CompositeJoiner_EmbedStateAndProperties_GenericJoint_R2GenericJointStateGenericJointUniqueProperties_Joint', 'CompositeJoiner_EmbedStateAndProperties_GenericJoint_R3GenericJointStateGenericJointUniqueProperties_Joint', 'CompositeJoiner_EmbedStateAndProperties_GenericJoint_SE3GenericJointStateGenericJointUniqueProperties_Joint', 'CompositeJoiner_EmbedStateAndProperties_GenericJoint_SO3GenericJointStateGenericJointUniqueProperties_Joint', 'ConeShape', 'CylinderShape', 'DefaultActuatorType', 'DegreeOfFreedom', 'Detachable', 'DynamicsAspect', 'EllipsoidShape', 'EmbedPropertiesOnTopOf_EulerJoint_EulerJointUniqueProperties_GenericJoint_R3Space', 'EmbedPropertiesOnTopOf_PlanarJoint_PlanarJointUniqueProperties_GenericJoint_R3Space', 'EmbedPropertiesOnTopOf_PrismaticJoint_PrismaticJointUniqueProperties_GenericJoint_R1Space', 'EmbedPropertiesOnTopOf_RevoluteJoint_RevoluteJointUniqueProperties_GenericJoint_R1Space', 'EmbedPropertiesOnTopOf_ScrewJoint_ScrewJointUniqueProperties_GenericJoint_R1Space', 'EmbedPropertiesOnTopOf_TranslationalJoint2D_TranslationalJoint2DUniqueProperties_GenericJoint_R2Space', 'EmbedPropertiesOnTopOf_UniversalJoint_UniversalJointUniqueProperties_GenericJoint_R2Space', 'EmbedProperties_EulerJoint_EulerJointUniqueProperties', 'EmbedProperties_Joint_JointProperties', 'EmbedProperties_PlanarJoint_PlanarJointUniqueProperties', 'EmbedProperties_PrismaticJoint_PrismaticJointUniqueProperties', 'EmbedProperties_RevoluteJoint_RevoluteJointUniqueProperties', 'EmbedProperties_ScrewJoint_ScrewJointUniqueProperties', 'EmbedProperties_TranslationalJoint2D_TranslationalJoint2DUniqueProperties', 'EmbedProperties_UniversalJoint_UniversalJointUniqueProperties', 'EmbedStateAndPropertiesOnTopOf_GenericJoint_R1_GenericJointState_GenericJointUniqueProperties_Joint', 'EmbedStateAndPropertiesOnTopOf_GenericJoint_R2_GenericJointState_GenericJointUniqueProperties_Joint', 'EmbedStateAndPropertiesOnTopOf_GenericJoint_R3_GenericJointState_GenericJointUniqueProperties_Joint', 'EmbedStateAndPropertiesOnTopOf_GenericJoint_SE3_GenericJointState_GenericJointUniqueProperties_Joint', 'EmbedStateAndPropertiesOnTopOf_GenericJoint_SO3_GenericJointState_GenericJointUniqueProperties_Joint', 'EmbedStateAndProperties_GenericJoint_R1GenericJointState_GenericJointUniqueProperties', 'EmbedStateAndProperties_GenericJoint_R2GenericJointState_GenericJointUniqueProperties', 'EmbedStateAndProperties_GenericJoint_R3GenericJointState_GenericJointUniqueProperties', 'EmbedStateAndProperties_GenericJoint_SE3GenericJointState_GenericJointUniqueProperties', 'EmbedStateAndProperties_GenericJoint_SO3GenericJointState_GenericJointUniqueProperties', 'Entity', 'EndEffector', 'EulerJoint', 'EulerJointProperties', 'EulerJointUniqueProperties', 'FORCE', 'Frame', 'FreeJoint', 'FreeJointProperties', 'GenericJointProperties_R1', 'GenericJointProperties_R2', 'GenericJointProperties_R3', 'GenericJointProperties_SE3', 'GenericJointProperties_SO3', 'GenericJointUniqueProperties_R1', 'GenericJointUniqueProperties_R2', 'GenericJointUniqueProperties_R3', 'GenericJointUniqueProperties_SE3', 'GenericJointUniqueProperties_SO3', 'GenericJoint_R1', 'GenericJoint_R2', 'GenericJoint_R3', 'GenericJoint_SE3', 'GenericJoint_SO3', 'Inertia', 'InverseKinematics', 'InverseKinematicsErrorMethod', 'InverseKinematicsErrorMethodProperties', 'InverseKinematicsTaskSpaceRegion', 'InverseKinematicsTaskSpaceRegionProperties', 'InverseKinematicsTaskSpaceRegionUniqueProperties', 'JacobianNode', 'Joint', 'JointProperties', 'LOCKED', 'LineSegmentShape', 'Linkage', 'LinkageCriteria', 'MIMIC', 'MeshShape', 'MetaSkeleton', 'MimicConstraintType', 'MimicDofProperties', 'MultiSphereConvexHullShape', 'Node', 'PASSIVE', 'PlanarJoint', 'PlanarJointProperties', 'PlanarJointUniqueProperties', 'PlaneShape', 'PointCloudShape', 'PrismaticJoint', 'PrismaticJointProperties', 'PrismaticJointUniqueProperties', 'ReferentialSkeleton', 'RequiresAspect_EmbeddedPropertiesAspect_EulerJoint_EulerJointUniqueProperties', 'RequiresAspect_EmbeddedPropertiesAspect_Joint_JointProperties', 'RequiresAspect_EmbeddedPropertiesAspect_PlanarJoint_PlanarJointUniqueProperties', 'RequiresAspect_EmbeddedPropertiesAspect_PrismaticJoint_PrismaticJointUniqueProperties', 'RequiresAspect_EmbeddedPropertiesAspect_RevoluteJoint_RevoluteJointUniqueProperties', 'RequiresAspect_EmbeddedPropertiesAspect_ScrewJoint_ScrewJointUniqueProperties', 'RequiresAspect_EmbeddedPropertiesAspect_TranslationalJoint2D_TranslationalJoint2DUniqueProperties', 'RequiresAspect_EmbeddedPropertiesAspect_UniversalJoint_UniversalJointUniqueProperties', 'RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R1_GenericJointState_GenericJointUniqueProperties', 'RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R2_GenericJointState_GenericJointUniqueProperties', 'RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R3_GenericJointState_GenericJointUniqueProperties', 'RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_SE3_GenericJointState_GenericJointUniqueProperties', 'RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_SO3_GenericJointState_GenericJointUniqueProperties', 'RevoluteJoint', 'RevoluteJointProperties', 'RevoluteJointUniqueProperties', 'SERVO', 'ScrewJoint', 'ScrewJointProperties', 'ScrewJointUniqueProperties', 'Shape', 'ShapeFrame', 'ShapeNode', 'SimpleFrame', 'Skeleton', 'SoftMeshShape', 'SpecializedForAspect_EmbeddedPropertiesAspect_EulerJoint_EulerJointUniqueProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_Joint_JointProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_PlanarJoint_PlanarJointUniqueProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_PrismaticJoint_PrismaticJointUniqueProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_RevoluteJoint_RevoluteJointUniqueProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_ScrewJoint_ScrewJointUniqueProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_TranslationalJoint2D_TranslationalJoint2DUniqueProperties', 'SpecializedForAspect_EmbeddedPropertiesAspect_UniversalJoint_UniversalJointUniqueProperties', 'SpecializedForAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R1_GenericJointState_GenericJointUniqueProperties', 'SpecializedForAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R2_GenericJointState_GenericJointUniqueProperties', 'SpecializedForAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R3_GenericJointState_GenericJointUniqueProperties', 'SpecializedForAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_SE3_GenericJointState_GenericJointUniqueProperties', 'SpecializedForAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_SO3_GenericJointState_GenericJointUniqueProperties', 'SphereShape', 'Support', 'TemplatedJacobianBodyNode', 'TranslationalJoint', 'TranslationalJoint2D', 'TranslationalJoint2DProperties', 'TranslationalJoint2DUniqueProperties', 'TranslationalJointProperties', 'UniversalJoint', 'UniversalJointProperties', 'UniversalJointUniqueProperties', 'VELOCITY', 'VisualAspect', 'WeldJoint', 'ZeroDofJoint', 'ZeroDofJointProperties']
M = typing.TypeVar("M", bound=int)
N = typing.TypeVar("N", bound=int)
class ActuatorType:
"""
Members:
FORCE
PASSIVE
SERVO
MIMIC
ACCELERATION
VELOCITY
LOCKED
"""
ACCELERATION: typing.ClassVar[ActuatorType] # value = <ActuatorType.ACCELERATION: 4>
FORCE: typing.ClassVar[ActuatorType] # value = <ActuatorType.FORCE: 0>
LOCKED: typing.ClassVar[ActuatorType] # value = <ActuatorType.LOCKED: 6>
MIMIC: typing.ClassVar[ActuatorType] # value = <ActuatorType.MIMIC: 3>
PASSIVE: typing.ClassVar[ActuatorType] # value = <ActuatorType.PASSIVE: 1>
SERVO: typing.ClassVar[ActuatorType] # value = <ActuatorType.SERVO: 2>
VELOCITY: typing.ClassVar[ActuatorType] # value = <ActuatorType.VELOCITY: 5>
__members__: typing.ClassVar[dict[str, ActuatorType]] # value = {'FORCE': <ActuatorType.FORCE: 0>, 'PASSIVE': <ActuatorType.PASSIVE: 1>, 'SERVO': <ActuatorType.SERVO: 2>, 'MIMIC': <ActuatorType.MIMIC: 3>, 'ACCELERATION': <ActuatorType.ACCELERATION: 4>, 'VELOCITY': <ActuatorType.VELOCITY: 5>, 'LOCKED': <ActuatorType.LOCKED: 6>}
def __eq__(self, other: typing.Any) -> bool:
...
def __getstate__(self) -> int:
...
def __hash__(self) -> int:
...
def __index__(self) -> int:
...
def __init__(self, value: int) -> None:
...
def __int__(self) -> int:
...
def __ne__(self, other: typing.Any) -> bool:
...
def __repr__(self) -> str:
...
def __setstate__(self, state: int) -> None:
...
def __str__(self) -> str:
...
@property
def name(self) -> str:
...
@property
def value(self) -> int:
...
class BallJoint(GenericJoint_SO3):
@staticmethod
def convertToPositions(tf: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def convertToRotation(positions: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def convertToTransform(positions: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> dartpy.math.Isometry3:
...
@staticmethod
def getStaticType() -> str:
...
def getBallJointProperties(self) -> BallJointProperties:
...
def getPositionDifferencesStatic(self, q2: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], q1: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getRelativeJacobianStatic(self, positions: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
def getType(self) -> str:
...
def isCyclic(self, index: int) -> bool:
...
class BallJointProperties(GenericJointProperties_SO3):
@typing.overload
def __init__(self) -> None:
...
@typing.overload
def __init__(self, properties: GenericJointProperties_SO3) -> None:
...
class BodyNode(TemplatedJacobianBodyNode, Frame):
@typing.overload
def addConstraintImpulse(self, constImp: numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def addConstraintImpulse(self, constImp: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def addConstraintImpulse(self, constImp: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isImpulseLocal: bool) -> None:
...
@typing.overload
def addConstraintImpulse(self, constImp: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isImpulseLocal: bool, isOffsetLocal: bool) -> None:
...
@typing.overload
def addExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def addExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def addExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isForceLocal: bool) -> None:
...
@typing.overload
def addExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isForceLocal: bool, isOffsetLocal: bool) -> None:
...
@typing.overload
def addExtTorque(self, torque: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def addExtTorque(self, torque: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isLocal: bool) -> None:
...
def clearConstraintImpulse(self) -> None:
...
def clearExternalForces(self) -> None:
...
def clearInternalForces(self) -> None:
...
def computeKineticEnergy(self) -> float:
...
def computeLagrangian(self, gravity: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> float:
...
def computePotentialEnergy(self, gravity: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> float:
...
@typing.overload
def copy(self, otherBodyNode: BodyNode) -> None:
...
@typing.overload
def copy(self, otherBodyNode: BodyNode) -> None:
...
@typing.overload
def copyAs(self, skeletonName: str) -> ...:
...
@typing.overload
def copyAs(self, skeletonName: str, recursive: bool) -> ...:
...
@typing.overload
def copyTo(self, newParent: BodyNode) -> tuple[..., BodyNode]:
...
@typing.overload
def copyTo(self, newParent: BodyNode, recursive: bool) -> tuple[..., BodyNode]:
...
@typing.overload
def copyTo(self, newSkeleton: ..., newParent: BodyNode) -> tuple[..., BodyNode]:
...
@typing.overload
def copyTo(self, newSkeleton: ..., newParent: BodyNode, recursive: bool) -> tuple[..., BodyNode]:
...
@typing.overload
def createBallJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createBallJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createBallJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createEulerJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createEulerJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createEulerJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createFreeJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createFreeJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createFreeJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createPlanarJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createPlanarJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createPlanarJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createPrismaticJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createPrismaticJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createPrismaticJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createRevoluteJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createRevoluteJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createRevoluteJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createScrewJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createScrewJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createScrewJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createShapeNode(self, shape: Shape) -> ShapeNode:
...
@typing.overload
def createShapeNode(self, shape: Shape, name: str) -> ShapeNode:
...
@typing.overload
def createTranslationalJoint2DAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createTranslationalJoint2DAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createTranslationalJoint2DAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createTranslationalJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createTranslationalJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createTranslationalJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createUniversalJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createUniversalJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createUniversalJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
@typing.overload
def createWeldJointAndBodyNodePair(self) -> tuple[..., BodyNode]:
...
@typing.overload
def createWeldJointAndBodyNodePair(self, jointProperties: ...) -> tuple[..., BodyNode]:
...
@typing.overload
def createWeldJointAndBodyNodePair(self, jointProperties: ..., bodyProperties: BodyNodeProperties) -> tuple[..., BodyNode]:
...
def dependsOn(self, genCoordIndex: int) -> bool:
...
def dirtyAcceleration(self) -> None:
...
def dirtyArticulatedInertia(self) -> None:
...
def dirtyCoriolisForces(self) -> None:
...
def dirtyExternalForces(self) -> None:
...
def dirtyTransform(self) -> None:
...
def dirtyVelocity(self) -> None:
...
def duplicateNodes(self, otherBodyNode: BodyNode) -> None:
...
def getAllNodeProperties(self) -> ...:
...
def getAllNodeStates(self) -> ...:
...
@typing.overload
def getAngularMomentum(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getAngularMomentum(self, pivot: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getBodyForce(self) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]:
"""
Get spatial body force transmitted from the parent joint.
The spatial body force is transmitted to this BodyNode from the parent body through the connecting joint. It is expressed in this BodyNode's frame.
"""
def getBodyNodeProperties(self) -> BodyNodeProperties:
...
@typing.overload
def getCOM(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOM(self, withRespectTo: Frame) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMLinearAcceleration(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMLinearAcceleration(self, relativeTo: Frame) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMLinearAcceleration(self, relativeTo: Frame, inCoordinatesOf: Frame) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMLinearVelocity(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMLinearVelocity(self, relativeTo: Frame) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMLinearVelocity(self, relativeTo: Frame, inCoordinatesOf: Frame) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMSpatialAcceleration(self) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMSpatialAcceleration(self, relativeTo: Frame, inCoordinatesOf: Frame) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMSpatialVelocity(self) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
@typing.overload
def getCOMSpatialVelocity(self, relativeTo: Frame, inCoordinatesOf: Frame) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getChainDofs(self) -> list[DegreeOfFreedom]:
...
def getChildBodyNode(self, index: int) -> BodyNode:
...
def getChildJoint(self, index: int) -> ...:
...
def getDependentGenCoordIndex(self, arrayIndex: int) -> int:
...
def getExternalForceGlobal(self) -> numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getGravityMode(self) -> bool:
...
def getIndexInSkeleton(self) -> int:
...
def getIndexInTree(self) -> int:
...
def getInertia(self) -> ...:
...
def getLinearMomentum(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getLocalCOM(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getMass(self) -> float:
...
def getMomentOfInertia(self, Ixx: float, Iyy: float, Izz: float, Ixy: float, Ixz: float, Iyz: float) -> None:
...
def getName(self) -> str:
...
def getNumChildBodyNodes(self) -> int:
...
def getNumChildJoints(self) -> int:
...
def getNumDependentDofs(self) -> int:
...
def getNumDependentGenCoords(self) -> int:
...
def getNumEndEffectors(self) -> int:
...
def createEndEffector(self, name: str = 'EndEffector') -> EndEffector:
...
def getEndEffector(self, index: int) -> EndEffector:
...
def getNumMarkers(self) -> int:
...
def getNumShapeNodes(self) -> int:
...
def getParentBodyNode(self) -> BodyNode:
...
def getParentJoint(self) -> ...:
...
def getShapeNode(self, index: int) -> ShapeNode:
...
def getShapeNodes(self) -> list[ShapeNode]:
...
@typing.overload
def getSkeleton(self) -> ...:
...
@typing.overload
def getSkeleton(self) -> ...:
...
def getTreeIndex(self) -> int:
...
def isCollidable(self) -> bool:
...
def isReactive(self) -> bool:
...
def matchNodes(self, otherBodyNode: BodyNode) -> None:
...
@typing.overload
def moveTo(self, newParent: BodyNode) -> bool:
...
@typing.overload
def moveTo(self, newSkeleton: ..., newParent: BodyNode) -> bool:
...
@typing.overload
def remove(self) -> ...:
...
@typing.overload
def remove(self, name: str) -> ...:
...
def removeAllShapeNodes(self) -> None:
...
def setAllNodeProperties(self, properties: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ...) -> None:
...
def setAllNodeStates(self, states: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ...) -> None:
...
def setAlpha(self, alpha: float) -> None:
...
def setAspectProperties(self, properties: BodyNodeAspectProperties) -> None:
...
def setAspectState(self, state: ..., dart: ...) -> None:
...
def setCollidable(self, isCollidable: bool) -> None:
...
@typing.overload
def setColor(self, color: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def setColor(self, color: numpy.ndarray[tuple[typing.Literal[4], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
def setConstraintImpulse(self, constImp: numpy.ndarray[tuple[typing.Literal[6], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def setExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def setExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def setExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isForceLocal: bool) -> None:
...
@typing.overload
def setExtForce(self, force: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], offset: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isForceLocal: bool, isOffsetLocal: bool) -> None:
...
@typing.overload
def setExtTorque(self, torque: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
@typing.overload
def setExtTorque(self, torque: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], isLocal: bool) -> None:
...
def setGravityMode(self, gravityMode: bool) -> None:
...
def setInertia(self, inertia: ...) -> None:
...
def setLocalCOM(self, com: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
def setMass(self, mass: float) -> None:
...
@typing.overload
def setMomentOfInertia(self, Ixx: float, Iyy: float, Izz: float) -> None:
...
@typing.overload
def setMomentOfInertia(self, Ixx: float, Iyy: float, Izz: float, Ixy: float) -> None:
...
@typing.overload
def setMomentOfInertia(self, Ixx: float, Iyy: float, Izz: float, Ixy: float, Ixz: float) -> None:
...
@typing.overload
def setMomentOfInertia(self, Ixx: float, Iyy: float, Izz: float, Ixy: float, Ixz: float, Iyz: float) -> None:
...
def setName(self, name: str) -> str:
...
@typing.overload
def setProperties(self, properties: ..., std: ..., std: ..., std: ..., std: ..., std: ..., std: ..., dart: ...) -> None:
...
@typing.overload
def setProperties(self, properties: BodyNodeAspectProperties) -> None:
...
def split(self, skeletonName: str) -> ...:
...
class Support:
def setGeometry(
self,
geometry: typing.Iterable[
numpy.ndarray[
tuple[typing.Literal[3], typing.Literal[1]],
numpy.dtype[numpy.float64],
]
],
) -> None:
...
def getGeometry(
self,
) -> list[
numpy.ndarray[
tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]
]
]:
...
def setActive(self, supporting: bool = True) -> None:
...
def isActive(self) -> bool:
...
class EndEffector(JacobianNode):
def setDefaultRelativeTransform(self, transform: dartpy.math.Isometry3, useNow: bool = False) -> None:
...
def resetRelativeTransform(self) -> None:
...
def createSupport(self) -> Support:
...
@typing.overload
def getSupport(self) -> typing.Optional[Support]:
...
@typing.overload
def getSupport(self, createIfNull: bool) -> Support:
...
def hasSupport(self) -> bool:
...
def removeSupport(self) -> None:
...
class BodyNodeAspectProperties:
mGravityMode: bool
mInertia: ...
mIsCollidable: bool
mName: str
@typing.overload
def __init__(self) -> None:
...
@typing.overload
def __init__(self, name: str) -> None:
...
@typing.overload
def __init__(self, name: str, inertia: ...) -> None:
...
@typing.overload
def __init__(self, name: str, inertia: ..., isCollidable: bool) -> None:
...
@typing.overload
def __init__(self, name: str, inertia: ..., isCollidable: bool, gravityMode: bool) -> None:
...
class BodyNodeProperties:
@typing.overload
def __init__(self) -> None:
...
@typing.overload
def __init__(self, aspectProperties: BodyNodeAspectProperties) -> None:
...
class BoxShape(Shape):
@staticmethod
def computeInertiaOf(size: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def computeVolume(size: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> float:
...
@staticmethod
def getStaticType() -> str:
...
def __init__(self, size: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
def computeInertia(self, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
def getSize(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getType(self) -> str:
...
def setSize(self, size: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
class CapsuleShape(Shape):
@staticmethod
def computeInertiaOf(radius: float, height: float, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def computeVolumeOf(radius: float, height: float) -> float:
...
@staticmethod
def getStaticType() -> str:
...
def __init__(self, radius: float, height: float) -> None:
...
def computeInertia(self, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
def getHeight(self) -> float:
...
def getRadius(self) -> float:
...
def getType(self) -> str:
...
def setHeight(self, height: float) -> None:
...
def setRadius(self, radius: float) -> None:
...
class Chain(Linkage):
@typing.overload
def __init__(self, criteria: ...) -> None:
...
@typing.overload
def __init__(self, criteria: ..., name: str) -> None:
...
@typing.overload
def __init__(self, start: BodyNode, target: BodyNode) -> None:
...
@typing.overload
def __init__(self, start: BodyNode, target: BodyNode, name: str) -> None:
...
@typing.overload
def __init__(self, start: BodyNode, target: BodyNode, includeUpstreamParentJoint: bool) -> None:
...
@typing.overload
def __init__(self, start: BodyNode, target: BodyNode, includeUpstreamParentJoint: bool, name: str) -> None:
...
@typing.overload
def cloneChain(self) -> Chain:
...
@typing.overload
def cloneChain(self, cloneName: str) -> Chain:
...
def cloneMetaSkeleton(self, cloneName: str) -> MetaSkeleton:
...
def isStillChain(self) -> bool:
...
class ChainCriteria:
mIncludeUpstreamParentJoint: bool
mStart: ...
mTarget: ...
@staticmethod
def static_convert(criteria: LinkageCriteria) -> ChainCriteria:
...
@typing.overload
def __init__(self, start: BodyNode, target: BodyNode) -> None:
...
@typing.overload
def __init__(self, start: BodyNode, target: BodyNode, includeBoth: bool) -> None:
...
def convert(self) -> LinkageCriteria:
...
def satisfy(self) -> ...:
...
class CollisionAspect:
@typing.overload
def __init__(self) -> None:
...
@typing.overload
def __init__(self, properties: ...) -> None:
...
def getCollidable(self) -> bool:
...
def isCollidable(self) -> bool:
...
def setCollidable(self, value: bool) -> None:
...
class CompositeJoiner_EmbedProperties_EulerJoint_EulerJointUniqueProperties_GenericJoint_R3Space(EmbedProperties_EulerJoint_EulerJointUniqueProperties, GenericJoint_R3):
pass
class CompositeJoiner_EmbedProperties_PlanarJoint_PlanarJointUniqueProperties_GenericJoint_R3Space(EmbedProperties_PlanarJoint_PlanarJointUniqueProperties, GenericJoint_R3):
pass
class CompositeJoiner_EmbedProperties_PrismaticJoint_PrismaticJointUniqueProperties_GenericJoint_R1Space(EmbedProperties_PrismaticJoint_PrismaticJointUniqueProperties, GenericJoint_R1):
pass
class CompositeJoiner_EmbedProperties_RevoluteJoint_RevoluteJointUniqueProperties_GenericJoint_R1Space(EmbedProperties_RevoluteJoint_RevoluteJointUniqueProperties, GenericJoint_R1):
pass
class CompositeJoiner_EmbedProperties_ScrewJoint_ScrewJointUniqueProperties_GenericJoint_R1Space(EmbedProperties_ScrewJoint_ScrewJointUniqueProperties, GenericJoint_R1):
pass
class CompositeJoiner_EmbedProperties_TranslationalJoint2D_TranslationalJoint2DUniqueProperties_GenericJoint_R2Space(EmbedProperties_TranslationalJoint2D_TranslationalJoint2DUniqueProperties, GenericJoint_R2):
pass
class CompositeJoiner_EmbedProperties_UniversalJoint_UniversalJointUniqueProperties_GenericJoint_R2Space(EmbedProperties_UniversalJoint_UniversalJointUniqueProperties, GenericJoint_R2):
pass
class CompositeJoiner_EmbedStateAndProperties_GenericJoint_R1GenericJointStateGenericJointUniqueProperties_Joint(EmbedStateAndProperties_GenericJoint_R1GenericJointState_GenericJointUniqueProperties, Joint):
pass
class CompositeJoiner_EmbedStateAndProperties_GenericJoint_R2GenericJointStateGenericJointUniqueProperties_Joint(EmbedStateAndProperties_GenericJoint_R2GenericJointState_GenericJointUniqueProperties, Joint):
pass
class CompositeJoiner_EmbedStateAndProperties_GenericJoint_R3GenericJointStateGenericJointUniqueProperties_Joint(EmbedStateAndProperties_GenericJoint_R3GenericJointState_GenericJointUniqueProperties, Joint):
pass
class CompositeJoiner_EmbedStateAndProperties_GenericJoint_SE3GenericJointStateGenericJointUniqueProperties_Joint(EmbedStateAndProperties_GenericJoint_SE3GenericJointState_GenericJointUniqueProperties, Joint):
pass
class CompositeJoiner_EmbedStateAndProperties_GenericJoint_SO3GenericJointStateGenericJointUniqueProperties_Joint(EmbedStateAndProperties_GenericJoint_SO3GenericJointState_GenericJointUniqueProperties, Joint):
pass
class ConeShape(Shape):
@staticmethod
def computeInertiaOf(radius: float, height: float, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def computeVolume(radius: float, height: float) -> float:
...
@staticmethod
def getStaticType() -> str:
...
def __init__(self, radius: float, height: float) -> None:
...
def computeInertia(self, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
def getHeight(self) -> float:
...
def getRadius(self) -> float:
...
def getType(self) -> str:
...
def setHeight(self, height: float) -> None:
...
def setRadius(self, radius: float) -> None:
...
class CylinderShape(Shape):
@staticmethod
def computeInertiaOf(radius: float, height: float, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def computeVolumeOf(radius: float, height: float) -> float:
...
@staticmethod
def getStaticType() -> str:
...
def __init__(self, radius: float, height: float) -> None:
...
def computeInertia(self, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
def getHeight(self) -> float:
...
def getRadius(self) -> float:
...
def getType(self) -> str:
...
def setHeight(self, height: float) -> None:
...
def setRadius(self, radius: float) -> None:
...
class DegreeOfFreedom(dartpy.common.Subject):
def getAcceleration(self) -> float:
...
def getAccelerationLimits(self) -> tuple[float, float]:
...
def getAccelerationLowerLimit(self) -> float:
...
def getAccelerationUpperLimit(self) -> float:
...
def getCommand(self) -> float:
...
def getConstraintImpulse(self) -> float:
...
def getCoulombFriction(self) -> float:
...
def getDampingCoefficient(self) -> float:
...
def getForce(self) -> float:
...
def getForceLimits(self) -> tuple[float, float]:
...
def getForceLowerLimit(self) -> float:
...
def getForceUpperLimit(self) -> float:
...
def getIndexInJoint(self) -> int:
...
def getIndexInSkeleton(self) -> int:
...
def getIndexInTree(self) -> int:
...
def getInitialPosition(self) -> float:
...
def getInitialVelocity(self) -> float:
...
def getName(self) -> str:
...
def getPosition(self) -> float:
...
def getPositionLimits(self) -> tuple[float, float]:
...
def getPositionLowerLimit(self) -> float:
...
def getPositionUpperLimit(self) -> float:
...
def getRestPosition(self) -> float:
...
@typing.overload
def getSkeleton(self) -> ...:
...
@typing.overload
def getSkeleton(self) -> ...:
...
def getSpringStiffness(self) -> float:
...
def getTreeIndex(self) -> int:
...
def getVelocity(self) -> float:
...
def getVelocityChange(self) -> float:
...
def getVelocityLimits(self) -> tuple[float, float]:
...
def getVelocityLowerLimit(self) -> float:
...
def getVelocityUpperLimit(self) -> float:
...
def hasPositionLimit(self) -> bool:
...
def isCyclic(self) -> bool:
...
def isNamePreserved(self) -> bool:
...
def preserveName(self, preserve: bool) -> None:
...
def resetAcceleration(self) -> None:
...
def resetCommand(self) -> None:
...
def resetConstraintImpulse(self) -> None:
...
def resetForce(self) -> None:
...
def resetPosition(self) -> None:
...
def resetVelocity(self) -> None:
...
def resetVelocityChange(self) -> None:
...
def setAcceleration(self, acceleration: float) -> None:
...
@typing.overload
def setAccelerationLimits(self, lowerLimit: float, upperLimit: float) -> None:
...
@typing.overload
def setAccelerationLimits(self, limits: tuple[float, float]) -> None:
...
def setAccelerationLowerLimit(self, limit: float) -> None:
...
def setAccelerationUpperLimit(self, limit: float) -> None:
...
def setCommand(self, command: float) -> None:
...
def setConstraintImpulse(self, impulse: float) -> None:
...
def setCoulombFriction(self, friction: float) -> None:
...
def setDampingCoefficient(self, coeff: float) -> None:
...
def setForce(self, force: float) -> None:
...
@typing.overload
def setForceLimits(self, lowerLimit: float, upperLimit: float) -> None:
...
@typing.overload
def setForceLimits(self, limits: tuple[float, float]) -> None:
...
def setForceLowerLimit(self, limit: float) -> None:
...
def setForceUpperLimit(self, limit: float) -> None:
...
def setInitialPosition(self, initial: float) -> None:
...
def setInitialVelocity(self, initial: float) -> None:
...
@typing.overload
def setName(self, name: str) -> str:
...
@typing.overload
def setName(self, name: str, preserveName: bool) -> str:
...
def setPosition(self, position: float) -> None:
...
@typing.overload
def setPositionLimits(self, lowerLimit: float, upperLimit: float) -> None:
...
@typing.overload
def setPositionLimits(self, limits: tuple[float, float]) -> None:
...
def setPositionLowerLimit(self, limit: float) -> None:
...
def setPositionUpperLimit(self, limit: float) -> None:
...
def setRestPosition(self, q0: float) -> None:
...
def setSpringStiffness(self, k: float) -> None:
...
def setVelocity(self, velocity: float) -> None:
...
def setVelocityChange(self, velocityChange: float) -> None:
...
@typing.overload
def setVelocityLimits(self, lowerLimit: float, upperLimit: float) -> None:
...
@typing.overload
def setVelocityLimits(self, limits: tuple[float, float]) -> None:
...
def setVelocityLowerLimit(self, limit: float) -> None:
...
def setVelocityUpperLimit(self, limit: float) -> None:
...
class Detachable(Entity):
def setParentFrame(self, newParentFrame: ...) -> None:
...
class DynamicsAspect:
@typing.overload
def __init__(self) -> None:
...
@typing.overload
def __init__(self, properties: ...) -> None:
...
def getFrictionCoeff(self) -> float:
...
def getRestitutionCoeff(self) -> float:
...
def setFrictionCoeff(self, value: float) -> None:
...
def setRestitutionCoeff(self, value: float) -> None:
...
class EllipsoidShape(Shape):
@staticmethod
def computeInertiaOf(diameters: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
@staticmethod
def computeVolumeOf(diameters: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> float:
...
@staticmethod
def getStaticType() -> str:
...
def __init__(self, diameters: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
def computeInertia(self, mass: float) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
...
def getDiameters(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getRadii(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
...
def getType(self) -> str:
...
def isSphere(self) -> bool:
...
def setDiameters(self, diameters: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
def setRadii(self, radii: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
...
class EmbedPropertiesOnTopOf_EulerJoint_EulerJointUniqueProperties_GenericJoint_R3Space(CompositeJoiner_EmbedProperties_EulerJoint_EulerJointUniqueProperties_GenericJoint_R3Space):
pass
class EmbedPropertiesOnTopOf_PlanarJoint_PlanarJointUniqueProperties_GenericJoint_R3Space(CompositeJoiner_EmbedProperties_PlanarJoint_PlanarJointUniqueProperties_GenericJoint_R3Space):
pass
class EmbedPropertiesOnTopOf_PrismaticJoint_PrismaticJointUniqueProperties_GenericJoint_R1Space(CompositeJoiner_EmbedProperties_PrismaticJoint_PrismaticJointUniqueProperties_GenericJoint_R1Space):
pass
class EmbedPropertiesOnTopOf_RevoluteJoint_RevoluteJointUniqueProperties_GenericJoint_R1Space(CompositeJoiner_EmbedProperties_RevoluteJoint_RevoluteJointUniqueProperties_GenericJoint_R1Space):
pass
class EmbedPropertiesOnTopOf_ScrewJoint_ScrewJointUniqueProperties_GenericJoint_R1Space(CompositeJoiner_EmbedProperties_ScrewJoint_ScrewJointUniqueProperties_GenericJoint_R1Space):
pass
class EmbedPropertiesOnTopOf_TranslationalJoint2D_TranslationalJoint2DUniqueProperties_GenericJoint_R2Space(CompositeJoiner_EmbedProperties_TranslationalJoint2D_TranslationalJoint2DUniqueProperties_GenericJoint_R2Space):
pass
class EmbedPropertiesOnTopOf_UniversalJoint_UniversalJointUniqueProperties_GenericJoint_R2Space(CompositeJoiner_EmbedProperties_UniversalJoint_UniversalJointUniqueProperties_GenericJoint_R2Space):
pass
class EmbedProperties_EulerJoint_EulerJointUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_EulerJoint_EulerJointUniqueProperties):
pass
class EmbedProperties_Joint_JointProperties(RequiresAspect_EmbeddedPropertiesAspect_Joint_JointProperties):
pass
class EmbedProperties_PlanarJoint_PlanarJointUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_PlanarJoint_PlanarJointUniqueProperties):
pass
class EmbedProperties_PrismaticJoint_PrismaticJointUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_PrismaticJoint_PrismaticJointUniqueProperties):
pass
class EmbedProperties_RevoluteJoint_RevoluteJointUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_RevoluteJoint_RevoluteJointUniqueProperties):
pass
class EmbedProperties_ScrewJoint_ScrewJointUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_ScrewJoint_ScrewJointUniqueProperties):
pass
class EmbedProperties_TranslationalJoint2D_TranslationalJoint2DUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_TranslationalJoint2D_TranslationalJoint2DUniqueProperties):
pass
class EmbedProperties_UniversalJoint_UniversalJointUniqueProperties(RequiresAspect_EmbeddedPropertiesAspect_UniversalJoint_UniversalJointUniqueProperties):
pass
class EmbedStateAndPropertiesOnTopOf_GenericJoint_R1_GenericJointState_GenericJointUniqueProperties_Joint(CompositeJoiner_EmbedStateAndProperties_GenericJoint_R1GenericJointStateGenericJointUniqueProperties_Joint):
pass
class EmbedStateAndPropertiesOnTopOf_GenericJoint_R2_GenericJointState_GenericJointUniqueProperties_Joint(CompositeJoiner_EmbedStateAndProperties_GenericJoint_R2GenericJointStateGenericJointUniqueProperties_Joint):
pass
class EmbedStateAndPropertiesOnTopOf_GenericJoint_R3_GenericJointState_GenericJointUniqueProperties_Joint(CompositeJoiner_EmbedStateAndProperties_GenericJoint_R3GenericJointStateGenericJointUniqueProperties_Joint):
pass
class EmbedStateAndPropertiesOnTopOf_GenericJoint_SE3_GenericJointState_GenericJointUniqueProperties_Joint(CompositeJoiner_EmbedStateAndProperties_GenericJoint_SE3GenericJointStateGenericJointUniqueProperties_Joint):
pass
class EmbedStateAndPropertiesOnTopOf_GenericJoint_SO3_GenericJointState_GenericJointUniqueProperties_Joint(CompositeJoiner_EmbedStateAndProperties_GenericJoint_SO3GenericJointStateGenericJointUniqueProperties_Joint):
pass
class EmbedStateAndProperties_GenericJoint_R1GenericJointState_GenericJointUniqueProperties(RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R1_GenericJointState_GenericJointUniqueProperties):
pass
class EmbedStateAndProperties_GenericJoint_R2GenericJointState_GenericJointUniqueProperties(RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R2_GenericJointState_GenericJointUniqueProperties):
pass
class EmbedStateAndProperties_GenericJoint_R3GenericJointState_GenericJointUniqueProperties(RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_R3_GenericJointState_GenericJointUniqueProperties):
pass
class EmbedStateAndProperties_GenericJoint_SE3GenericJointState_GenericJointUniqueProperties(RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_SE3_GenericJointState_GenericJointUniqueProperties):
pass
class EmbedStateAndProperties_GenericJoint_SO3GenericJointState_GenericJointUniqueProperties(RequiresAspect_EmbeddedStateAndPropertiesAspect_GenericJoint_SO3_GenericJointState_GenericJointUniqueProperties):
pass
class Entity(dartpy.common.Subject):
def descendsFrom(self, someFrame: ...) -> bool:
...
def dirtyAcceleration(self) -> None:
...
def dirtyTransform(self) -> None:
...
def dirtyVelocity(self) -> None:
...
def getName(self) -> str:
...
def getParentFrame(self) -> ...:
...
def isFrame(self) -> bool: