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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
|
<html>
<head>
<title>NVIDIA(R) PhysX(R) SDK 3.4 API Reference: Class Members</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<LINK HREF="NVIDIA.css" REL="stylesheet" TYPE="text/css">
</head>
<body bgcolor="#FFFFFF">
<div id="header">
<hr class="first">
<img alt="" src="images/PhysXlogo.png" align="middle"> <br>
<center>
<a class="qindex" href="main.html">Main Page</a>
<a class="qindex" href="hierarchy.html">Class Hierarchy</a>
<a class="qindex" href="annotated.html">Compound List</a>
<a class="qindex" href="functions.html">Compound Members</a>
</center>
<hr class="second">
</div>
<!-- Generated by Doxygen 1.5.8 -->
<div class="tabs">
<ul>
<li class="current"><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
<li><a href="functions_rela.html"><span>Related Functions</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="functions.html#index__"><span>_</span></a></li>
<li><a href="functions_0x61.html#index_a"><span>a</span></a></li>
<li><a href="functions_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_0x64.html#index_d"><span>d</span></a></li>
<li><a href="functions_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_0x66.html#index_f"><span>f</span></a></li>
<li class="current"><a href="functions_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_0x69.html#index_i"><span>i</span></a></li>
<li><a href="functions_0x6b.html#index_k"><span>k</span></a></li>
<li><a href="functions_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_0x70.html#index_p"><span>p</span></a></li>
<li><a href="functions_0x71.html#index_q"><span>q</span></a></li>
<li><a href="functions_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_0x76.html#index_v"><span>v</span></a></li>
<li><a href="functions_0x77.html#index_w"><span>w</span></a></li>
<li><a href="functions_0x78.html#index_x"><span>x</span></a></li>
<li><a href="functions_0x79.html#index_y"><span>y</span></a></li>
<li><a href="functions_0x7a.html#index_z"><span>z</span></a></li>
<li><a href="functions_0x7e.html#index_~"><span>~</span></a></li>
</ul>
</div>
<div class="contents">
Here is a list of all class members with links to the classes they belong to:
<p>
<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
<li>gaussMapLimit
: <a class="el" href="structPxCookingParams.html#6be147977f9bd24a55dc3cd16ed390bc">PxCookingParams</a>
<li>geometricError
: <a class="el" href="structPx1DConstraint.html#e3ad7c8d4370c7b26634bd8e5046ba9a">Px1DConstraint</a>
<li>geometry
: <a class="el" href="classPxGeometryHolder.html#fcb5030748d06e0f7602bb88ee3e32d5">PxGeometryHolder</a>
<li>get()
: <a class="el" href="classPxGeometryHolder.html#fac1dbf383d07e5943b1a0684cff9278">PxGeometryHolder</a>
<li>getAckermannGeometryData()
: <a class="el" href="classPxVehicleDriveSimData4W.html#848a87fab754dd9acaafd857b7dbf1e6">PxVehicleDriveSimData4W</a>
<li>getActiveActors()
: <a class="el" href="classPxScene.html#c556f41a6fb051bae49765e3cbdbe3f8">PxScene</a>
<li>getActiveTransforms()
: <a class="el" href="classPxScene.html#5fdec7976b853ad4af5573bb13197426">PxScene</a>
<li>getActor()
: <a class="el" href="classPxShape.html#4b66c8a3e1de304cc0a98df14ac2cdb3">PxShape</a>
, <a class="el" href="classPxController.html#3754e17468322484fa5fd7034a208653">PxController</a>
<li>getActorFlags()
: <a class="el" href="classPxActor.html#fb92fb228de76bbcd42210d060b558d1">PxActor</a>
<li>getActors()
: <a class="el" href="classPxAggregate.html#0e87d0b4af5f03e6323ec3817086b366">PxAggregate</a>
, <a class="el" href="classPxConstraint.html#e0842055f2c3263cebcea65b1b09888e">PxConstraint</a>
, <a class="el" href="classPxScene.html#e2ad69311278772a479950d0c73f0b75">PxScene</a>
, <a class="el" href="classPxJoint.html#744ebe07ff38e08fa0497155b891cfb3">PxJoint</a>
<li>getAggregate()
: <a class="el" href="classPxActor.html#aedfdd3e9acc77afc2fc0ba51d968876">PxActor</a>
, <a class="el" href="classPxArticulation.html#b8c30bf0858be5f35f5e18c10e19ea85">PxArticulation</a>
<li>getAggregates()
: <a class="el" href="classPxScene.html#f25335de0c6012d9a5d7e78c8272824e">PxScene</a>
<li>getAllocatorCallback()
: <a class="el" href="classPxFoundation.html#8e4381d58ae863b36f53dded4bf694c9">PxFoundation</a>
<li>getAnalogAccel()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#113b65f52b804b2fcbf09f27564ae4a2">PxVehicleDrive4WRawInputData</a>
, <a class="el" href="classPxVehicleDriveTankRawInputData.html#6078ac6b35c95f95cc0dbfab948250f4">PxVehicleDriveTankRawInputData</a>
<li>getAnalogBrake()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#6ccf85b658559aefe82560447d268764">PxVehicleDrive4WRawInputData</a>
<li>getAnalogHandbrake()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#ee4a5958355532e42ccf1d2772ec2806">PxVehicleDrive4WRawInputData</a>
<li>getAnalogInput()
: <a class="el" href="classPxVehicleDriveDynData.html#9e1607b3b32f31cce5ac247e4bd485cb">PxVehicleDriveDynData</a>
<li>getAnalogLeftBrake()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#ae05007e9b483191c7bf37768fe6e14e">PxVehicleDriveTankRawInputData</a>
<li>getAnalogLeftThrust()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#b4113d30c76e8b7556209f4a719c0f8a">PxVehicleDriveTankRawInputData</a>
<li>getAnalogRightBrake()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#fa35fad1442fa356a9b09fec3f3046c6">PxVehicleDriveTankRawInputData</a>
<li>getAnalogRightThrust()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#3009c38f0756180c82f5a9409ccb41a3">PxVehicleDriveTankRawInputData</a>
<li>getAnalogSteer()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#31438cd1c56e347123c187d43a7bc156">PxVehicleDrive4WRawInputData</a>
<li>getAngle()
: <a class="el" href="classPxQuat.html#c77bec66cbe4760a4bffbcd51c495253">PxQuat</a>
, <a class="el" href="classPxRevoluteJoint.html#7e4c3117eb1b97059d3449abb34717c1">PxRevoluteJoint</a>
, <a class="el" href="classPxQuat.html#f625481b6f1431bef8eefcc22f2497de">PxQuat</a>
<li>getAngularDamping()
: <a class="el" href="classPxRigidDynamic.html#7a617db7f7c8e887d8e128956e04ba4a">PxRigidDynamic</a>
<li>getAngularDragCoefficient()
: <a class="el" href="classPxCloth.html#ae233347835d6e759975be9d0ec9136a">PxCloth</a>
<li>getAngularInertiaScale()
: <a class="el" href="classPxCloth.html#0cf0f1e63aac53b775a7ce07063898b7">PxCloth</a>
<li>getAngularVelocity()
: <a class="el" href="classPxRigidBody.html#f91b92d6fcf47103b148337749aa93e0">PxRigidBody</a>
<li>getAntiRollBarData()
: <a class="el" href="classPxVehicleWheelsSimData.html#e58197bf524aeff47732e1a4a3201493">PxVehicleWheelsSimData</a>
<li>getAnyHit()
: <a class="el" href="structPxBatchQueryResult.html#7ec0ebeebc65930db22f2c2cdd7af6ce">PxBatchQueryResult< HitType ></a>
, <a class="el" href="structPxHitBuffer.html#03c5d03b908348194193456ae29be988">PxHitBuffer< HitType ></a>
<li>getArticulation()
: <a class="el" href="classPxArticulationLink.html#0cae4ea794e1f58b0f067c93fd6859e0">PxArticulationLink</a>
<li>getArticulations()
: <a class="el" href="classPxScene.html#eca9cb7d9353559e214a51a599e28a85">PxScene</a>
<li>getAutoBoxData()
: <a class="el" href="classPxVehicleDriveSimData.html#014dbcd5155e19f6c9a50216ca27d542">PxVehicleDriveSimData</a>
<li>getAutoBoxSwitchTime()
: <a class="el" href="classPxVehicleDriveDynData.html#e6a6856cf2a23722629bb25bdcee3ace">PxVehicleDriveDynData</a>
<li>getBaseFlags()
: <a class="el" href="classPxBase.html#042c1c7315883506ae893dd8cdce4b02">PxBase</a>
<li>getBasis()
: <a class="el" href="classPxMat44.html#3977a1a791efa365eacf737430ac22fe">PxMat44</a>
<li>getBasisVector0()
: <a class="el" href="classPxQuat.html#609e8019db1d8d8ae1e007e160f5e4f6">PxQuat</a>
<li>getBasisVector1()
: <a class="el" href="classPxQuat.html#1f4c3fff7fffc8694d04298f36696b82">PxQuat</a>
<li>getBasisVector2()
: <a class="el" href="classPxQuat.html#4b77458e75985b09bce8a933e83193c5">PxQuat</a>
<li>getBehaviorFlags()
: <a class="el" href="classPxControllerBehaviorCallback.html#f1cac5db44edb432053ae94b141a4150">PxControllerBehaviorCallback</a>
<li>getBinaryMetaData()
: <a class="el" href="classPxJoint.html#373b38ccd4aff8671b5b17761b73af1b">PxJoint</a>
, <a class="el" href="classPxVehicleDriveSimData.html#5a3f6a35f390ed5a87fc56e31d656db0">PxVehicleDriveSimData</a>
, <a class="el" href="classPxVehicleDrive.html#470aa1489a7b10ac9a1c13ee0d374633">PxVehicleDrive</a>
, <a class="el" href="classPxVehicleDriveSimData4W.html#fdfd16778fc3f905ecef5552697af8e1">PxVehicleDriveSimData4W</a>
, <a class="el" href="classPxVehicleDrive4W.html#2e380dc9ed111550b8919f3703137450">PxVehicleDrive4W</a>
, <a class="el" href="classPxVehicleDriveSimDataNW.html#4959c6eac11de4bc4b5cfe1b4af6a45f">PxVehicleDriveSimDataNW</a>
, <a class="el" href="classPxVehicleDriveNW.html#b8e814ba9f15f49fbd5fa86bf5d1c558">PxVehicleDriveNW</a>
, <a class="el" href="classPxVehicleDriveTank.html#494d6b5262d3258b0d3a28ef2ed96a05">PxVehicleDriveTank</a>
, <a class="el" href="classPxVehicleNoDrive.html#16af423cd6596b6f03201bc3d271f7b9">PxVehicleNoDrive</a>
, <a class="el" href="classPxVehicleWheelsSimData.html#ab3d21ee63effbae8e311bb3efac0a8f">PxVehicleWheelsSimData</a>
, <a class="el" href="classPxVehicleWheelsDynData.html#2334f46dee346d2f3643cad7836ef4d9">PxVehicleWheelsDynData</a>
, <a class="el" href="classPxVehicleWheels.html#67267b846436dbee2998271a5ec84a47">PxVehicleWheels</a>
<li>getBinaryMetaData_PxBase
: <a class="el" href="classPxBase.html#5724abde801824dbe5086f7fd3652908">PxBase</a>
<li>getBounceThresholdVelocity()
: <a class="el" href="classPxScene.html#36f1319b6695b33823529924f389ca3e">PxScene</a>
<li>getBoxGeometry()
: <a class="el" href="classPxShape.html#e4fe68bfc7be057dae8d0c3eac5a725c">PxShape</a>
<li>getBrakeTorque()
: <a class="el" href="classPxVehicleNoDrive.html#7e0c75f0520b2558ee0801409c9eb86e">PxVehicleNoDrive</a>
<li>getBreakForce()
: <a class="el" href="classPxConstraint.html#9b0da09475c44c2957e1dd6c7fb91ab1">PxConstraint</a>
, <a class="el" href="classPxJoint.html#900aa5084125aa37f8d12bb9f37eab93">PxJoint</a>
<li>getBroadPhaseCallback()
: <a class="el" href="classPxScene.html#3823d25fc80ebe53c1c02cef57115b06">PxScene</a>
<li>getBroadPhaseCaps()
: <a class="el" href="classPxScene.html#670748d0b132b7360d76188c2b5262c9">PxScene</a>
<li>getBroadPhaseRegions()
: <a class="el" href="classPxScene.html#78c78c1d47c7a3ab9ee234032c438d36">PxScene</a>
<li>getBroadPhaseType()
: <a class="el" href="classPxScene.html#5ac224256bfbe7380ea3dad4dc6dac06">PxScene</a>
<li>getCacheVolume()
: <a class="el" href="classPxVolumeCache.html#31f69209809698ad305b9ae29b5d2366">PxVolumeCache</a>
<li>getCapsuleGeometry()
: <a class="el" href="classPxShape.html#8515335ab379ef0709b083ea09ce0a00">PxShape</a>
<li>getCCDContactModifyCallback()
: <a class="el" href="classPxScene.html#952ff4e7b46ff4d3396195e65cd494e6">PxScene</a>
<li>getCCDMaxPasses()
: <a class="el" href="classPxScene.html#b0033036e31f91c68d520185ef6c1703">PxScene</a>
<li>getCenter()
: <a class="el" href="group__foundation.html#ga1eacc6e874bc9a1967655f198194a92">PxBounds3</a>
<li>getCentrifugalInertiaScale()
: <a class="el" href="classPxCloth.html#4eecbfbe49c626c9f8f7bca7bffe1fd4">PxCloth</a>
<li>getChildPose()
: <a class="el" href="classPxArticulationJoint.html#94dddfaaa11c43955f1e7a4169c2c54e">PxArticulationJoint</a>
<li>getChildren()
: <a class="el" href="classPxArticulationLink.html#5dbcccba26235112aa4dbb0d11466f12">PxArticulationLink</a>
<li>getClassSize()
: <a class="el" href="classPxSerializer.html#b293fa6c552244823bbb9ab79ab3dcae">PxSerializer</a>
, <a class="el" href="classPxSerializerDefaultAdapter.html#4b95fe59d75cd8482d74211c1844ce19">PxSerializerDefaultAdapter< T ></a>
<li>getClientBehaviorFlags()
: <a class="el" href="classPxActor.html#aa4982d615ec8f9437319e267b50cab7">PxActor</a>
, <a class="el" href="classPxScene.html#8259c90c79fb69ee62e9434eb35e0f37">PxScene</a>
<li>getClientInternal()
: <a class="el" href="classPxPvdSceneClient.html#e1b5736b5b44f33705a406411e3926d2">PxPvdSceneClient</a>
<li>getClimbingMode()
: <a class="el" href="classPxCapsuleController.html#68225dcdb5577d623a0fa5250de40f0b">PxCapsuleController</a>
<li>getClothFabrics()
: <a class="el" href="classPxPhysics.html#b66ea589cfffdd5948771b885f2121ad">PxPhysics</a>
<li>getClothFlags()
: <a class="el" href="classPxCloth.html#d443004ddc575a974312ce9ad8104878">PxCloth</a>
<li>getClothInterCollisionDistance()
: <a class="el" href="classPxScene.html#b31964586c71755fb261a879435655fb">PxScene</a>
<li>getClothInterCollisionNbIterations()
: <a class="el" href="classPxScene.html#605049c3cc13532d47803ba5303ce326">PxScene</a>
<li>getClothInterCollisionStiffness()
: <a class="el" href="classPxScene.html#3f8880466c56bedbc2cd9f96f24e8331">PxScene</a>
<li>getClutchData()
: <a class="el" href="classPxVehicleDriveSimData.html#20083db6949151eb109449cdbb341735">PxVehicleDriveSimData</a>
<li>getCMassLocalPose()
: <a class="el" href="classPxRigidBody.html#afdbdab1865112b15201aeabb23877b4">PxRigidBody</a>
<li>getCollection()
: <a class="el" href="classPxSerializationContext.html#acf1647853d5b3cede4763f667449bb1">PxSerializationContext</a>
<li>getCollisionData()
: <a class="el" href="classPxCloth.html#90fc917b9769a1f9f55ec4be4fd10291">PxCloth</a>
<li>getCollisionMassScale()
: <a class="el" href="classPxCloth.html#7bc5a686a7102e2e05959a9706453d1c">PxCloth</a>
<li>getConcreteType()
: <a class="el" href="classPxBase.html#4bea698ef56feb6ea7297bfbb21cbd14">PxBase</a>
<li>getConcreteTypeName()
: <a class="el" href="classPxVehicleDriveTank.html#652ac24e585fd9bde8a95a524113d499">PxVehicleDriveTank</a>
, <a class="el" href="classPxVehicleNoDrive.html#6e5503e7a2d85964bdebce938c3c082b">PxVehicleNoDrive</a>
, <a class="el" href="classPxVehicleWheels.html#ba71aed284017a9b51165ea2c385f917">PxVehicleWheels</a>
, <a class="el" href="classPxAggregate.html#d93b769087546b1a96ba0302b6b52cd7">PxAggregate</a>
, <a class="el" href="classPxArticulation.html#7cbe2a99ed02a02156011a69d4830355">PxArticulation</a>
, <a class="el" href="classPxArticulationJoint.html#0ec72415d78f1148731de1d9a65a7ab4">PxArticulationJoint</a>
, <a class="el" href="classPxArticulationLink.html#961fcb6a9fd40040292a71d37aa02c26">PxArticulationLink</a>
, <a class="el" href="classPxConstraint.html#4bd4ab732d811b1d4fc7fa84e686ab66">PxConstraint</a>
, <a class="el" href="classPxMaterial.html#1a6bbe6443abf57f9b81104cae070e4c">PxMaterial</a>
, <a class="el" href="classPxPruningStructure.html#d3dd642b3521f1ddec760bb1f41b2f7d">PxPruningStructure</a>
, <a class="el" href="classPxRigidDynamic.html#8402fd801e4ce9f6ee2a1fb3e80721dc">PxRigidDynamic</a>
, <a class="el" href="classPxRigidStatic.html#2789a9fb8953f1d363b9fb9a875610ac">PxRigidStatic</a>
, <a class="el" href="classPxShape.html#534106ef0a978dfb710a6b8e7c9443bd">PxShape</a>
, <a class="el" href="classPxCloth.html#4b1985f12f2808ca0fcdabb5759a9303">PxCloth</a>
, <a class="el" href="classPxClothFabric.html#c20c77d7608c6834056d8e5ae16f87e9">PxClothFabric</a>
, <a class="el" href="classPxBase.html#67fe206d8897ddce896c371ac8d789a9">PxBase</a>
, <a class="el" href="classPxSerializer.html#b419390747f92b7f44c2bcb6d020096d">PxSerializer</a>
, <a class="el" href="classPxSerializerDefaultAdapter.html#eb03db4d0c9703af533696978aa72a27">PxSerializerDefaultAdapter< T ></a>
, <a class="el" href="classPxD6Joint.html#2fc045aaccd034b0cc8654b3f6848767">PxD6Joint</a>
, <a class="el" href="classPxDistanceJoint.html#25ea84cb332b384dba0211731f392c2e">PxDistanceJoint</a>
, <a class="el" href="classPxFixedJoint.html#5051abbe778feecbc83c720002657c3e">PxFixedJoint</a>
, <a class="el" href="classPxPrismaticJoint.html#cb93acd1e07a8dfbd49b78651b8d17e0">PxPrismaticJoint</a>
, <a class="el" href="classPxRevoluteJoint.html#bfa1e969227e5e8cebccf9d5acb103ca">PxRevoluteJoint</a>
, <a class="el" href="classPxSphericalJoint.html#33bc9866342c10b633dffff5536d17ee">PxSphericalJoint</a>
, <a class="el" href="classPxConvexMesh.html#b2586810d7be96cc4f58ad95ff27b775">PxConvexMesh</a>
, <a class="el" href="classPxHeightField.html#c266359903e8e4d9f9c6af37804a32fc">PxHeightField</a>
, <a class="el" href="classPxParticleFluid.html#1ed3457d33695b2bc6742ea45e2d99e9">PxParticleFluid</a>
, <a class="el" href="classPxParticleSystem.html#d01ae909bd27f8ef569114652a21170f">PxParticleSystem</a>
, <a class="el" href="classPxVehicleDrive.html#17195d04ae142a150f66d4b8fdee87ed">PxVehicleDrive</a>
, <a class="el" href="classPxVehicleDrive4W.html#f869349c277182e9c43078d19580dc81">PxVehicleDrive4W</a>
, <a class="el" href="classPxVehicleDriveNW.html#ee409a04d9642841d1c58c0edd475686">PxVehicleDriveNW</a>
<li>getConjugate()
: <a class="el" href="classPxQuat.html#a4418a046f8851753a23a375515b0614">PxQuat</a>
<li>getConstantBlock()
: <a class="el" href="classPxConstraintConnector.html#7a93655be259791a2eaf2a7d857c598d">PxConstraintConnector</a>
<li>getConstraint()
: <a class="el" href="classPxJoint.html#eedb92e5f7954e07a9fc5c454b1a67e8">PxJoint</a>
<li>getConstraintFlags()
: <a class="el" href="classPxJoint.html#1da1a62c8aa565a92ff25c83825d1657">PxJoint</a>
<li>getConstraints()
: <a class="el" href="classPxRigidActor.html#c88777d5457f87247f5625094eb2be57">PxRigidActor</a>
, <a class="el" href="classPxScene.html#1e9919abdfb23495a84f47c5157a67b1">PxScene</a>
<li>getContactModifyCallback()
: <a class="el" href="classPxScene.html#1978693b355df49712d7e59c10c4115d">PxScene</a>
<li>getContactNormal()
: <a class="el" href="structPxContactStreamIterator.html#43a9866f464b2b05520f9e60c2635159">PxContactStreamIterator</a>
<li>getContactOffset()
: <a class="el" href="classPxShape.html#3f0686821f3f8fe92103e31c293f118b">PxShape</a>
, <a class="el" href="classPxController.html#836a426813b11552b4dfb481e0ba576f">PxController</a>
, <a class="el" href="classPxCloth.html#c1a3210b12403cd8717dfc2198ee9b50">PxCloth</a>
, <a class="el" href="classPxParticleBase.html#743ec105fe0fb589030466165282db70">PxParticleBase</a>
<li>getContactPatch()
: <a class="el" href="structPxContactStreamIterator.html#12189ea8231388bf3c7f248728f2de64">PxContactStreamIterator</a>
<li>getContactPoint()
: <a class="el" href="structPxContactStreamIterator.html#d50e5c8e8f815416304cbaced1ed3980">PxContactStreamIterator</a>
<li>getContactReportStreamBufferSize()
: <a class="el" href="classPxScene.html#c7b1dccad5d20304653f21c91b09258a">PxScene</a>
<li>getContactReportThreshold()
: <a class="el" href="classPxRigidDynamic.html#cc91baffa652090e523df5e6627686ed">PxRigidDynamic</a>
<li>getContextId()
: <a class="el" href="classphysx_1_1PxBaseTask.html#009e71e6c6274132392817f0e57716a0">physx::PxBaseTask</a>
<li>getContinuation()
: <a class="el" href="classphysx_1_1PxLightCpuTask.html#9896fbb4bbc97517e6ffb73749b6845e">physx::PxLightCpuTask</a>
<li>getController()
: <a class="el" href="classPxControllerManager.html#42359d7248cfdf2b4722a8d4653394b5">PxControllerManager</a>
<li>getControllerManager()
: <a class="el" href="classPxObstacleContext.html#9390f860fb489f283c9f872af2777123">PxObstacleContext</a>
<li>getConvexEdgeThreshold()
: <a class="el" href="classPxHeightField.html#59dfdd62f6c05c83f02bead7dad78ad8">PxHeightField</a>
<li>getConvexMeshes()
: <a class="el" href="classPxPhysics.html#f842c37b9e11bf180465452e8dacfc06">PxPhysics</a>
<li>getConvexMeshGeometry()
: <a class="el" href="classPxShape.html#80bed1030a3740c7d033f65d97ee2ec4">PxShape</a>
<li>getCookerStatus()
: <a class="el" href="classPxClothGeodesicTetherCooker.html#1f14f389b1608132be8a1e629df57bba">PxClothGeodesicTetherCooker</a>
<li>getCpuDispatcher()
: <a class="el" href="classPxScene.html#6329c94cc092aff2193c1307e033f6bf">PxScene</a>
, <a class="el" href="classphysx_1_1PxTaskManager.html#4d68c14745bfd85c745b58528b39db26">physx::PxTaskManager</a>
<li>getCudaContextManager()
: <a class="el" href="classphysx_1_1PxGpuDispatcher.html#d903de1449d82e6d9e51f610711f74d9">physx::PxGpuDispatcher</a>
<li>getCurrentGear()
: <a class="el" href="classPxVehicleDriveDynData.html#1a9d80dceea05c123f48141a8b45de82">PxVehicleDriveDynData</a>
<li>getDamping()
: <a class="el" href="classPxArticulationJoint.html#153604ccd3174c8bb417dc83a06bf2da">PxArticulationJoint</a>
, <a class="el" href="classPxDistanceJoint.html#f4e9269585bc01a804ac439d24ad157b">PxDistanceJoint</a>
, <a class="el" href="classPxParticleBase.html#edf534fec3c9ca3008e8eebb718d91bf">PxParticleBase</a>
<li>getDampingCoefficient()
: <a class="el" href="classPxCloth.html#4521c5954e4861c4adad736fea4614a8">PxCloth</a>
<li>getData()
: <a class="el" href="classPxDefaultMemoryOutputStream.html#ac3810ed0a79753c8a57a1e2e2100429">PxDefaultMemoryOutputStream</a>
<li>getDataAccessFlags()
: <a class="el" href="classPxLockedData.html#1393e474dbe1cc8a430b12330ee31e32">PxLockedData</a>
, <a class="el" href="classPxParticleReadData.html#5546ee6b23523d62cfba4c524cb5af5e">PxParticleReadData</a>
<li>getDenominator()
: <a class="el" href="classPxVehicleTireLoadFilterData.html#effc037138b03c68e35febcf98113e3b">PxVehicleTireLoadFilterData</a>
<li>getDescriptor()
: <a class="el" href="classPxClothFabricCooker.html#041888e50a3dcd31130ea63443696deb">PxClothFabricCooker</a>
, <a class="el" href="classPxClothMeshQuadifier.html#4013712e460afb8411a1083ce85c54d7">PxClothMeshQuadifier</a>
<li>getDeterminant()
: <a class="el" href="classPxMat33.html#3222f01a0b2ebdd8257a6d5ef00939f2">PxMat33</a>
<li>getDiffData()
: <a class="el" href="classPxVehicleDriveSimData4W.html#5fed6583be837a24605373d155b8170a">PxVehicleDriveSimData4W</a>
, <a class="el" href="classPxVehicleDriveSimDataNW.html#7e07804fb1a62653fdf576fa4f161e28">PxVehicleDriveSimDataNW</a>
<li>getDigitalAccel()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#7260006a82e095684a67a8d61b659ca0">PxVehicleDrive4WRawInputData</a>
, <a class="el" href="classPxVehicleDriveTankRawInputData.html#e6a26904d3cd2d5e1c39e9752ba0804e">PxVehicleDriveTankRawInputData</a>
<li>getDigitalBrake()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#dc60fbd2cf0b7c7e2e04edf1ba588a3e">PxVehicleDrive4WRawInputData</a>
<li>getDigitalHandbrake()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#47be0b2dc9896a8ee5190e0f22be9741">PxVehicleDrive4WRawInputData</a>
<li>getDigitalLeftBrake()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#8d326fb6498b7a3085317a4988be03f3">PxVehicleDriveTankRawInputData</a>
<li>getDigitalLeftThrust()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#60cf4e06d3cbd70a082d18391603e5b1">PxVehicleDriveTankRawInputData</a>
<li>getDigitalRightBrake()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#1ff86b659563250200b9f497cdbb9358">PxVehicleDriveTankRawInputData</a>
<li>getDigitalRightThrust()
: <a class="el" href="classPxVehicleDriveTankRawInputData.html#a00292654adbeac8a69856ebe97ac5ea">PxVehicleDriveTankRawInputData</a>
<li>getDigitalSteerLeft()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#46c34ccbe5847bb3d19ee28a3090f472">PxVehicleDrive4WRawInputData</a>
<li>getDigitalSteerRight()
: <a class="el" href="classPxVehicleDrive4WRawInputData.html#b2a9a88dc9e2e27eee564b46b3c76716">PxVehicleDrive4WRawInputData</a>
<li>getDimensions()
: <a class="el" href="group__foundation.html#gb057bb914d26e244212a51f290d0468e">PxBounds3</a>
<li>getDistance()
: <a class="el" href="classPxDistanceJoint.html#8c8b00c006fb57d2da329794f38a14eb">PxDistanceJoint</a>
<li>getDistanceJointFlags()
: <a class="el" href="classPxDistanceJoint.html#0f19fad4431d8194f1fed43095a0159a">PxDistanceJoint</a>
<li>getDominanceGroup()
: <a class="el" href="classPxActor.html#24602fee489b3e797ff0f82613eef755">PxActor</a>
<li>getDominanceGroupPair()
: <a class="el" href="classPxScene.html#951ada59fff16e5c860ccdd5f6d5a1f3">PxScene</a>
<li>getDownRatios()
: <a class="el" href="classPxVehicleAutoBoxData.html#4fb7d21937add9a843d54eed3161f3c8">PxVehicleAutoBoxData</a>
<li>getDrive()
: <a class="el" href="classPxD6Joint.html#bcafdd8e465cac74e3f1b4770e9e1373">PxD6Joint</a>
<li>getDriveForceLimit()
: <a class="el" href="classPxRevoluteJoint.html#8a6c960014b8e195d8e10dfb31d7c380">PxRevoluteJoint</a>
<li>getDriveGearRatio()
: <a class="el" href="classPxRevoluteJoint.html#3961b220301a885c1efd3cd9181b8daf">PxRevoluteJoint</a>
<li>getDriveModel()
: <a class="el" href="classPxVehicleDriveTank.html#746c74417612d45e3e0ed3e7cadb7331">PxVehicleDriveTank</a>
, <a class="el" href="classPxVehicleDriveTankRawInputData.html#df5d2c7f7bc140ff9a6bf1dbb4d4dcd5">PxVehicleDriveTankRawInputData</a>
<li>getDrivenWheelStatus()
: <a class="el" href="classPxVehicleDifferentialNWData.html#fdbdba4ebebfa67f63a0fe2244125ebf">PxVehicleDifferentialNWData</a>
<li>getDrivePosition()
: <a class="el" href="classPxD6Joint.html#cffd2ae67bab2eae2b03be5c57ae564a">PxD6Joint</a>
<li>getDriveTorque()
: <a class="el" href="classPxVehicleNoDrive.html#e0eec2c20debe39466b57744390aea0d">PxVehicleNoDrive</a>
<li>getDriveType()
: <a class="el" href="classPxArticulationJoint.html#4ce41d3bb9b9431cc9c7befa5be8047b">PxArticulationJoint</a>
<li>getDriveVelocity()
: <a class="el" href="classPxD6Joint.html#caebc6c005a26fbbba5faa65721e9269">PxD6Joint</a>
, <a class="el" href="classPxRevoluteJoint.html#69f16a45c44381419b802ab2efc4a3c9">PxRevoluteJoint</a>
<li>getDynamicFriction()
: <a class="el" href="structPxContactStreamIterator.html#d79b7ca12187d9e9b9488eb4adcc8340">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#70f975199ee66a0df4bf037cc8e10f3c">PxContactSet</a>
, <a class="el" href="classPxMaterial.html#fc25f357ba1de24c8b98b22f94153d3d">PxMaterial</a>
, <a class="el" href="classPxParticleBase.html#266449d2ac89ed540deeb7187ba59696">PxParticleBase</a>
<li>getDynamicStructure()
: <a class="el" href="classPxScene.html#0c756c7ad50f94675d3d8ff9ac12289b">PxScene</a>
<li>getDynamicTreeRebuildRateHint()
: <a class="el" href="classPxScene.html#e220420fdd08f0dabee8b30f5ef2de68">PxScene</a>
<li>getEndianMode()
: <a class="el" href="classPxFileBuf.html#b4ed3ad02b31b227c3d6f250aba56f79">PxFileBuf</a>
<li>getEngineData()
: <a class="el" href="classPxVehicleDriveSimData.html#6305416e18cc7e42e4cae983bb8706d7">PxVehicleDriveSimData</a>
<li>getEngineRotationSpeed()
: <a class="el" href="classPxVehicleDriveDynData.html#f01674e16ef7ab5191da7ee30039bee9">PxVehicleDriveDynData</a>
<li>getErrorCallback()
: <a class="el" href="classPxFoundation.html#a7c4f39a69dc0a64735af1d02c021c0f">PxFoundation</a>
<li>getErrorLevel()
: <a class="el" href="classPxFoundation.html#e44c51d4547f4437dbcaf3db68b16bac">PxFoundation</a>
<li>getExtendedContact()
: <a class="el" href="structPxContactStreamIterator.html#0691a829eaecbf57be60ae111dfaa91a">PxContactStreamIterator</a>
<li>getExtents()
: <a class="el" href="group__foundation.html#g582bed0f2c3a0a8dfab77e02249feea0">PxBounds3</a>
<li>getExternalAcceleration()
: <a class="el" href="classPxCloth.html#acb78011d32b247defaafd0c0f4549d8">PxCloth</a>
, <a class="el" href="classPxParticleBase.html#7e39c7791bf865d3a12582068ffd997e">PxParticleBase</a>
<li>getExternalCompliance()
: <a class="el" href="classPxArticulationJoint.html#69ecdfb49624645217280df2430009e5">PxArticulationJoint</a>
<li>getExternalDriveIterations()
: <a class="el" href="classPxArticulation.html#563b2f0279522377f86d7947d790e31f">PxArticulation</a>
<li>getExternalReference()
: <a class="el" href="classPxConstraint.html#c35d572c4d343685c120f11c8884526e">PxConstraint</a>
, <a class="el" href="classPxConstraintConnector.html#1210c94b5fa0513b2cd99ceedccd23ee">PxConstraintConnector</a>
<li>getFabric()
: <a class="el" href="classPxCloth.html#86d652836f7ea8fff1ee8d28daf38769">PxCloth</a>
<li>getFaceIndex0()
: <a class="el" href="structPxContactStreamIterator.html#397e7782437534dd5183b57717f24a4a">PxContactStreamIterator</a>
<li>getFaceIndex1()
: <a class="el" href="structPxContactStreamIterator.html#777a6870286e1eddcc5e9f8cca93b90b">PxContactStreamIterator</a>
<li>getFileLength()
: <a class="el" href="classPxFileBuf.html#7b48571dd85bcdcb138fe8f000596921">PxFileBuf</a>
<li>getFilterCallback()
: <a class="el" href="classPxScene.html#2b4c17b1a16df239e5d6a2e0e6f8b633">PxScene</a>
<li>getFilterShader()
: <a class="el" href="classPxScene.html#a3f57314433de21448966c1d9004d71a">PxScene</a>
<li>getFilterShaderData()
: <a class="el" href="classPxBatchQuery.html#279f956d9c09cb6d0b59ff5103982c37">PxBatchQuery</a>
, <a class="el" href="classPxScene.html#5d004fdc88ed31447aa57ee4f98c14ea">PxScene</a>
<li>getFilterShaderDataSize()
: <a class="el" href="classPxBatchQuery.html#7213f11f610f088b8d98a075c795d61a">PxBatchQuery</a>
, <a class="el" href="classPxScene.html#ce291f68b365a4f1aaa291ba940eff9a">PxScene</a>
<li>getFlags()
: <a class="el" href="classPxConstraint.html#45297b7f2310005fd74f3e7be995b0f8">PxConstraint</a>
, <a class="el" href="classPxMaterial.html#f8fca7a3079e8da26c8275a9fe3ce635">PxMaterial</a>
, <a class="el" href="classPxScene.html#0acbc97457d54775b6402f3790c3513b">PxScene</a>
, <a class="el" href="classPxShape.html#cd44b1c761c14e6319475797ec4f9715">PxShape</a>
, <a class="el" href="classPxHeightField.html#30f6798a40d3f1dad7bf79bae941e082">PxHeightField</a>
<li>getFootPosition()
: <a class="el" href="classPxController.html#401af38fab565432d05b87112b26b816">PxController</a>
<li>getForce()
: <a class="el" href="classPxConstraint.html#5838f1118a15b32ca27a6b89e6580cf4">PxConstraint</a>
<li>getFormat()
: <a class="el" href="classPxHeightField.html#99d233a5a8ab9a835b5b2fd2115d639e">PxHeightField</a>
<li>getFoundation()
: <a class="el" href="classPxPhysics.html#1c2899065d7b3d9367a409b0207848cc">PxPhysics</a>
<li>getFrictionCoefficient()
: <a class="el" href="classPxCloth.html#6e46a78d946c97990f6b430f4d955b65">PxCloth</a>
<li>getFrictionCombineMode()
: <a class="el" href="classPxMaterial.html#0d97b1335e367b8f27f32f6c3766f5a8">PxMaterial</a>
<li>getFrictionOffsetThreshold()
: <a class="el" href="classPxScene.html#c02554e87f89db490aca6803056db522">PxScene</a>
<li>getFrictionType()
: <a class="el" href="classPxScene.html#aca4a2838bc3bf7ffece380c8c7f0f4e">PxScene</a>
<li>getFrictionVsSlipGraphRecipx1Minusx0()
: <a class="el" href="classPxVehicleTireData.html#80027d305819f6805bf73eb47d5b9be7">PxVehicleTireData</a>
<li>getFrictionVsSlipGraphRecipx2Minusx1()
: <a class="el" href="classPxVehicleTireData.html#f317498c9bf064a14e1856288280e145">PxVehicleTireData</a>
<li>getGearChange()
: <a class="el" href="classPxVehicleDriveDynData.html#3f11bc29a393ef9ff3afe79b6996479c">PxVehicleDriveDynData</a>
<li>getGearDown()
: <a class="el" href="classPxVehicleDriveDynData.html#f5e79dc6ba1b1c291eb3d97914efb919">PxVehicleDriveDynData</a>
, <a class="el" href="classPxVehicleDrive4WRawInputData.html#444d9d72caacb7acc9915e0a1483ab33">PxVehicleDrive4WRawInputData</a>
, <a class="el" href="classPxVehicleDriveTankRawInputData.html#00d1f68f351ee457f611968a133516b0">PxVehicleDriveTankRawInputData</a>
<li>getGearRatio()
: <a class="el" href="classPxVehicleGearsData.html#da8113986493d8a108703b03bb04ab04">PxVehicleGearsData</a>
<li>getGearsData()
: <a class="el" href="classPxVehicleDriveSimData.html#026df104f2684e97efffa1ed24ed1667">PxVehicleDriveSimData</a>
<li>getGearSwitchTime()
: <a class="el" href="classPxVehicleDriveDynData.html#58fc433985580dceb7e8b2b6df825c58">PxVehicleDriveDynData</a>
<li>getGearUp()
: <a class="el" href="classPxVehicleDriveDynData.html#ba646ba5446cc67060513464c4d26ee0">PxVehicleDriveDynData</a>
, <a class="el" href="classPxVehicleDrive4WRawInputData.html#5e0adcf4ed339a4bf76532fd9b5982bd">PxVehicleDrive4WRawInputData</a>
, <a class="el" href="classPxVehicleDriveTankRawInputData.html#f1ca18c9296a6a62ecf16b3893674c99">PxVehicleDriveTankRawInputData</a>
<li>getGeometry()
: <a class="el" href="classPxShape.html#531b866a02c9dc59131bc9887c065ff8">PxShape</a>
<li>getGeometryType()
: <a class="el" href="classPxShape.html#8365c22a5780649bd890703b3ebc1f20">PxShape</a>
<li>getGlobalPose()
: <a class="el" href="classPxRigidActor.html#6eb5e3d590e6087c930f8141d40de722">PxRigidActor</a>
, <a class="el" href="classPxCloth.html#4f8b8c4e5689dc512d3c980cd6bb56d0">PxCloth</a>
, <a class="el" href="classPxShapeExt.html#df481eb1ae61121027ae6bbf5829f497">PxShapeExt</a>
<li>getGpuDispatcher()
: <a class="el" href="classPxScene.html#256ac6d74578418c446fc5fe1fe95170">PxScene</a>
, <a class="el" href="classphysx_1_1PxTaskManager.html#3b8273fb73c75e7425fd5a0687055641">physx::PxTaskManager</a>
<li>getGravity()
: <a class="el" href="classPxScene.html#6fe48dbf9144be415d63f1d2f3ce0b16">PxScene</a>
<li>getGridSize()
: <a class="el" href="classPxParticleBase.html#18c0ba576f9d7d28b4084e9709794166">PxParticleBase</a>
<li>getHalfForwardExtent()
: <a class="el" href="classPxBoxController.html#ddbaf29dafa43422705e70449a62a8a1">PxBoxController</a>
<li>getHalfHeight()
: <a class="el" href="classPxBoxController.html#25c66f4fabdb4d689bc77aba02f66ebd">PxBoxController</a>
<li>getHalfSideExtent()
: <a class="el" href="classPxBoxController.html#3e1de6ef41ef607c768012530931cb98">PxBoxController</a>
<li>getHeight()
: <a class="el" href="classPxCapsuleController.html#9adfe5950e68450982a07a89b5b0e8ed">PxCapsuleController</a>
, <a class="el" href="classPxHeightField.html#f59483ecc91d83d95a81a95a97657683">PxHeightField</a>
<li>getHeightFieldGeometry()
: <a class="el" href="classPxShape.html#3709d51079c4c809415d31087ebac65b">PxShape</a>
<li>getHeightFields()
: <a class="el" href="classPxPhysics.html#d2470ec4f7a3b36664f92d08c3b42ba7">PxPhysics</a>
<li>getHighForwardSpeedSubStepCount()
: <a class="el" href="classPxVehicleWheelsSimData.html#f576589185601e940e503c6353c98d55">PxVehicleWheelsSimData</a>
<li>getId()
: <a class="el" href="classPxCollection.html#a59a87c2ed2a69552f43c83dcbc3c6e2">PxCollection</a>
<li>getIds()
: <a class="el" href="classPxCollection.html#cd8ba2bfe77bae84d578ff9335f342fd">PxCollection</a>
<li>getImaginaryPart()
: <a class="el" href="classPxQuat.html#f75c924f631c9ae608821a05b9b59a7f">PxQuat</a>
<li>getInboundJoint()
: <a class="el" href="classPxArticulationLink.html#3c7db121e1e104cabfdf5940f8be8818">PxArticulationLink</a>
<li>getIndexBuffer()
: <a class="el" href="classPxConvexMesh.html#97ef9cae4003c691c023884b71caffb0">PxConvexMesh</a>
<li>getInstrumentationFlags()
: <a class="el" href="classPxPvd.html#1824e29488871970252cdc2ed6bc54e5">PxPvd</a>
<li>getInternalCompliance()
: <a class="el" href="classPxArticulationJoint.html#c773f11ee13400595c0392e027f9a0a2">PxArticulationJoint</a>
<li>getInternalDriveIterations()
: <a class="el" href="classPxArticulation.html#6d02a86ad795aaed3e1a2dc6a3d49762">PxArticulation</a>
<li>getInternalFaceIndex0()
: <a class="el" href="classPxContactSet.html#02f160a1a9135d6d7f1e5f77557ce63e">PxContactSet</a>
<li>getInternalFaceIndex1()
: <a class="el" href="classPxContactSet.html#6535e80819a6d2a5bbe38db6aa86684e">PxContactSet</a>
<li>getInternalFaceIndices()
: <a class="el" href="group__physics.html#g305b4df8647fb1ddb2b67918482ec789">PxContactPair</a>
<li>getInverse()
: <a class="el" href="classPxMeshScale.html#b6a550b31ba9d77b00400cbb7126a7b5">PxMeshScale</a>
, <a class="el" href="classPxMat33.html#43f0579a5d59e0dba2693e3e9d980d00">PxMat33</a>
, <a class="el" href="classPxTransform.html#a9eb3fc599b804fd1c803f2312d91a63">PxTransform</a>
<li>getInvInertiaScale0()
: <a class="el" href="structPxContactStreamIterator.html#010a4738bb51b22a140cc940485059f3">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#107184e5d6bbd33e445ca52de23c4016">PxContactSet</a>
, <a class="el" href="classPxJoint.html#84e7520dfde380005d1c09a258602d33">PxJoint</a>
<li>getInvInertiaScale1()
: <a class="el" href="structPxContactStreamIterator.html#e3c7ba1cb35ae52a8247831825747262">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#4ce891dceb271dab78a4d9001de5c95b">PxContactSet</a>
, <a class="el" href="classPxJoint.html#4d2fb184640f84666e2f6198dc6b7e0d">PxJoint</a>
<li>getInvMass()
: <a class="el" href="classPxRigidBody.html#4c82bd72a216c0460887cf94184560bd">PxRigidBody</a>
<li>getInvMassScale0()
: <a class="el" href="structPxContactStreamIterator.html#913753d2df0727e04bc35790c1e0c07f">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#8179bfc84e3433909eb82553ddd9afeb">PxContactSet</a>
, <a class="el" href="classPxJoint.html#f3bcb7920b533cd5911906744ab2f98c">PxJoint</a>
<li>getInvMassScale1()
: <a class="el" href="structPxContactStreamIterator.html#c3fc9b4df9d7be47a4cc11302a35af49">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#23297c2c731c90d482a6553140b3afb6">PxContactSet</a>
, <a class="el" href="classPxJoint.html#36e5f97539fc423389536bbe20d59785">PxJoint</a>
<li>getIsDrivenWheel()
: <a class="el" href="classPxVehicleDifferentialNWData.html#d6ce03b73ade4456d46790901e2ba011">PxVehicleDifferentialNWData</a>
<li>getIsWheelDisabled()
: <a class="el" href="classPxVehicleWheelsSimData.html#94bfd795342d30a24d76ded54fca509a">PxVehicleWheelsSimData</a>
<li>getKinematicTarget()
: <a class="el" href="classPxRigidDynamic.html#3b6ed86370cfd04958ca7e1c637e310b">PxRigidDynamic</a>
<li>getLatency()
: <a class="el" href="classPxVehicleAutoBoxData.html#15e62c013c05a2e492ab81144fb32e5c">PxVehicleAutoBoxData</a>
<li>getLength()
: <a class="el" href="classPxDefaultMemoryInputData.html#5eaf7235ef71a21076d7fd3e9c1217d8">PxDefaultMemoryInputData</a>
, <a class="el" href="classPxDefaultFileInputData.html#a62b6c699d8f741f52e105a44a5ffe2a">PxDefaultFileInputData</a>
, <a class="el" href="classPxInputData.html#bab049ab736da6c5880426f3d977698b">PxInputData</a>
<li>getLimit()
: <a class="el" href="classPxPrismaticJoint.html#89eba64a796788bd9be24c4d85eaf7f9">PxPrismaticJoint</a>
, <a class="el" href="classPxRevoluteJoint.html#11a7d6da9b06c942c67cc8bbfc833bef">PxRevoluteJoint</a>
<li>getLimitCone()
: <a class="el" href="classPxSphericalJoint.html#5c48934f9981180ef691c7914efa9c05">PxSphericalJoint</a>
<li>getLimits()
: <a class="el" href="classPxScene.html#76d9b31b013e4d666e3b5fdea3448887">PxScene</a>
<li>getLinearDamping()
: <a class="el" href="classPxRigidDynamic.html#e59cea37df7d70286dc587a4967f5512">PxRigidDynamic</a>
<li>getLinearDragCoefficient()
: <a class="el" href="classPxCloth.html#c2fc39bb319dc31ac26238c5c1650b42">PxCloth</a>
<li>getLinearInertiaScale()
: <a class="el" href="classPxCloth.html#af17257c98712e8d0d77b9843e883b5f">PxCloth</a>
<li>getLinearLimit()
: <a class="el" href="classPxD6Joint.html#04d34a3dc0963022996402bd30d7043d">PxD6Joint</a>
<li>getLinearVelocity()
: <a class="el" href="classPxRigidBody.html#04bab22deecb716e2cdd7a64b5cfaee7">PxRigidBody</a>
<li>getLines()
: <a class="el" href="classPxRenderBuffer.html#48683764dfb58f5b79693ec267790bb2">PxRenderBuffer</a>
<li>getLinks()
: <a class="el" href="classPxArticulation.html#62e84e4ee52202ec0812f0258541e777">PxArticulation</a>
<li>getLocalBounds()
: <a class="el" href="classPxConvexMesh.html#288d742ed2fee5c7681fbf5ee6f30f02">PxConvexMesh</a>
, <a class="el" href="classPxTriangleMesh.html#fe5283d82a46081bae3ef7c7132b64ec">PxTriangleMesh</a>
<li>getLocalPose()
: <a class="el" href="classPxShape.html#f455638230d515adbfb561f1064e70a1">PxShape</a>
, <a class="el" href="classPxJoint.html#d13a76df450cf57cfbed486a5359c895">PxJoint</a>
<li>getLocalVelocityAtLocalPos()
: <a class="el" href="classPxRigidBodyExt.html#b79486496528ea623774e7a9b021633d">PxRigidBodyExt</a>
<li>getLowForwardSpeedSubStepCount()
: <a class="el" href="classPxVehicleWheelsSimData.html#d52232fd8db28d26c833c216d387e900">PxVehicleWheelsSimData</a>
<li>getMass()
: <a class="el" href="classPxRigidBody.html#2b1c475ca9cc6aebc168ac58256b7284">PxRigidBody</a>
<li>getMassInformation()
: <a class="el" href="classPxConvexMesh.html#497cea6e1975b9081760afc602985bbc">PxConvexMesh</a>
<li>getMassSpaceInertia()
: <a class="el" href="classPxMassProperties.html#53afd0d4b906ee9d96b23ea0bb41287b">PxMassProperties</a>
<li>getMassSpaceInertiaTensor()
: <a class="el" href="classPxRigidBody.html#063cce94190de44d86a15c1b49dd7f71">PxRigidBody</a>
<li>getMassSpaceInvInertiaTensor()
: <a class="el" href="classPxRigidBody.html#63830b4cd24cd6e5e9f5bb2d6a1d3dc3">PxRigidBody</a>
<li>getMaterialFlags()
: <a class="el" href="structPxContactStreamIterator.html#770d2ae5fd732a91054bdc74342290e6">PxContactStreamIterator</a>
<li>getMaterialFromInternalFaceIndex()
: <a class="el" href="classPxShape.html#77dcd61c00720726ffcce1fe370f0042">PxShape</a>
<li>getMaterialIndex0()
: <a class="el" href="structPxContactStreamIterator.html#f763064bcbbadadcdcb92374f10ef0c6">PxContactStreamIterator</a>
<li>getMaterialIndex1()
: <a class="el" href="structPxContactStreamIterator.html#5d1054f733dbaafcf0e5853e688c4ffb">PxContactStreamIterator</a>
<li>getMaterials()
: <a class="el" href="classPxPhysics.html#1a9cabf0c8c0f11d7eb7e948be2e32b0">PxPhysics</a>
, <a class="el" href="classPxShape.html#dbaf4b32d62babcbab918fc64d4fcae9">PxShape</a>
<li>getMaxAngularVelocity()
: <a class="el" href="classPxRigidDynamic.html#d977d8dc4858f3d5077e8b78f99fa62a">PxRigidDynamic</a>
<li>getMaxContactImpulse()
: <a class="el" href="classPxRigidBody.html#2f9e9e7946ab265013229612aad4c3c7">PxRigidBody</a>
<li>getMaxDepenetrationVelocity()
: <a class="el" href="classPxRigidBody.html#3304d26a39bbdd99dc0ad51d1d99aec4">PxRigidBody</a>
<li>getMaxDistance()
: <a class="el" href="classPxDistanceJoint.html#a3dbd91844fc5129202114b888c92094">PxDistanceJoint</a>
<li>getMaxImpulse()
: <a class="el" href="structPxContactStreamIterator.html#5d728e087210857aa3e06d167f486dcf">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#cfe031fe04223af2e28b026d125a6d41">PxContactSet</a>
<li>getMaxMotionDistance()
: <a class="el" href="classPxParticleBase.html#243ce7ab61aced90ffe823d5cb9f5dfc">PxParticleBase</a>
<li>getMaxNbActors()
: <a class="el" href="classPxAggregate.html#e54ef106d3797674aa08b0d32400c8a3">PxAggregate</a>
<li>getMaxNbContactDataBlocksUsed()
: <a class="el" href="classPxScene.html#a3c625507d5cfaf0f1cb9d26f66be329">PxScene</a>
<li>getMaxNbDynamicShapes()
: <a class="el" href="classPxVolumeCache.html#721bd8c6edc998ad2fd2b113c4acb1a4">PxVolumeCache</a>
<li>getMaxNbStaticShapes()
: <a class="el" href="classPxVolumeCache.html#daf05a6049d5f282069ab2d666fdc911">PxVolumeCache</a>
<li>getMaxNbSurfaceTypes()
: <a class="el" href="classPxVehicleDrivableSurfaceToTireFrictionPairs.html#0bdb2bff5acb5f730374518d20a725f3">PxVehicleDrivableSurfaceToTireFrictionPairs</a>
<li>getMaxNbTireTypes()
: <a class="el" href="classPxVehicleDrivableSurfaceToTireFrictionPairs.html#ba7edfbe72634e61271aaaf5dc9e8a95">PxVehicleDrivableSurfaceToTireFrictionPairs</a>
<li>getMaxNbTouches()
: <a class="el" href="structPxHitBuffer.html#6cd9ee7153cc87849af8b365fa558ee1">PxHitBuffer< HitType ></a>
<li>getMaxOverlapsPerExecute()
: <a class="el" href="structPxBatchQueryMemory.html#e523dd2ef2c496b345025b4590085e6c">PxBatchQueryMemory</a>
<li>getMaxParticles()
: <a class="el" href="classPxParticleBase.html#17ad9d3e2844ae50799e9bd6373eade2">PxParticleBase</a>
<li>getMaxProjectionIterations()
: <a class="el" href="classPxArticulation.html#f3685ff6164f06bec07499a0d1b0336a">PxArticulation</a>
<li>getMaxRaycastsPerExecute()
: <a class="el" href="structPxBatchQueryMemory.html#2ad4bb92877ec0b806899ab27d961e4c">PxBatchQueryMemory</a>
<li>getMaxSweepsPerExecute()
: <a class="el" href="structPxBatchQueryMemory.html#1ed285c23ac6bf41370f5e46cdd433b5">PxBatchQueryMemory</a>
<li>getMinCCDAdvanceCoefficient()
: <a class="el" href="classPxRigidBody.html#bae787a717c8468dbf67345dde14ba85">PxRigidBody</a>
<li>getMinDistance()
: <a class="el" href="classPxDistanceJoint.html#fb07ed620be2f7b24d37e9f46babcbae">PxDistanceJoint</a>
<li>getMinLongSlipDenominator()
: <a class="el" href="classPxVehicleWheelsSimData.html#dd8c487ae1be052234e02bba97db320e">PxVehicleWheelsSimData</a>
<li>getMinResponseThreshold()
: <a class="el" href="classPxConstraint.html#0319884873f5ad2c5e6b6798d6c985a4">PxConstraint</a>
<li>getMotion()
: <a class="el" href="classPxD6Joint.html#8bd1ae81eb92e4dbd2c695fd9d8bfba8">PxD6Joint</a>
<li>getMotionConstraintConfig()
: <a class="el" href="classPxCloth.html#b715b515670e90a2fedc1edeb40d670f">PxCloth</a>
<li>getMotionConstraints()
: <a class="el" href="classPxCloth.html#72f30c6f81d783b734b468c86ba08cb6">PxCloth</a>
<li>getName()
: <a class="el" href="classPxActor.html#1ae86d992066567c5d6bca5fe2dc656e">PxActor</a>
, <a class="el" href="classPxArticulation.html#e10c600444771ea7e29d531b84f3c734">PxArticulation</a>
, <a class="el" href="classPxShape.html#800c362a0a6c6c120525876f56378959">PxShape</a>
, <a class="el" href="classPxJoint.html#c8228ca5462b161b36ca22b9cd99f929">PxJoint</a>
, <a class="el" href="classphysx_1_1PxBaseTask.html#a54eb4a1b50979436a797a62e383efee">physx::PxBaseTask</a>
<li>getNamedTask()
: <a class="el" href="classphysx_1_1PxTaskManager.html#c3b7602900e8f50780d518ab3d0a17d0">physx::PxTaskManager</a>
<li>getNbActors()
: <a class="el" href="classPxAggregate.html#070c8dee88ae92f062417ac5a20a5a64">PxAggregate</a>
, <a class="el" href="classPxScene.html#f44b7f47e3d9332a2fcade3e3f766a5d">PxScene</a>
<li>getNbAggregates()
: <a class="el" href="classPxScene.html#a95c08ef234a55388b297ec657487b69">PxScene</a>
<li>getNbAnalogInput()
: <a class="el" href="classPxVehicleDriveDynData.html#9a88502529a3ddada029d19206c4dc59">PxVehicleDriveDynData</a>
<li>getNbAntiRollBarData()
: <a class="el" href="classPxVehicleWheelsSimData.html#340d7089f2afd28fd3dbfec01810c1ab">PxVehicleWheelsSimData</a>
<li>getNbAntiRollBars()
: <a class="el" href="classPxVehicleWheelsSimData.html#b528cfbacc2d4b71a5f3ba613fb384e2">PxVehicleWheelsSimData</a>
<li>getNbAntiRollBars4()
: <a class="el" href="classPxVehicleWheelsSimData.html#1694623b71b88f49b312fa98646853c8">PxVehicleWheelsSimData</a>
<li>getNbAnyHits()
: <a class="el" href="structPxBatchQueryResult.html#c6a60639763e94b658edf5c3eb4c21aa">PxBatchQueryResult< HitType ></a>
, <a class="el" href="structPxHitBuffer.html#cc1a660048a41387c74d362719669a3f">PxHitBuffer< HitType ></a>
<li>getNbArticulations()
: <a class="el" href="classPxScene.html#b09a3fad6a720283c0a95fe7f76973e4">PxScene</a>
<li>getNbBrakeTorque()
: <a class="el" href="classPxVehicleNoDrive.html#ad5be54068f68819102dca831790db0c">PxVehicleNoDrive</a>
<li>getNbBroadPhaseAdds()
: <a class="el" href="classPxSimulationStatistics.html#4e7028fdf11d3b1fd849cf5bf8e10081">PxSimulationStatistics</a>
<li>getNbBroadPhaseRegions()
: <a class="el" href="classPxScene.html#a531bcd0f349fee87c0c6447869a24cc">PxScene</a>
<li>getNbBroadPhaseRemoves()
: <a class="el" href="classPxSimulationStatistics.html#7db95116b2241e89d3bc17934d801979">PxSimulationStatistics</a>
<li>getNbCachedShapes()
: <a class="el" href="classPxVolumeCache.html#cd8687904f29300ec7a27222f8db50bf">PxVolumeCache</a>
<li>getNbChildren()
: <a class="el" href="classPxArticulationLink.html#fd3fed0c244cb37751aa035cf78c8e2b">PxArticulationLink</a>
<li>getNbClothFabrics()
: <a class="el" href="classPxPhysics.html#5c0990eef79ed840ea0cc88d0f952111">PxPhysics</a>
<li>getNbCollisionCapsules()
: <a class="el" href="classPxCloth.html#daea99e9df2d5628d7435e8a919306f1">PxCloth</a>
<li>getNbCollisionConvexes()
: <a class="el" href="classPxCloth.html#718741d139b994d7c4f2f842e5d9e9e3">PxCloth</a>
<li>getNbCollisionPlanes()
: <a class="el" href="classPxCloth.html#b56d769be770219f891c37ad2ddfc4ab">PxCloth</a>
<li>getNbCollisionSpheres()
: <a class="el" href="classPxCloth.html#72d7b3ed07fd4e1615708e3fc75c69d9">PxCloth</a>
<li>getNbCollisionTriangles()
: <a class="el" href="classPxCloth.html#a03a6096427b18376cefd44f7acbb733">PxCloth</a>
<li>getNbColumns()
: <a class="el" href="classPxHeightField.html#deb227d057ba7949ad536a26ad75adab">PxHeightField</a>
<li>getNbConstraints()
: <a class="el" href="classPxRigidActor.html#d941cfa63351e7ff6095a4afbe2d9172">PxRigidActor</a>
, <a class="el" href="classPxScene.html#7ee023de370ac90a7d4c204d916d3080">PxScene</a>
<li>getNbContactDataBlocksUsed()
: <a class="el" href="classPxScene.html#b6224a915d459fb6a1c0899a080f5697">PxScene</a>
<li>getNbControllers()
: <a class="el" href="classPxControllerManager.html#d1d6b4793e98229d31627a96c279171d">PxControllerManager</a>
<li>getNbConvexMeshes()
: <a class="el" href="classPxPhysics.html#372b961576ee45702d02618933e8db0d">PxPhysics</a>
<li>getNbDataPairs()
: <a class="el" href="classPxFixedSizeLookupTable.html#c066cd78680c2a9a5c52d1d85af5ecc2">PxFixedSizeLookupTable< NB_ELEMENTS ></a>
<li>getNbDriveTorque()
: <a class="el" href="classPxVehicleNoDrive.html#77ffe8a3c8951abc5a07d9310502651e">PxVehicleNoDrive</a>
<li>getNbHeightFields()
: <a class="el" href="classPxPhysics.html#92275b36165ce356aa217d17fbb3ac2c">PxPhysics</a>
<li>getNbIds()
: <a class="el" href="classPxCollection.html#082b4d10a5cc5c1fafb9f94f59f0923f">PxCollection</a>
<li>getNbLines()
: <a class="el" href="classPxRenderBuffer.html#6c6b26fc4d6e79bed72138148420c8a9">PxRenderBuffer</a>
<li>getNbLinks()
: <a class="el" href="classPxArticulation.html#c5de09243fe7491e92bf7720cba35782">PxArticulation</a>
<li>getNbMaterials()
: <a class="el" href="classPxPhysics.html#051662877c0f3346ac7fa4f1bf4bcd95">PxPhysics</a>
, <a class="el" href="classPxShape.html#0166cefbe1d120da68db5f68ddd6ebbc">PxShape</a>
<li>getNbMotionConstraints()
: <a class="el" href="classPxCloth.html#9e6eba9bbb683e678cc4d606450d3a94">PxCloth</a>
<li>getNbNonDrivenWheels()
: <a class="el" href="classPxVehicleWheels.html#eab64d5853861e2513eb22b7608fc3fb">PxVehicleWheels</a>
<li>getNbObjects()
: <a class="el" href="classPxCollection.html#5642c14ef12fe69f887f829e47e133a1">PxCollection</a>
<li>getNbObstacleContexts()
: <a class="el" href="classPxControllerManager.html#328d22226d7cddc2ad141a94b229a83d">PxControllerManager</a>
<li>getNbObstacles()
: <a class="el" href="classPxObstacleContext.html#e55da4495a10d1c310068e23d87ce7d5">PxObstacleContext</a>
<li>getNbParticleAccelerations()
: <a class="el" href="classPxCloth.html#4c312b78671bf914dc6690b05c5b819d">PxCloth</a>
<li>getNbParticleIndices()
: <a class="el" href="classPxClothFabric.html#df154f8b203da1e1147d676ce62f0c14">PxClothFabric</a>
<li>getNbParticles()
: <a class="el" href="classPxCloth.html#aa63b426bf2bc574ea6bbce52bda1074">PxCloth</a>
, <a class="el" href="classPxClothFabric.html#441e4b99664bdfe22fc6d25f9d0439de">PxClothFabric</a>
<li>getNbPhases()
: <a class="el" href="classPxClothFabric.html#9daea96052a76964c2abf9a6af11cd56">PxClothFabric</a>
<li>getNbPoints()
: <a class="el" href="classPxRenderBuffer.html#332ccf3426d3f095deaef16562d9c3a1">PxRenderBuffer</a>
<li>getNbPolygons()
: <a class="el" href="classPxConvexMesh.html#5246b9a1efd734db68b211d51c672ed7">PxConvexMesh</a>
<li>getNbRestPositions()
: <a class="el" href="classPxCloth.html#d62daebe7db829daa40712dd694d3856">PxCloth</a>
<li>getNbRestvalues()
: <a class="el" href="classPxClothFabric.html#e087a3ff38ef40785f869f590c1e3800">PxClothFabric</a>
<li>getNbResults()
: <a class="el" href="classPxMeshOverlapUtil.html#3c6325446aac1cf7f1a8f07ffe90dd03">PxMeshOverlapUtil</a>
<li>getNbRigidActors()
: <a class="el" href="classPxPruningStructure.html#654e539a68db0ea162d54f8c5ee8c4ed">PxPruningStructure</a>
<li>getNbRows()
: <a class="el" href="classPxHeightField.html#9c23959bd90dd2acf493e4a4a85b8b2e">PxHeightField</a>
<li>getNbSceneQueryFilterData()
: <a class="el" href="classPxVehicleWheelsSimData.html#846d22feb13f6970b8767097cab3ec18">PxVehicleWheelsSimData</a>
<li>getNbScenes()
: <a class="el" href="classPxPhysics.html#f6181c2f379b52712bece3f7639fab1e">PxPhysics</a>
<li>getNbSelfCollisionIndices()
: <a class="el" href="classPxCloth.html#6f80ea84bc64334bf4fdc3865ca75ecf">PxCloth</a>
<li>getNbSeparationConstraints()
: <a class="el" href="classPxCloth.html#8a6a6293bd22a97e2e25887c7f5beabf">PxCloth</a>
<li>getNbSets()
: <a class="el" href="classPxClothFabric.html#de41283cadbec5647b02ca63c798f469">PxClothFabric</a>
<li>getNbShapes()
: <a class="el" href="classPxPhysics.html#084ff8d2b32c74056f95580cbb2a0cb3">PxPhysics</a>
, <a class="el" href="classPxRigidActor.html#e5c3534de94642c5980d29f4c49bc112">PxRigidActor</a>
<li>getNbSteerAngle()
: <a class="el" href="classPxVehicleNoDrive.html#1cc626970c2f4b5a2cf16aa99abedcbf">PxVehicleNoDrive</a>
<li>getNbSuspensionData()
: <a class="el" href="classPxVehicleWheelsSimData.html#2e6f2f5ddc28114568af090672b29cff">PxVehicleWheelsSimData</a>
<li>getNbSuspForceAppPointOffset()
: <a class="el" href="classPxVehicleWheelsSimData.html#c2e3769e44033d2a6e89545e6a4f7212">PxVehicleWheelsSimData</a>
<li>getNbSuspTravelDirection()
: <a class="el" href="classPxVehicleWheelsSimData.html#86737c0e9937fd5e052fd80ca20f6cf7">PxVehicleWheelsSimData</a>
<li>getNbTethers()
: <a class="el" href="classPxClothFabric.html#edfc6788bd1efead9bf6eb40733e566f">PxClothFabric</a>
<li>getNbTethersPerParticle()
: <a class="el" href="classPxClothGeodesicTetherCooker.html#d30d42ab8ee044a646683cdd5c1ada87">PxClothGeodesicTetherCooker</a>
<li>getNbTexts()
: <a class="el" href="classPxRenderBuffer.html#37cbf69a115b888014b07c723f4420f8">PxRenderBuffer</a>
<li>getNbTireData()
: <a class="el" href="classPxVehicleWheelsSimData.html#b086acd104244715cf7e640fd9a5283c">PxVehicleWheelsSimData</a>
<li>getNbTireForceAppPointOffset()
: <a class="el" href="classPxVehicleWheelsSimData.html#997cf82d703174acab6b05e88e72ca55">PxVehicleWheelsSimData</a>
<li>getNbTouches()
: <a class="el" href="structPxHitBuffer.html#8bf58cc81ca6587e1d9974f2864dacb2">PxHitBuffer< HitType ></a>
<li>getNbTriangleMeshes()
: <a class="el" href="classPxPhysics.html#91183bc0ffba9000a0f76bf4d9bf5fa2">PxPhysics</a>
<li>getNbTriangles()
: <a class="el" href="classPxRenderBuffer.html#703357934fbff3f31837a60ccfabb513">PxRenderBuffer</a>
, <a class="el" href="classPxTriangleMesh.html#611c8453a6b6256a63f1450aa8cf237a">PxTriangleMesh</a>
<li>getNbVertices()
: <a class="el" href="classPxTriangleMesh.html#b2ee402843a2f19a252ecb229d9cfbc8">PxTriangleMesh</a>
, <a class="el" href="classPxConvexMesh.html#91f22f88d2a3a100711b94b815152fd2">PxConvexMesh</a>
<li>getNbVirtualParticles()
: <a class="el" href="classPxCloth.html#684e0000032ad3db928adec6bc93c738">PxCloth</a>
<li>getNbVirtualParticleWeights()
: <a class="el" href="classPxCloth.html#69fdeedc7a12ac0136c6ac15ff01085d">PxCloth</a>
<li>getNbWheelCentreOffset()
: <a class="el" href="classPxVehicleWheelsSimData.html#f667dc3863d255881c9eed397a810f4b">PxVehicleWheelsSimData</a>
<li>getNbWheelData()
: <a class="el" href="classPxVehicleWheelsSimData.html#dd32357cf58ae0fa3ee54bdc6bdcbc9b">PxVehicleWheelsSimData</a>
<li>getNbWheelEnabledState()
: <a class="el" href="classPxVehicleWheelsSimData.html#45e5fa22ffade62a086cd4102ce2e3be">PxVehicleWheelsSimData</a>
<li>getNbWheelRotationAngle()
: <a class="el" href="classPxVehicleWheelsDynData.html#43dc86907ac9cf5e5b900a46ce8e2d50">PxVehicleWheelsDynData</a>
<li>getNbWheelRotationSpeed()
: <a class="el" href="classPxVehicleWheelsDynData.html#114c21ca98117f1f2239c2dac0a65fdd">PxVehicleWheelsDynData</a>
<li>getNbWheels()
: <a class="el" href="classPxVehicleWheelsSimData.html#331e4878fc2f9b1b2a47af3c4ad39eb6">PxVehicleWheelsSimData</a>
<li>getNbWheels4()
: <a class="el" href="classPxVehicleWheelsSimData.html#04517491f6697f5564bae28b8d9b48b3">PxVehicleWheelsSimData</a>
<li>getNbWheelShapeMapping()
: <a class="el" href="classPxVehicleWheelsSimData.html#149c7bd5f789a91da2d7651af1846a17">PxVehicleWheelsSimData</a>
<li>getNonWalkableMode()
: <a class="el" href="classPxController.html#d16b10c1e20376c23ce81af23b5ef880">PxController</a>
<li>getNormal()
: <a class="el" href="classPxContactSet.html#225b2714ca66ddb6cdf6c8a00664464e">PxContactSet</a>
<li>getNormalized()
: <a class="el" href="classPxVec3.html#91d643f074916c986cf36081a1f67bca">PxVec3</a>
, <a class="el" href="classPxQuat.html#a9cff7e69cad7e5a681a3ff471efd5cb">PxQuat</a>
, <a class="el" href="classPxTransform.html#f42e0f4013654fff60a24ecb6c0f0277">PxTransform</a>
, <a class="el" href="classPxVec2.html#fd175adb02d6c68dbda2f9402fbf90d9">PxVec2</a>
, <a class="el" href="classPxVec4.html#c581127915a891d9ccbeda7632d6d143">PxVec4</a>
<li>getObject()
: <a class="el" href="classPxCollection.html#eed5696e38989d4c4bd0293c45f625e9">PxCollection</a>
<li>getObjects()
: <a class="el" href="classPxCollection.html#f245a69b1af2a7c50bbf79bbfab5e516">PxCollection</a>
<li>getObstacle()
: <a class="el" href="classPxObstacleContext.html#228a7b8cb5900251d7888ee0f4d912cd">PxObstacleContext</a>
<li>getObstacleByHandle()
: <a class="el" href="classPxObstacleContext.html#fa8438d6cdc3d82375944d7ca126487a">PxObstacleContext</a>
<li>getObstacleContext()
: <a class="el" href="classPxControllerManager.html#bbeb2ff37ca2eca61db437c284430441">PxControllerManager</a>
<li>getOpenMode()
: <a class="el" href="classPxFileBuf.html#4cf7383163c096e2439b8c7cad9b8b77">PxFileBuf</a>
<li>getOwnerClient()
: <a class="el" href="classPxActor.html#660828fb83c91f0ada2ca43e06aa2b35">PxActor</a>
, <a class="el" href="classPxBatchQuery.html#3f9f6115709370fc445c03c9da06b691">PxBatchQuery</a>
<li>getParams()
: <a class="el" href="classPxCooking.html#83607708fd1cb2f58a3d758a558f5b28">PxCooking</a>
<li>getParentPose()
: <a class="el" href="classPxArticulationJoint.html#fb82a4d6b9ad7cf3f5fd9d9dc03ccca5">PxArticulationJoint</a>
<li>getParticleAccelerations()
: <a class="el" href="classPxCloth.html#4462120f9e721e95129b39ea716c7586">PxCloth</a>
<li>getParticleBaseFlags()
: <a class="el" href="classPxParticleBase.html#b7b8a318215e2a0a06446753e905bcd1">PxParticleBase</a>
<li>getParticleIndices()
: <a class="el" href="classPxClothFabric.html#085f09b26d28b5d071fc3476fb76753e">PxClothFabric</a>
<li>getParticleMass()
: <a class="el" href="classPxParticleBase.html#badacdb02db9c5c3088ffec96d8a94fb">PxParticleBase</a>
<li>getParticleReadDataFlags()
: <a class="el" href="classPxParticleBase.html#8be6672d3d649d24de52db500ffb1a4e">PxParticleBase</a>
<li>getPatch()
: <a class="el" href="classPxContactSet.html#0aef84a136055ad90c1af8a53f2fe8a8">PxContactSet</a>
<li>getPhases()
: <a class="el" href="classPxClothFabric.html#9f9bcc2229fc09f89f5c4819dbbd6d33">PxClothFabric</a>
<li>getPhysics()
: <a class="el" href="classPxScene.html#a77b43c78a62a0c771e5e6404fc55ffe">PxScene</a>
<li>getPhysicsInsertionCallback()
: <a class="el" href="classPxPhysics.html#7a4588fd79b87766cb81fae3ddd4f074">PxPhysics</a>
<li>getPhysXVersion()
: <a class="el" href="classPxDeserializationContext.html#be1146f20c2d30d916e0afc0f22cba53">PxDeserializationContext</a>
<li>getPlaneGeometry()
: <a class="el" href="classPxShape.html#fe05ad6f093d762abaf03e3e0c1de704">PxShape</a>
<li>getPoint()
: <a class="el" href="classPxContactSet.html#bf3a8b911e7d304ce1008b23bb575361">PxContactSet</a>
<li>getPoints()
: <a class="el" href="classPxRenderBuffer.html#51525ad0435f55798c1dc343a5a39e71">PxRenderBuffer</a>
<li>getPolygonData()
: <a class="el" href="classPxConvexMesh.html#9c9e10d0faaa446ea96494160d359cba">PxConvexMesh</a>
<li>getPosition()
: <a class="el" href="classPxController.html#ca54bef0663caf75613a5542e54d318e">PxController</a>
, <a class="el" href="classPxPrismaticJoint.html#e4dc657df18bfc45e2dc0e21185532c2">PxPrismaticJoint</a>
, <a class="el" href="classPxMat44.html#6c570865991ca15e80eb42b98ac92c32">PxMat44</a>
<li>getPostFilterShader()
: <a class="el" href="classPxBatchQuery.html#f12d7a7693f8f4101f51cb5582386a08">PxBatchQuery</a>
<li>getPostLaunchTask()
: <a class="el" href="classphysx_1_1PxGpuDispatcher.html#e3c292cd7b8a431fa969116423e32254">physx::PxGpuDispatcher</a>
<li>getPreFilterShader()
: <a class="el" href="classPxBatchQuery.html#5c88db06732dd07d95fe006df755e094">PxBatchQuery</a>
<li>getPreLaunchTask()
: <a class="el" href="classphysx_1_1PxGpuDispatcher.html#3a12b661dab8671aaa9bd414c2b71440">physx::PxGpuDispatcher</a>
<li>getPrep()
: <a class="el" href="classPxConstraintConnector.html#ff598a3ab349524666e2ed79c862f3a9">PxConstraintConnector</a>
<li>getPreviousTimeStep()
: <a class="el" href="classPxCloth.html#d6b9eb84e82b48262c5921d245f0836b">PxCloth</a>
<li>getPrismaticJointFlags()
: <a class="el" href="classPxPrismaticJoint.html#536fe595cc77afd12f0f18a44005dbf7">PxPrismaticJoint</a>
<li>getProjectionAngularTolerance()
: <a class="el" href="classPxRevoluteJoint.html#fd45c654a94755ad2366c53794ebd30a">PxRevoluteJoint</a>
, <a class="el" href="classPxPrismaticJoint.html#c33eddce826faaf19778cf407206ee60">PxPrismaticJoint</a>
, <a class="el" href="classPxFixedJoint.html#5cf2d9348b4ccdc66ba83245b0ff7bf9">PxFixedJoint</a>
, <a class="el" href="classPxD6Joint.html#fe17636945bccdb5ecbfe360b90d9887">PxD6Joint</a>
<li>getProjectionLinearTolerance()
: <a class="el" href="classPxD6Joint.html#e784aa5547471041bad55269fb03ad0a">PxD6Joint</a>
, <a class="el" href="classPxSphericalJoint.html#4cfc3fbb4621799cbf5449270c120d1e">PxSphericalJoint</a>
, <a class="el" href="classPxRevoluteJoint.html#a49978cf6d7af5629e7d4a84cf959898">PxRevoluteJoint</a>
, <a class="el" href="classPxFixedJoint.html#de788fe7ea26f4cc1bc2f3b764583717">PxFixedJoint</a>
, <a class="el" href="classPxPrismaticJoint.html#ea99524ff17e5044d737a2c6c4ebc8c8">PxPrismaticJoint</a>
<li>getProjectionPlane()
: <a class="el" href="classPxParticleBase.html#9d6cf609acc383d72151ca99e7091054">PxParticleBase</a>
<li>getQueryFilterData()
: <a class="el" href="classPxShape.html#b6cbdfa3d01aa384f4d0109a591d1f12">PxShape</a>
<li>getRadius()
: <a class="el" href="classPxCapsuleController.html#8c361593760ea09b0ae84ab414520ed1">PxCapsuleController</a>
<li>getRbPairStats()
: <a class="el" href="classPxSimulationStatistics.html#86afb18c5a1cb6b290b350361c425545">PxSimulationStatistics</a>
<li>getRecipLongitudinalStiffnessPerUnitGravity()
: <a class="el" href="classPxVehicleTireData.html#de0259eb242f4e9e687fbd29d59d1ee1">PxVehicleTireData</a>
<li>getRecipMaxCompression()
: <a class="el" href="classPxVehicleSuspensionData.html#062437fd240388ec7affa0d73453d593">PxVehicleSuspensionData</a>
<li>getRecipMaxDroop()
: <a class="el" href="classPxVehicleSuspensionData.html#35662179eb1bf193ca23f9da5bd5f253">PxVehicleSuspensionData</a>
<li>getRecipMaxOmega()
: <a class="el" href="classPxVehicleEngineData.html#742d83de3319ceeede730a4eb9991382">PxVehicleEngineData</a>
<li>getRecipMOI()
: <a class="el" href="classPxVehicleWheelData.html#0803b9d20a0dc53b2a0bbb9d1177b8fd">PxVehicleWheelData</a>
, <a class="el" href="classPxVehicleEngineData.html#20b8eecf7722a146de159d51a0e18a20">PxVehicleEngineData</a>
<li>getRecipRadius()
: <a class="el" href="classPxVehicleWheelData.html#99064058a00ca8b9e025535bf0f938c2">PxVehicleWheelData</a>
<li>getReference()
: <a class="el" href="classphysx_1_1PxTask.html#7d7d155ba008883d3bed7db443421908">physx::PxTask</a>
, <a class="el" href="classphysx_1_1PxLightCpuTask.html#e45cef54851865477ee4f187e1fb5126">physx::PxLightCpuTask</a>
, <a class="el" href="classphysx_1_1PxBaseTask.html#5a1570309c62a12c3ecfe7e695b9f21f">physx::PxBaseTask</a>
<li>getReferenceCount()
: <a class="el" href="classPxMaterial.html#459b91a5b16327891dc7b9364c854888">PxMaterial</a>
, <a class="el" href="classPxConvexMesh.html#b7cd51e753d6eaa80b73e06544db7f1b">PxConvexMesh</a>
, <a class="el" href="classPxClothFabric.html#63cecd759a2d741c895371dc8d97db85">PxClothFabric</a>
, <a class="el" href="classPxTriangleMesh.html#0fc4aed5a5f01a0f1b769d3c6534ba8d">PxTriangleMesh</a>
, <a class="el" href="classPxHeightField.html#0419a4b453fcc887b337d49877cfab28">PxHeightField</a>
<li>getRelativeAngularVelocity()
: <a class="el" href="classPxJoint.html#e1d90c4cb53d5807584474ae130048df">PxJoint</a>
<li>getRelativeLinearVelocity()
: <a class="el" href="classPxJoint.html#ba1e47a8ff180a564a2ef44a016372bf">PxJoint</a>
<li>getRelativeTransform()
: <a class="el" href="classPxJoint.html#116450043c073548c1c55d032014f7e7">PxJoint</a>
<li>getRenderBuffer()
: <a class="el" href="classPxControllerManager.html#a6b2e7140e13c739ccf089331b434606">PxControllerManager</a>
, <a class="el" href="classPxScene.html#35f231796a325fcf587e681831c5fcb5">PxScene</a>
<li>getReportAllocationNames()
: <a class="el" href="classPxFoundation.html#99d8ace08bda782da561bc14c6e9075b">PxFoundation</a>
<li>getRepXSerializer()
: <a class="el" href="classPxSerializationRegistry.html#40b8f7dfa706de614a013ed15c79dfdc">PxSerializationRegistry</a>
<li>getRestitution()
: <a class="el" href="classPxMaterial.html#06db9f154df542598da209a31fdc123f">PxMaterial</a>
, <a class="el" href="classPxParticleBase.html#f685d7f2c306a42d345fcde35a2bf6fa">PxParticleBase</a>
, <a class="el" href="classPxContactSet.html#643d2c1eb96b29b8119e11e04828c26e">PxContactSet</a>
, <a class="el" href="structPxContactStreamIterator.html#25f719cc460541c095fa0b7101fe4a32">PxContactStreamIterator</a>
<li>getRestitutionCombineMode()
: <a class="el" href="classPxMaterial.html#a4f567c979252e84dc88cbd626dc8812">PxMaterial</a>
<li>getRestOffset()
: <a class="el" href="classPxCloth.html#101c0a3e1fd4bfa4c61a285128d18f26">PxCloth</a>
, <a class="el" href="classPxShape.html#060ff01d827d559fc8b11385a161eca0">PxShape</a>
, <a class="el" href="classPxParticleBase.html#8b52436ee7a5587fff1220954535d261">PxParticleBase</a>
<li>getRestParticleDistance()
: <a class="el" href="classPxParticleFluid.html#5d371c0e7abcc93f5158cd964d29a6a1">PxParticleFluid</a>
<li>getRestPositions()
: <a class="el" href="classPxCloth.html#d221503283a0557ab60202ff9856677b">PxCloth</a>
<li>getRestvalues()
: <a class="el" href="classPxClothFabric.html#fb53563992c3181c6f2b6c826deea2b0">PxClothFabric</a>
<li>getResults()
: <a class="el" href="classPxMeshOverlapUtil.html#afc10eb1eb093a12f44ad751edda5059">PxMeshOverlapUtil</a>
<li>getRevoluteJointFlags()
: <a class="el" href="classPxRevoluteJoint.html#bb21c80c3e6d8c1fc29760aaae8cef15">PxRevoluteJoint</a>
<li>getRigidActors()
: <a class="el" href="classPxPruningStructure.html#6c930e8a4f47e3b4a3f1c5bde7f98169">PxPruningStructure</a>
<li>getRigidBodyFlags()
: <a class="el" href="classPxRigidBody.html#2ef3c66318db72f2dd2c1b0d20513f18">PxRigidBody</a>
<li>getRigidDynamicActor()
: <a class="el" href="classPxVehicleWheels.html#d732537554fbedb05fb38327a060743a">PxVehicleWheels</a>
<li>getRigidDynamicLockFlags()
: <a class="el" href="classPxRigidDynamic.html#a88e055440d6c1cc846e32dbed017345">PxRigidDynamic</a>
<li>getRunProfiled()
: <a class="el" href="classPxDefaultCpuDispatcher.html#40f8719e94a4b87017c1865b85ac1930">PxDefaultCpuDispatcher</a>
<li>getSample()
: <a class="el" href="classPxHeightField.html#15f91d308f23a987dc672614aa64d5fa">PxHeightField</a>
<li>getSampleStride()
: <a class="el" href="classPxHeightField.html#34935489b77f6d386bdfe15b4f10b00e">PxHeightField</a>
<li>getScene()
: <a class="el" href="classPxAggregate.html#a70f305e7f2934d99afd74d28b0c0194">PxAggregate</a>
, <a class="el" href="classPxControllerManager.html#86e943ddc5db86e23b9f31eeff908a74">PxControllerManager</a>
, <a class="el" href="classPxJoint.html#94b6afda907ba342af710f67aae09e6c">PxJoint</a>
, <a class="el" href="classPxController.html#3a7134907855142bcae10e462958a61e">PxController</a>
, <a class="el" href="classPxArticulation.html#fd299e63283d38910c48243e6d9755dd">PxArticulation</a>
, <a class="el" href="classPxActor.html#2bf2e48b1960ef8e4fc1a437473bd7a3">PxActor</a>
, <a class="el" href="classPxConstraint.html#a94f6f40eac2640b1211eb3ede57588b">PxConstraint</a>
<li>getScenePvdClient()
: <a class="el" href="classPxScene.html#ac4ee13053cdb7f50ca6c065077c9ee3">PxScene</a>
<li>getScenePvdFlags()
: <a class="el" href="classPxPvdSceneClient.html#a001bda702ba5738c182358035f36cc3">PxPvdSceneClient</a>
<li>getSceneQueryFilterData()
: <a class="el" href="classPxVehicleWheelsSimData.html#e7bbe46e5efa6cefcc3832c961e047a9">PxVehicleWheelsSimData</a>
<li>getSceneQueryStaticTimestamp()
: <a class="el" href="classPxScene.html#32850ee34d1736811c1e93e25c689a68">PxScene</a>
<li>getSceneQueryUpdateMode()
: <a class="el" href="classPxScene.html#1fd7e1e617aa9359b56e91e060ad9f90">PxScene</a>
<li>getScenes()
: <a class="el" href="classPxPhysics.html#1ecd80a6f7c5239bd6cc50c5ea76156d">PxPhysics</a>
<li>getSelfCollision()
: <a class="el" href="classPxAggregate.html#ecc9a58a8966bb5b76fd82b655efb43e">PxAggregate</a>
<li>getSelfCollisionDistance()
: <a class="el" href="classPxCloth.html#514d63d5ad2fcd5e0bb147c439da20bc">PxCloth</a>
<li>getSelfCollisionIndices()
: <a class="el" href="classPxCloth.html#3bd8a84d4136d97444b663a5d62a673e">PxCloth</a>
<li>getSelfCollisionStiffness()
: <a class="el" href="classPxCloth.html#a3532b8262295f8adf15a8cda9c83f25">PxCloth</a>
<li>getSeparation()
: <a class="el" href="structPxContactStreamIterator.html#b6bd9823f5d44bc849e74d5d52ea0f54">PxContactStreamIterator</a>
, <a class="el" href="classPxContactSet.html#08bf7523401a88b6481ae49bedc858f3">PxContactSet</a>
<li>getSeparationConstraints()
: <a class="el" href="classPxCloth.html#0ca219e86a0a99a8ad6198208cef26b7">PxCloth</a>
<li>getSeparationTolerance()
: <a class="el" href="classPxArticulation.html#cacffbf3e5e6e2e02e8b0929e9b73cf6">PxArticulation</a>
<li>getSerializable()
: <a class="el" href="classPxConstraintConnector.html#e924cd9415c06057a3fcd7077028baad">PxConstraintConnector</a>
<li>getSerializer()
: <a class="el" href="classPxSerializationRegistry.html#d6bd6bb21e9c73abe17207f4fa3ce8bc">PxSerializationRegistry</a>
<li>getSets()
: <a class="el" href="classPxClothFabric.html#f45bfae66b62c892245fac4dbc099f71">PxClothFabric</a>
<li>getShapes()
: <a class="el" href="classPxRigidActor.html#22ef86619d7a6de688b9ef2b0ad7bcec">PxRigidActor</a>
, <a class="el" href="classPxPhysics.html#f8a7ab6d85ff7232e622a7127f5e2528">PxPhysics</a>
<li>getSimulationEventCallback()
: <a class="el" href="classPxScene.html#1eb6366fd80f5a8f6a9154a412c33436">PxScene</a>
<li>getSimulationFilterData()
: <a class="el" href="classPxParticleBase.html#12bf74e45c36e867894bc775a83a0593">PxParticleBase</a>
, <a class="el" href="classPxShape.html#bfa95e009f300060ba648637fb685686">PxShape</a>
, <a class="el" href="classPxCloth.html#b2c8c03af0b084ea266e3396620c051d">PxCloth</a>
<li>getSimulationStatistics()
: <a class="el" href="classPxScene.html#7abb1e1354ae3258b91fc097e9d682b8">PxScene</a>
<li>getSize()
: <a class="el" href="classPxDefaultMemoryOutputStream.html#e23aaf88551ab3d85ca27390b86fdfea">PxDefaultMemoryOutputStream</a>
<li>getSleepLinearVelocity()
: <a class="el" href="classPxCloth.html#d421d5f30c8df5c22d605ab99fbf31d1">PxCloth</a>
<li>getSleepThreshold()
: <a class="el" href="classPxArticulation.html#9e7f831e514e0de1c15812f62c0ab20b">PxArticulation</a>
, <a class="el" href="classPxRigidDynamic.html#1a0232d5a392e204e6b133fd2ab0879e">PxRigidDynamic</a>
<li>getSlopeLimit()
: <a class="el" href="classPxController.html#7e03e7863dd2036f673b084f3ce94629">PxController</a>
<li>getSolverBatchSize()
: <a class="el" href="classPxScene.html#dd966317a1feb083e273fd8c12f454b5">PxScene</a>
<li>getSolverFrequency()
: <a class="el" href="classPxCloth.html#88872e66443f69945805fabb16b8cfac">PxCloth</a>
<li>getSolverIterationCounts()
: <a class="el" href="classPxRigidDynamic.html#2fcdafcbc0dd5a691d502b2f7b03a7d7">PxRigidDynamic</a>
, <a class="el" href="classPxArticulation.html#895c71778bd0ec8905719f507e0a966f">PxArticulation</a>
<li>getSphereGeometry()
: <a class="el" href="classPxShape.html#d36c41170461ca897fa70433d23268fa">PxShape</a>
<li>getSphericalJointFlags()
: <a class="el" href="classPxSphericalJoint.html#97ce52284221d6429ef49db02a2487b5">PxSphericalJoint</a>
<li>getStabilizationThreshold()
: <a class="el" href="classPxArticulation.html#a7fd4f3e2ea751de54885d62510289cd">PxArticulation</a>
, <a class="el" href="classPxRigidDynamic.html#5f9d98c9bd3b9ab0be7ce1b3ec4a4574">PxRigidDynamic</a>
<li>getState()
: <a class="el" href="classPxController.html#d694218683ad584f6120bc001c0d1616">PxController</a>
<li>getStaticFriction()
: <a class="el" href="structPxContactStreamIterator.html#e61aa300ebb547085205073dd69454a2">PxContactStreamIterator</a>
, <a class="el" href="classPxParticleBase.html#490ead77cd5a791537c209c5650a8d0c">PxParticleBase</a>
, <a class="el" href="classPxMaterial.html#b80c2e686ea428c58dbd020e067eaa70">PxMaterial</a>
, <a class="el" href="classPxContactSet.html#45700551793a60bff49adfb4775b5820">PxContactSet</a>
<li>getStaticStructure()
: <a class="el" href="classPxScene.html#d285bee8674cc03378588a32c4f85dda">PxScene</a>
<li>getStats()
: <a class="el" href="classPxController.html#e98a10df99157bdaed67a05795fb3599">PxController</a>
<li>getSteerAngle()
: <a class="el" href="classPxVehicleNoDrive.html#9db10d7ec81f2d0ba421eb6d65d100e7">PxVehicleNoDrive</a>
<li>getStepOffset()
: <a class="el" href="classPxController.html#2a46763eb7541abe5d1c73eacca4639c">PxController</a>
<li>getStiffness()
: <a class="el" href="classPxArticulationJoint.html#e11979e97274ce2fa604db8615dc5b71">PxArticulationJoint</a>
, <a class="el" href="classPxDistanceJoint.html#046e3c320c50c2e83c3bb0bd43de97e2">PxDistanceJoint</a>
, <a class="el" href="classPxParticleFluid.html#20a0cdb50445cf6db5d4438567fb21c8">PxParticleFluid</a>
<li>getStiffnessFrequency()
: <a class="el" href="classPxCloth.html#75cf540fbe32712420282f51dc281067">PxCloth</a>
<li>getStretchConfig()
: <a class="el" href="classPxCloth.html#5bae6a80e0afb0b141214199db389911">PxCloth</a>
<li>getSuspensionData()
: <a class="el" href="classPxVehicleWheelsSimData.html#481a89c37da3a6869133ea0c596debc8">PxVehicleWheelsSimData</a>
<li>getSuspForceAppPointOffset()
: <a class="el" href="classPxVehicleWheelsSimData.html#f0d6a8e7337d6bf2cadddb81a82dd367">PxVehicleWheelsSimData</a>
<li>getSuspTravelDirection()
: <a class="el" href="classPxVehicleWheelsSimData.html#a7044f8657ea0b87aa4ca7d3de0f5dd0">PxVehicleWheelsSimData</a>
<li>getSwingLimit()
: <a class="el" href="classPxD6Joint.html#f2919895cc7726ee85c25600ae849362">PxD6Joint</a>
, <a class="el" href="classPxArticulationJoint.html#04c80251726b0706cc85960d6c960a6d">PxArticulationJoint</a>
<li>getSwingLimitContactDistance()
: <a class="el" href="classPxArticulationJoint.html#71c9ff63ac915714b595c184846546a2">PxArticulationJoint</a>
<li>getSwingLimitEnabled()
: <a class="el" href="classPxArticulationJoint.html#01b0447f6c84cdc547f9abd7df7c717c">PxArticulationJoint</a>
<li>getSwingYAngle()
: <a class="el" href="classPxD6Joint.html#ae0e5965a6423397bd3351c2b975a650">PxD6Joint</a>
<li>getSwingZAngle()
: <a class="el" href="classPxD6Joint.html#e8551ae9f94587a55c0eae851d612fd7">PxD6Joint</a>
<li>getTangentialDamping()
: <a class="el" href="classPxArticulationJoint.html#2d30be935dca3002fa865c258ded66e5">PxArticulationJoint</a>
<li>getTangentialStiffness()
: <a class="el" href="classPxArticulationJoint.html#6b48e04c7a64696142a227a971410095">PxArticulationJoint</a>
<li>getTargetGear()
: <a class="el" href="classPxVehicleDriveDynData.html#edc3a41c46722e33d56bdad10d1c6ff0">PxVehicleDriveDynData</a>
<li>getTargetOrientation()
: <a class="el" href="classPxArticulationJoint.html#4705fe257b6620f399081f52c13ffd25">PxArticulationJoint</a>
<li>getTargetVel()
: <a class="el" href="structPxContactStreamIterator.html#dba5592aea3209649a1d1062be99827c">PxContactStreamIterator</a>
<li>getTargetVelocity()
: <a class="el" href="classPxArticulationJoint.html#a58bb8f6d97492b4ab1b5c2708fb471f">PxArticulationJoint</a>
, <a class="el" href="classPxContactSet.html#25ab720b769e29f0a40aeb6bae693591">PxContactSet</a>
<li>getTaskFromID()
: <a class="el" href="classphysx_1_1PxTaskManager.html#62b0f1892459275040db9ce8e274ca14">physx::PxTaskManager</a>
<li>getTaskHint()
: <a class="el" href="classphysx_1_1PxGpuTask.html#9ab3b350e19305096a955bf29bffc923">physx::PxGpuTask</a>
<li>getTaskID()
: <a class="el" href="classphysx_1_1PxTask.html#762b45266ec713eb7f599574a7998057">physx::PxTask</a>
<li>getTaskManager()
: <a class="el" href="classphysx_1_1PxBaseTask.html#9dccf76144a25df2c2a7ed5fa8cea003">physx::PxBaseTask</a>
, <a class="el" href="classPxScene.html#be1495d04a1852030c0dec380999525a">PxScene</a>
<li>getTetherAnchors()
: <a class="el" href="classPxClothFabric.html#868c8ede0e185dbf6bff4ca17fec4a8a">PxClothFabric</a>
<li>getTetherConfig()
: <a class="el" href="classPxCloth.html#52957da35698b2488b4d67a4be285c55">PxCloth</a>
<li>getTetherData()
: <a class="el" href="classPxClothGeodesicTetherCooker.html#d70234a172fc25819b8b5a66c9970058">PxClothGeodesicTetherCooker</a>
, <a class="el" href="classPxClothSimpleTetherCooker.html#4a7bc691494d9941f39ab1a12bc8aff7">PxClothSimpleTetherCooker</a>
<li>getTetherLengths()
: <a class="el" href="classPxClothFabric.html#8dde7c6c2105602237ded25f44c4eeee">PxClothFabric</a>
<li>getTexts()
: <a class="el" href="classPxRenderBuffer.html#2a22b95f41d16175ee1e119fd8aa4d4e">PxRenderBuffer</a>
<li>getThickness()
: <a class="el" href="classPxHeightField.html#3d1c8423fdb42c8707102f4785fee97a">PxHeightField</a>
<li>getThresholdLongSpeed()
: <a class="el" href="classPxVehicleWheelsSimData.html#bc1f999f2f55f9fa996f6a42ae3fe0c7">PxVehicleWheelsSimData</a>
<li>getTimestamp()
: <a class="el" href="classPxScene.html#6003ed1a202d434ef64439741e3f2de2">PxScene</a>
, <a class="el" href="classPxHeightField.html#e4136344e0c9ed9c773c304bc87690fe">PxHeightField</a>
<li>getTireData()
: <a class="el" href="classPxVehicleWheelsSimData.html#fdfbf42e25b76b71cd6eeeaeee3f879e">PxVehicleWheelsSimData</a>
<li>getTireForceAppPointOffset()
: <a class="el" href="classPxVehicleWheelsSimData.html#56dfad4fc0b6fa8091e9879d8087a07c">PxVehicleWheelsSimData</a>
<li>getTireForceShaderData()
: <a class="el" href="classPxVehicleWheelsDynData.html#c2f028047b565b8dfae260063fd4d41f">PxVehicleWheelsDynData</a>
<li>getTireLoadFilterData()
: <a class="el" href="classPxVehicleWheelsSimData.html#26b4e8206833ccde8c30985df8226343">PxVehicleWheelsSimData</a>
<li>getTolerance()
: <a class="el" href="classPxDistanceJoint.html#b4fac37f8d97e6f8c3e16a673267523f">PxDistanceJoint</a>
<li>getTolerancesScale()
: <a class="el" href="classPxPhysics.html#e6b06e75ab03222d301a15e14c5ac467">PxPhysics</a>
<li>getTotalContactCount()
: <a class="el" href="structPxContactStreamIterator.html#00325c2f9ec5f7806fd4fee360d7eebb">PxContactStreamIterator</a>
<li>getTotalPatchCount()
: <a class="el" href="structPxContactStreamIterator.html#76203f596d99e34fb814d637dfad12b6">PxContactStreamIterator</a>
<li>getTouch()
: <a class="el" href="structPxHitBuffer.html#92b117a1958a0cdcbb4aec3bc1fa1f64">PxHitBuffer< HitType ></a>
<li>getTouches()
: <a class="el" href="structPxHitBuffer.html#ab32a62e05389a4cc2c3baa2db0b3500">PxHitBuffer< HitType ></a>
<li>getTransport()
: <a class="el" href="classPxPvd.html#bacb259344c650f6cdededbb9b9f7c27">PxPvd</a>
<li>getTranspose()
: <a class="el" href="classPxMat44.html#f03cbe2d25cbab715ecb613037fedd47">PxMat44</a>
, <a class="el" href="classPxMat33.html#4ac2e5e46952e91a18126a5de02d2697">PxMat33</a>
<li>getTriangle()
: <a class="el" href="classPxMeshQuery.html#8acb2a510cda8105fe1d9f84acf20087">PxMeshQuery</a>
<li>getTriangleMaterialIndex()
: <a class="el" href="classPxHeightField.html#497c5cb500ffc7d5cc00929c2007723b">PxHeightField</a>
, <a class="el" href="classPxTriangleMesh.html#c6ce228303232206a8ac953152007818">PxTriangleMesh</a>
<li>getTriangleMeshes()
: <a class="el" href="classPxPhysics.html#a781fee3bcd9ea28cfaa45717c4a8738">PxPhysics</a>
<li>getTriangleMeshFlags()
: <a class="el" href="classPxTriangleMesh.html#df820099ddef71863f8528e6b8fc957c">PxTriangleMesh</a>
<li>getTriangleMeshGeometry()
: <a class="el" href="classPxShape.html#e10e641c3e5d77993440abe64c1446ea">PxShape</a>
<li>getTriangleNormal()
: <a class="el" href="classPxHeightField.html#36357857037f9fcb257e4c4ec8b85a04">PxHeightField</a>
<li>getTriangles()
: <a class="el" href="classPxRenderBuffer.html#5e9aa32a4544fcfcb96aa71702e1aad2">PxRenderBuffer</a>
, <a class="el" href="classPxTriangleMesh.html#1b5db3f6060849da98024a04ceb991e5">PxTriangleMesh</a>
<li>getTrianglesRemap()
: <a class="el" href="classPxTriangleMesh.html#6b36d40812d5cb70507472cd4e147ae0">PxTriangleMesh</a>
<li>getTwist()
: <a class="el" href="classPxD6Joint.html#a835389fb51c86ffb0a0aa32cbeec4f4">PxD6Joint</a>
<li>getTwistLimit()
: <a class="el" href="classPxArticulationJoint.html#af8d7d469a142c4375b333f159c9ca5b">PxArticulationJoint</a>
, <a class="el" href="classPxD6Joint.html#d61577f7428193e59399a4dd4a24e153">PxD6Joint</a>
<li>getTwistLimitContactDistance()
: <a class="el" href="classPxArticulationJoint.html#cc1318e01659cd325fae18a2cd482bdb">PxArticulationJoint</a>
<li>getTwistLimitEnabled()
: <a class="el" href="classPxArticulationJoint.html#32aea69d3b9a65c654581a8b55e4f6f1">PxArticulationJoint</a>
<li>getType()
: <a class="el" href="classPxControllerDesc.html#609846f3b5cc062d7c98686b669cca72">PxControllerDesc</a>
, <a class="el" href="classPxGeometryHolder.html#9cb321cfc08b5cb744bd52905e0a896f">PxGeometryHolder</a>
, <a class="el" href="classPxObstacle.html#7cf9794dae4affdf3fecdf93fdae82f4">PxObstacle</a>
, <a class="el" href="classPxActor.html#76a3489218f85ce9fe3ffb883ba8ce63">PxActor</a>
, <a class="el" href="classPxGeometry.html#da00045053aaa9bdc56eeb38066cbe29">PxGeometry</a>
, <a class="el" href="classPxController.html#d98589ad22dcdcedaf1c5fa9f0f40b53">PxController</a>
, <a class="el" href="classPxMidphaseDesc.html#02e9447258a748b314f7ee1896f4e5f4">PxMidphaseDesc</a>
<li>getTypeName()
: <a class="el" href="classPxRepXSerializer.html#91effb5024aa5a90fbbdbf7f17eba795">PxRepXSerializer</a>
<li>getTypePairFriction()
: <a class="el" href="classPxVehicleDrivableSurfaceToTireFrictionPairs.html#f65e20ba4b96bf8a57ca614e7d1c8330">PxVehicleDrivableSurfaceToTireFrictionPairs</a>
<li>getUpDirection()
: <a class="el" href="classPxController.html#d8fe2f181b59bcbee150f786bb41adfe">PxController</a>
<li>getUpRatios()
: <a class="el" href="classPxVehicleAutoBoxData.html#c49aba5e4f725aa26137976c34dcb0d3">PxVehicleAutoBoxData</a>
<li>getUseAutoGears()
: <a class="el" href="classPxVehicleDriveDynData.html#9b917f8ea42e952946fcfb2b2bab4842">PxVehicleDriveDynData</a>
<li>getUserData()
: <a class="el" href="classPxVehicleWheelsDynData.html#9a4779333ea3485a9e4a8108b395a276">PxVehicleWheelsDynData</a>
, <a class="el" href="classPxController.html#74cdda2b323e76b66ffc6a5c02376e92">PxController</a>
<li>getUserMemory()
: <a class="el" href="classPxBatchQuery.html#edffcfa27e47ef04274bb8180b42e913">PxBatchQuery</a>
<li>getVehicleType()
: <a class="el" href="classPxVehicleWheels.html#5f052bbb1eb12827dc03c4f0789ee703">PxVehicleWheels</a>
<li>getVelocity()
: <a class="el" href="classPxPrismaticJoint.html#672173b63a47773178dc275b96ba1f46">PxPrismaticJoint</a>
, <a class="el" href="classPxRevoluteJoint.html#6a629087f4d1aa356f4fc6927b5c7162">PxRevoluteJoint</a>
<li>getVelocityAtOffset()
: <a class="el" href="classPxRigidBodyExt.html#fed73713b7c1032a7ce921c7de25a278">PxRigidBodyExt</a>
<li>getVelocityAtPos()
: <a class="el" href="classPxRigidBodyExt.html#cce31159814673df7781eb62ee032ef2">PxRigidBodyExt</a>
<li>getVertices()
: <a class="el" href="classPxTriangleMesh.html#08c203991bc3ad2be59ad6ab048197dc">PxTriangleMesh</a>
, <a class="el" href="classPxConvexMesh.html#3698df65fd0496d92a0fb7e80b7fe30e">PxConvexMesh</a>
<li>getVerticesForModification()
: <a class="el" href="classPxTriangleMesh.html#261ef2fa9709a163408b41d2c34dda71">PxTriangleMesh</a>
<li>getVirtualParticles()
: <a class="el" href="classPxCloth.html#809f2a3c0093778728ffec589daac1b2">PxCloth</a>
<li>getVirtualParticleWeights()
: <a class="el" href="classPxCloth.html#f07fe823f8c077967af39557b9acd140">PxCloth</a>
<li>getViscosity()
: <a class="el" href="classPxParticleFluid.html#b75d9cc1304f3a9074bb6291215bad8c">PxParticleFluid</a>
<li>getVisualizationCullingBox()
: <a class="el" href="classPxScene.html#aab5854538e05abbe83c485e9d3ec082">PxScene</a>
<li>getVisualizationParameter()
: <a class="el" href="classPxScene.html#7c036458140a45b23facb9cf2a9cdb84">PxScene</a>
<li>getWakeCounter()
: <a class="el" href="classPxCloth.html#29eaa86742537a7643a4a13637bccb7c">PxCloth</a>
, <a class="el" href="classPxRigidDynamic.html#88dc31fa470c5f37e3e9683534ad83aa">PxRigidDynamic</a>
, <a class="el" href="classPxArticulation.html#9e7c111d4f17746b2b6686a2f5393e7e">PxArticulation</a>
<li>getWakeCounterResetValue()
: <a class="el" href="classPxScene.html#287734b244b7ff6e40496e65d166ae95">PxScene</a>
<li>getWheel4DynData()
: <a class="el" href="classPxVehicleWheelsDynData.html#3ba4423da9f8c80fe6b28cdbe83907de">PxVehicleWheelsDynData</a>
<li>getWheelCentreOffset()
: <a class="el" href="classPxVehicleWheelsSimData.html#0d271bc19187def7d38bf4d897015b84">PxVehicleWheelsSimData</a>
<li>getWheelData()
: <a class="el" href="classPxVehicleWheelsSimData.html#f4839513f4ad25ef33eaf5f20929af90">PxVehicleWheelsSimData</a>
<li>getWheelEnabledState()
: <a class="el" href="classPxVehicleWheelsSimData.html#f5a3db21baf26aacbf85d4fcf7849cf6">PxVehicleWheelsSimData</a>
<li>getWheelRotationAngle()
: <a class="el" href="classPxVehicleWheelsDynData.html#500ffeddc4dcc77dd398664e1b0189af">PxVehicleWheelsDynData</a>
<li>getWheelRotationSpeed()
: <a class="el" href="classPxVehicleWheelsDynData.html#fabd20cc561e3d908a86fc155c540311">PxVehicleWheelsDynData</a>
<li>getWheelShapeMapping()
: <a class="el" href="classPxVehicleWheelsSimData.html#3866719f3250a77a5426f2d0553332dc">PxVehicleWheelsSimData</a>
<li>getWindDrag()
: <a class="el" href="classPxCloth.html#3d7b5bb8e0c170df3791a213b33d04bf">PxCloth</a>
<li>getWindLift()
: <a class="el" href="classPxCloth.html#f5f4903c1d69d12d554a95fd20e42bcf">PxCloth</a>
<li>getWindVelocity()
: <a class="el" href="classPxCloth.html#be1d2b13183f5287f20a7be842d9e287">PxCloth</a>
<li>getWorkerCount()
: <a class="el" href="classphysx_1_1PxCpuDispatcher.html#55b03b2db9de4be06f5eace3e43f4ebc">physx::PxCpuDispatcher</a>
<li>getWorldBounds()
: <a class="el" href="classPxShapeExt.html#71b7808c2c0623fe264f7973be837897">PxShapeExt</a>
, <a class="el" href="classPxGeometryQuery.html#ac80fbc6fd9c2315aee6dddc9c1e9795">PxGeometryQuery</a>
, <a class="el" href="classPxActor.html#cab89ce3ee6d27b580063d131a417721">PxActor</a>
, <a class="el" href="classPxArticulation.html#96d818fec86bc80cbcae2097cfc5cf1b">PxArticulation</a>
, <a class="el" href="classPxCloth.html#86e89adaa6e6c0f7b5da218a45f4c5dc">PxCloth</a>
<li>getWrittenDataSize()
: <a class="el" href="classPxPvdTransport.html#21db3b3932ca803b5232f34c503f4f4e">PxPvdTransport</a>
<li>getX()
: <a class="el" href="classPxFixedSizeLookupTable.html#8e265a6d6b59e0e09125efa7c80f87fc">PxFixedSizeLookupTable< NB_ELEMENTS ></a>
<li>getXYZ()
: <a class="el" href="classPxVec4.html#b55d79de5b719a1cf3d9156497c06ad3">PxVec4</a>
<li>getY()
: <a class="el" href="classPxFixedSizeLookupTable.html#c78ea51478e2c60bc0f32d935d2e7a8e">PxFixedSizeLookupTable< NB_ELEMENTS ></a>
<li>getYVal()
: <a class="el" href="classPxFixedSizeLookupTable.html#583cd904e1ed8d9e1db6ad58dffa9aa6">PxFixedSizeLookupTable< NB_ELEMENTS ></a>
<li>globalPose
: <a class="el" href="structPxContactPairPose.html#b238e8a9bb30fe71637a27d497a64ca5">PxContactPairPose</a>
<li>gpuComputeVersion
: <a class="el" href="classPxSceneDesc.html#c02177181688e06f18f504e3ba6327a7">PxSceneDesc</a>
<li>gpuDispatcher
: <a class="el" href="classPxSceneDesc.html#e3e78a948f61b9b2d3cd47c62205bccc">PxSceneDesc</a>
<li>gpuDynamicsConfig
: <a class="el" href="classPxSceneDesc.html#b90ebca71afa21639bd99693df30e197">PxSceneDesc</a>
<li>gpuMaxNumPartitions
: <a class="el" href="classPxSceneDesc.html#3673610cdfbcb84103e2c3840754ecac">PxSceneDesc</a>
<li>gravity
: <a class="el" href="classPxSceneDesc.html#9b0de35c38c43b8aeff6e6f29bf0db20">PxSceneDesc</a>
</ul>
</div>
<hr style="width: 100%; height: 2px;"><br>
Copyright © 2008-2018 NVIDIA Corporation, 2701 San Tomas Expressway, Santa Clara, CA 95050 U.S.A. All rights reserved. <a href="http://www.nvidia.com ">www.nvidia.com</a>
</body>
</html>
|