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
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
|
---@meta
---@class love.physics
love.physics = {}
---
---Returns the two closest points between two fixtures and their distance.
---
---@param fixture1 love.Fixture # The first fixture.
---@param fixture2 love.Fixture # The second fixture.
---@return number distance # The distance of the two points.
---@return number x1 # The x-coordinate of the first point.
---@return number y1 # The y-coordinate of the first point.
---@return number x2 # The x-coordinate of the second point.
---@return number y2 # The y-coordinate of the second point.
function love.physics.getDistance(fixture1, fixture2) end
---
---Returns the meter scale factor.
---
---All coordinates in the physics module are divided by this number, creating a convenient way to draw the objects directly to the screen without the need for graphics transformations.
---
---It is recommended to create shapes no larger than 10 times the scale. This is important because Box2D is tuned to work well with shape sizes from 0.1 to 10 meters.
---
---@return number scale # The scale factor as an integer.
function love.physics.getMeter() end
---
---Creates a new body.
---
---There are three types of bodies.
---
---* Static bodies do not move, have a infinite mass, and can be used for level boundaries.
---
---* Dynamic bodies are the main actors in the simulation, they collide with everything.
---
---* Kinematic bodies do not react to forces and only collide with dynamic bodies.
---
---The mass of the body gets calculated when a Fixture is attached or removed, but can be changed at any time with Body:setMass or Body:resetMassData.
---
---@param world love.World # The world to create the body in.
---@param type love.BodyType # The type of the body.
---@return love.Body body # A new body.
function love.physics.newBody(world, type) end
---
---Creates a new ChainShape.
---
---@param loop boolean # If the chain should loop back to the first point.
---@param x1 number # The x position of the first point.
---@param y1 number # The y position of the first point.
---@param x2 number # The x position of the second point.
---@param y2 number # The y position of the second point.
---@return love.ChainShape shape # The new shape.
function love.physics.newChainShape(loop, x1, y1, x2, y2) end
---
---Creates a new CircleShape.
---
---@param radius number # The radius of the circle.
---@return love.CircleShape shape # The new shape.
function love.physics.newCircleShape(radius) end
---
---Creates a DistanceJoint between two bodies.
---
---This joint constrains the distance between two points on two bodies to be constant. These two points are specified in world coordinates and the two bodies are assumed to be in place when this joint is created. The first anchor point is connected to the first body and the second to the second body, and the points define the length of the distance joint.
---
---@param body1 love.Body # The first body to attach to the joint.
---@param body2 love.Body # The second body to attach to the joint.
---@param x1 number # The x position of the first anchor point (world space).
---@param y1 number # The y position of the first anchor point (world space).
---@param x2 number # The x position of the second anchor point (world space).
---@param y2 number # The y position of the second anchor point (world space).
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.DistanceJoint joint # The new distance joint.
function love.physics.newDistanceJoint(body1, body2, x1, y1, x2, y2, collideConnected) end
---
---Creates a new EdgeShape.
---
---@param x1 number # The x position of the first point.
---@param y1 number # The y position of the first point.
---@param x2 number # The x position of the second point.
---@param y2 number # The y position of the second point.
---@return love.EdgeShape shape # The new shape.
function love.physics.newEdgeShape(x1, y1, x2, y2) end
---
---Creates and attaches a Fixture to a body.
---
---Note that the Shape object is copied rather than kept as a reference when the Fixture is created. To get the Shape object that the Fixture owns, use Fixture:getShape.
---
---@param body love.Body # The body which gets the fixture attached.
---@param shape love.Shape # The shape to be copied to the fixture.
---@param density number # The density of the fixture.
---@return love.Fixture fixture # The new fixture.
function love.physics.newFixture(body, shape, density) end
---
---Create a friction joint between two bodies. A FrictionJoint applies friction to a body.
---
---@param body1 love.Body # The first body to attach to the joint.
---@param body2 love.Body # The second body to attach to the joint.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.FrictionJoint joint # The new FrictionJoint.
function love.physics.newFrictionJoint(body1, body2, collideConnected) end
---
---Create a GearJoint connecting two Joints.
---
---The gear joint connects two joints that must be either prismatic or revolute joints. Using this joint requires that the joints it uses connect their respective bodies to the ground and have the ground as the first body. When destroying the bodies and joints you must make sure you destroy the gear joint before the other joints.
---
---The gear joint has a ratio the determines how the angular or distance values of the connected joints relate to each other. The formula coordinate1 + ratio * coordinate2 always has a constant value that is set when the gear joint is created.
---
---@param joint1 love.Joint # The first joint to connect with a gear joint.
---@param joint2 love.Joint # The second joint to connect with a gear joint.
---@param ratio number # The gear ratio.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.GearJoint joint # The new gear joint.
function love.physics.newGearJoint(joint1, joint2, ratio, collideConnected) end
---
---Creates a joint between two bodies which controls the relative motion between them.
---
---Position and rotation offsets can be specified once the MotorJoint has been created, as well as the maximum motor force and torque that will be be applied to reach the target offsets.
---
---@param body1 love.Body # The first body to attach to the joint.
---@param body2 love.Body # The second body to attach to the joint.
---@param correctionFactor number # The joint's initial position correction factor, in the range of 1.
---@return love.MotorJoint joint # The new MotorJoint.
function love.physics.newMotorJoint(body1, body2, correctionFactor) end
---
---Create a joint between a body and the mouse.
---
---This joint actually connects the body to a fixed point in the world. To make it follow the mouse, the fixed point must be updated every timestep (example below).
---
---The advantage of using a MouseJoint instead of just changing a body position directly is that collisions and reactions to other joints are handled by the physics engine.
---
---@param body love.Body # The body to attach to the mouse.
---@return love.MouseJoint joint # The new mouse joint.
function love.physics.newMouseJoint(body) end
---
---Creates a new PolygonShape.
---
---This shape can have 8 vertices at most, and must form a convex shape.
---
---@param x1 number # The x position of the first point.
---@param y1 number # The y position of the first point.
---@param x2 number # The x position of the second point.
---@param y2 number # The y position of the second point.
---@param x3 number # The x position of the third point.
---@param y3 number # The y position of the third point.
---@return love.PolygonShape shape # A new PolygonShape.
function love.physics.newPolygonShape(x1, y1, x2, y2, x3, y3) end
---
---Creates a PrismaticJoint between two bodies.
---
---A prismatic joint constrains two bodies to move relatively to each other on a specified axis. It does not allow for relative rotation. Its definition and operation are similar to a revolute joint, but with translation and force substituted for angle and torque.
---
---@param body1 love.Body # The first body to connect with a prismatic joint.
---@param body2 love.Body # The second body to connect with a prismatic joint.
---@param ax number # The x coordinate of the axis vector.
---@param ay number # The y coordinate of the axis vector.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.PrismaticJoint joint # The new prismatic joint.
function love.physics.newPrismaticJoint(body1, body2, ax, ay, collideConnected) end
---
---Creates a PulleyJoint to join two bodies to each other and the ground.
---
---The pulley joint simulates a pulley with an optional block and tackle. If the ratio parameter has a value different from one, then the simulated rope extends faster on one side than the other. In a pulley joint the total length of the simulated rope is the constant length1 + ratio * length2, which is set when the pulley joint is created.
---
---Pulley joints can behave unpredictably if one side is fully extended. It is recommended that the method setMaxLengths be used to constrain the maximum lengths each side can attain.
---
---@param body1 love.Body # The first body to connect with a pulley joint.
---@param body2 love.Body # The second body to connect with a pulley joint.
---@param gx1 number # The x coordinate of the first body's ground anchor.
---@param gy1 number # The y coordinate of the first body's ground anchor.
---@param gx2 number # The x coordinate of the second body's ground anchor.
---@param gy2 number # The y coordinate of the second body's ground anchor.
---@param x1 number # The x coordinate of the pulley joint anchor in the first body.
---@param y1 number # The y coordinate of the pulley joint anchor in the first body.
---@param x2 number # The x coordinate of the pulley joint anchor in the second body.
---@param y2 number # The y coordinate of the pulley joint anchor in the second body.
---@param ratio number # The joint ratio.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.PulleyJoint joint # The new pulley joint.
function love.physics.newPulleyJoint(body1, body2, gx1, gy1, gx2, gy2, x1, y1, x2, y2, ratio, collideConnected) end
---
---Shorthand for creating rectangular PolygonShapes.
---
---By default, the local origin is located at the '''center''' of the rectangle as opposed to the top left for graphics.
---
---@param width number # The width of the rectangle.
---@param height number # The height of the rectangle.
---@return love.PolygonShape shape # A new PolygonShape.
function love.physics.newRectangleShape(width, height) end
---
---Creates a pivot joint between two bodies.
---
---This joint connects two bodies to a point around which they can pivot.
---
---@param body1 love.Body # The first body.
---@param body2 love.Body # The second body.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.RevoluteJoint joint # The new revolute joint.
function love.physics.newRevoluteJoint(body1, body2, collideConnected) end
---
---Creates a joint between two bodies. Its only function is enforcing a max distance between these bodies.
---
---@param body1 love.Body # The first body to attach to the joint.
---@param body2 love.Body # The second body to attach to the joint.
---@param x1 number # The x position of the first anchor point.
---@param y1 number # The y position of the first anchor point.
---@param x2 number # The x position of the second anchor point.
---@param y2 number # The y position of the second anchor point.
---@param maxLength number # The maximum distance for the bodies.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.RopeJoint joint # The new RopeJoint.
function love.physics.newRopeJoint(body1, body2, x1, y1, x2, y2, maxLength, collideConnected) end
---
---Creates a constraint joint between two bodies. A WeldJoint essentially glues two bodies together. The constraint is a bit soft, however, due to Box2D's iterative solver.
---
---@param body1 love.Body # The first body to attach to the joint.
---@param body2 love.Body # The second body to attach to the joint.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.WeldJoint joint # The new WeldJoint.
function love.physics.newWeldJoint(body1, body2, collideConnected) end
---
---Creates a wheel joint.
---
---@param body1 love.Body # The first body.
---@param body2 love.Body # The second body.
---@param ax number # The x position of the axis unit vector.
---@param ay number # The y position of the axis unit vector.
---@param collideConnected boolean # Specifies whether the two bodies should collide with each other.
---@return love.WheelJoint joint # The new WheelJoint.
function love.physics.newWheelJoint(body1, body2, ax, ay, collideConnected) end
---
---Creates a new World.
---
---@param xg number # The x component of gravity.
---@param yg number # The y component of gravity.
---@param sleep boolean # Whether the bodies in this world are allowed to sleep.
---@return love.World world # A brave new World.
function love.physics.newWorld(xg, yg, sleep) end
---
---Sets the pixels to meter scale factor.
---
---All coordinates in the physics module are divided by this number and converted to meters, and it creates a convenient way to draw the objects directly to the screen without the need for graphics transformations.
---
---It is recommended to create shapes no larger than 10 times the scale. This is important because Box2D is tuned to work well with shape sizes from 0.1 to 10 meters. The default meter scale is 30.
---
---@param scale number # The scale factor as an integer.
function love.physics.setMeter(scale) end
---@class love.Body: love.Object
local Body = {}
---
---Applies an angular impulse to a body. This makes a single, instantaneous addition to the body momentum.
---
---A body with with a larger mass will react less. The reaction does '''not''' depend on the timestep, and is equivalent to applying a force continuously for 1 second. Impulses are best used to give a single push to a body. For a continuous push to a body it is better to use Body:applyForce.
---
---@param impulse number # The impulse in kilogram-square meter per second.
function Body:applyAngularImpulse(impulse) end
---
---Apply force to a Body.
---
---A force pushes a body in a direction. A body with with a larger mass will react less. The reaction also depends on how long a force is applied: since the force acts continuously over the entire timestep, a short timestep will only push the body for a short time. Thus forces are best used for many timesteps to give a continuous push to a body (like gravity). For a single push that is independent of timestep, it is better to use Body:applyLinearImpulse.
---
---If the position to apply the force is not given, it will act on the center of mass of the body. The part of the force not directed towards the center of mass will cause the body to spin (and depends on the rotational inertia).
---
---Note that the force components and position must be given in world coordinates.
---
---@param fx number # The x component of force to apply to the center of mass.
---@param fy number # The y component of force to apply to the center of mass.
function Body:applyForce(fx, fy) end
---
---Applies an impulse to a body.
---
---This makes a single, instantaneous addition to the body momentum.
---
---An impulse pushes a body in a direction. A body with with a larger mass will react less. The reaction does '''not''' depend on the timestep, and is equivalent to applying a force continuously for 1 second. Impulses are best used to give a single push to a body. For a continuous push to a body it is better to use Body:applyForce.
---
---If the position to apply the impulse is not given, it will act on the center of mass of the body. The part of the impulse not directed towards the center of mass will cause the body to spin (and depends on the rotational inertia).
---
---Note that the impulse components and position must be given in world coordinates.
---
---@param ix number # The x component of the impulse applied to the center of mass.
---@param iy number # The y component of the impulse applied to the center of mass.
function Body:applyLinearImpulse(ix, iy) end
---
---Apply torque to a body.
---
---Torque is like a force that will change the angular velocity (spin) of a body. The effect will depend on the rotational inertia a body has.
---
---@param torque number # The torque to apply.
function Body:applyTorque(torque) end
---
---Explicitly destroys the Body and all fixtures and joints attached to it.
---
---An error will occur if you attempt to use the object after calling this function. In 0.7.2, when you don't have time to wait for garbage collection, this function may be used to free the object immediately.
---
function Body:destroy() end
---
---Get the angle of the body.
---
---The angle is measured in radians. If you need to transform it to degrees, use math.deg.
---
---A value of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes ''clockwise'' from our point of view.
---
---@return number angle # The angle in radians.
function Body:getAngle() end
---
---Gets the Angular damping of the Body
---
---The angular damping is the ''rate of decrease of the angular velocity over time'': A spinning body with no damping and no external forces will continue spinning indefinitely. A spinning body with damping will gradually stop spinning.
---
---Damping is not the same as friction - they can be modelled together. However, only damping is provided by Box2D (and LOVE).
---
---Damping parameters should be between 0 and infinity, with 0 meaning no damping, and infinity meaning full damping. Normally you will use a damping value between 0 and 0.1.
---
---@return number damping # The value of the angular damping.
function Body:getAngularDamping() end
---
---Get the angular velocity of the Body.
---
---The angular velocity is the ''rate of change of angle over time''.
---
---It is changed in World:update by applying torques, off centre forces/impulses, and angular damping. It can be set directly with Body:setAngularVelocity.
---
---If you need the ''rate of change of position over time'', use Body:getLinearVelocity.
---
function Body:getAngularVelocity() end
---
---Gets a list of all Contacts attached to the Body.
---
---@return table contacts # A list with all contacts associated with the Body.
function Body:getContacts() end
---
---Returns a table with all fixtures.
---
---@return table fixtures # A sequence with all fixtures.
function Body:getFixtures() end
---
---Returns the gravity scale factor.
---
---@return number scale # The gravity scale factor.
function Body:getGravityScale() end
---
---Gets the rotational inertia of the body.
---
---The rotational inertia is how hard is it to make the body spin.
---
---@return number inertia # The rotational inertial of the body.
function Body:getInertia() end
---
---Returns a table containing the Joints attached to this Body.
---
---@return table joints # A sequence with the Joints attached to the Body.
function Body:getJoints() end
---
---Gets the linear damping of the Body.
---
---The linear damping is the ''rate of decrease of the linear velocity over time''. A moving body with no damping and no external forces will continue moving indefinitely, as is the case in space. A moving body with damping will gradually stop moving.
---
---Damping is not the same as friction - they can be modelled together.
---
---@return number damping # The value of the linear damping.
function Body:getLinearDamping() end
---
---Gets the linear velocity of the Body from its center of mass.
---
---The linear velocity is the ''rate of change of position over time''.
---
---If you need the ''rate of change of angle over time'', use Body:getAngularVelocity.
---
---If you need to get the linear velocity of a point different from the center of mass:
---
---* Body:getLinearVelocityFromLocalPoint allows you to specify the point in local coordinates.
---
---* Body:getLinearVelocityFromWorldPoint allows you to specify the point in world coordinates.
---
---See page 136 of 'Essential Mathematics for Games and Interactive Applications' for definitions of local and world coordinates.
---
function Body:getLinearVelocity() end
---
---Get the linear velocity of a point on the body.
---
---The linear velocity for a point on the body is the velocity of the body center of mass plus the velocity at that point from the body spinning.
---
---The point on the body must given in local coordinates. Use Body:getLinearVelocityFromWorldPoint to specify this with world coordinates.
---
---@return number vx # The x component of velocity at point (x,y).
---@return number vy # The y component of velocity at point (x,y).
function Body:getLinearVelocityFromLocalPoint() end
---
---Get the linear velocity of a point on the body.
---
---The linear velocity for a point on the body is the velocity of the body center of mass plus the velocity at that point from the body spinning.
---
---The point on the body must given in world coordinates. Use Body:getLinearVelocityFromLocalPoint to specify this with local coordinates.
---
---@return number vx # The x component of velocity at point (x,y).
---@return number vy # The y component of velocity at point (x,y).
function Body:getLinearVelocityFromWorldPoint() end
---
---Get the center of mass position in local coordinates.
---
---Use Body:getWorldCenter to get the center of mass in world coordinates.
---
function Body:getLocalCenter() end
---
---Transform a point from world coordinates to local coordinates.
---
---@param worldX number # The x position in world coordinates.
---@param worldY number # The y position in world coordinates.
---@return number localX # The x position in local coordinates.
---@return number localY # The y position in local coordinates.
function Body:getLocalPoint(worldX, worldY) end
---
---Transform a vector from world coordinates to local coordinates.
---
---@param worldX number # The vector x component in world coordinates.
---@param worldY number # The vector y component in world coordinates.
---@return number localX # The vector x component in local coordinates.
---@return number localY # The vector y component in local coordinates.
function Body:getLocalVector(worldX, worldY) end
---
---Get the mass of the body.
---
---Static bodies always have a mass of 0.
---
---@return number mass # The mass of the body (in kilograms).
function Body:getMass() end
---
---Returns the mass, its center, and the rotational inertia.
---
---@return number mass # The mass of the body.
---@return number inertia # The rotational inertia.
function Body:getMassData() end
---
---Get the position of the body.
---
---Note that this may not be the center of mass of the body.
---
function Body:getPosition() end
---
---Get the position and angle of the body.
---
---Note that the position may not be the center of mass of the body. An angle of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes clockwise from our point of view.
---
---@return number angle # The angle in radians.
function Body:getTransform() end
---
---Returns the type of the body.
---
---@return love.BodyType type # The body type.
function Body:getType() end
---
---Returns the Lua value associated with this Body.
---
---@return any value # The Lua value associated with the Body.
function Body:getUserData() end
---
---Gets the World the body lives in.
---
---@return love.World world # The world the body lives in.
function Body:getWorld() end
---
---Get the center of mass position in world coordinates.
---
---Use Body:getLocalCenter to get the center of mass in local coordinates.
---
function Body:getWorldCenter() end
---
---Transform a point from local coordinates to world coordinates.
---
---@param localX number # The x position in local coordinates.
---@param localY number # The y position in local coordinates.
---@return number worldX # The x position in world coordinates.
---@return number worldY # The y position in world coordinates.
function Body:getWorldPoint(localX, localY) end
---
---Transforms multiple points from local coordinates to world coordinates.
---
---@param x1 number # The x position of the first point.
---@param y1 number # The y position of the first point.
---@param x2 number # The x position of the second point.
---@param y2 number # The y position of the second point.
---@return number x1 # The transformed x position of the first point.
---@return number y1 # The transformed y position of the first point.
---@return number x2 # The transformed x position of the second point.
---@return number y2 # The transformed y position of the second point.
function Body:getWorldPoints(x1, y1, x2, y2) end
---
---Transform a vector from local coordinates to world coordinates.
---
---@param localX number # The vector x component in local coordinates.
---@param localY number # The vector y component in local coordinates.
---@return number worldX # The vector x component in world coordinates.
---@return number worldY # The vector y component in world coordinates.
function Body:getWorldVector(localX, localY) end
---
---Get the x position of the body in world coordinates.
---
function Body:getX() end
---
---Get the y position of the body in world coordinates.
---
function Body:getY() end
---
---Returns whether the body is actively used in the simulation.
---
---@return boolean status # True if the body is active or false if not.
function Body:isActive() end
---
---Returns the sleep status of the body.
---
---@return boolean status # True if the body is awake or false if not.
function Body:isAwake() end
---
---Get the bullet status of a body.
---
---There are two methods to check for body collisions:
---
---* at their location when the world is updated (default)
---
---* using continuous collision detection (CCD)
---
---The default method is efficient, but a body moving very quickly may sometimes jump over another body without producing a collision. A body that is set as a bullet will use CCD. This is less efficient, but is guaranteed not to jump when moving quickly.
---
---Note that static bodies (with zero mass) always use CCD, so your walls will not let a fast moving body pass through even if it is not a bullet.
---
---@return boolean status # The bullet status of the body.
function Body:isBullet() end
---
---Gets whether the Body is destroyed. Destroyed bodies cannot be used.
---
---@return boolean destroyed # Whether the Body is destroyed.
function Body:isDestroyed() end
---
---Returns whether the body rotation is locked.
---
---@return boolean fixed # True if the body's rotation is locked or false if not.
function Body:isFixedRotation() end
---
---Returns the sleeping behaviour of the body.
---
---@return boolean allowed # True if the body is allowed to sleep or false if not.
function Body:isSleepingAllowed() end
---
---Gets whether the Body is touching the given other Body.
---
---@param otherbody love.Body # The other body to check.
---@return boolean touching # True if this body is touching the other body, false otherwise.
function Body:isTouching(otherbody) end
---
---Resets the mass of the body by recalculating it from the mass properties of the fixtures.
---
function Body:resetMassData() end
---
---Sets whether the body is active in the world.
---
---An inactive body does not take part in the simulation. It will not move or cause any collisions.
---
---@param active boolean # If the body is active or not.
function Body:setActive(active) end
---
---Set the angle of the body.
---
---The angle is measured in radians. If you need to transform it from degrees, use math.rad.
---
---A value of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes ''clockwise'' from our point of view.
---
---It is possible to cause a collision with another body by changing its angle.
---
---@param angle number # The angle in radians.
function Body:setAngle(angle) end
---
---Sets the angular damping of a Body
---
---See Body:getAngularDamping for a definition of angular damping.
---
---Angular damping can take any value from 0 to infinity. It is recommended to stay between 0 and 0.1, though. Other values will look unrealistic.
---
---@param damping number # The new angular damping.
function Body:setAngularDamping(damping) end
---
---Sets the angular velocity of a Body.
---
---The angular velocity is the ''rate of change of angle over time''.
---
---This function will not accumulate anything; any impulses previously applied since the last call to World:update will be lost.
---
function Body:setAngularVelocity() end
---
---Wakes the body up or puts it to sleep.
---
---@param awake boolean # The body sleep status.
function Body:setAwake(awake) end
---
---Set the bullet status of a body.
---
---There are two methods to check for body collisions:
---
---* at their location when the world is updated (default)
---
---* using continuous collision detection (CCD)
---
---The default method is efficient, but a body moving very quickly may sometimes jump over another body without producing a collision. A body that is set as a bullet will use CCD. This is less efficient, but is guaranteed not to jump when moving quickly.
---
---Note that static bodies (with zero mass) always use CCD, so your walls will not let a fast moving body pass through even if it is not a bullet.
---
---@param status boolean # The bullet status of the body.
function Body:setBullet(status) end
---
---Set whether a body has fixed rotation.
---
---Bodies with fixed rotation don't vary the speed at which they rotate. Calling this function causes the mass to be reset.
---
---@param isFixed boolean # Whether the body should have fixed rotation.
function Body:setFixedRotation(isFixed) end
---
---Sets a new gravity scale factor for the body.
---
---@param scale number # The new gravity scale factor.
function Body:setGravityScale(scale) end
---
---Set the inertia of a body.
---
---@param inertia number # The new moment of inertia, in kilograms * pixel squared.
function Body:setInertia(inertia) end
---
---Sets the linear damping of a Body
---
---See Body:getLinearDamping for a definition of linear damping.
---
---Linear damping can take any value from 0 to infinity. It is recommended to stay between 0 and 0.1, though. Other values will make the objects look 'floaty'(if gravity is enabled).
---
---@param ld number # The new linear damping
function Body:setLinearDamping(ld) end
---
---Sets a new linear velocity for the Body.
---
---This function will not accumulate anything; any impulses previously applied since the last call to World:update will be lost.
---
function Body:setLinearVelocity() end
---
---Sets a new body mass.
---
---@param mass number # The mass, in kilograms.
function Body:setMass(mass) end
---
---Overrides the calculated mass data.
---
---@param mass number # The mass of the body.
---@param inertia number # The rotational inertia.
function Body:setMassData(mass, inertia) end
---
---Set the position of the body.
---
---Note that this may not be the center of mass of the body.
---
---This function cannot wake up the body.
---
function Body:setPosition() end
---
---Sets the sleeping behaviour of the body. Should sleeping be allowed, a body at rest will automatically sleep. A sleeping body is not simulated unless it collided with an awake body. Be wary that one can end up with a situation like a floating sleeping body if the floor was removed.
---
---@param allowed boolean # True if the body is allowed to sleep or false if not.
function Body:setSleepingAllowed(allowed) end
---
---Set the position and angle of the body.
---
---Note that the position may not be the center of mass of the body. An angle of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes clockwise from our point of view.
---
---This function cannot wake up the body.
---
---@param angle number # The angle in radians.
function Body:setTransform(angle) end
---
---Sets a new body type.
---
---@param type love.BodyType # The new type.
function Body:setType(type) end
---
---Associates a Lua value with the Body.
---
---To delete the reference, explicitly pass nil.
---
---@param value any # The Lua value to associate with the Body.
function Body:setUserData(value) end
---
---Set the x position of the body.
---
---This function cannot wake up the body.
---
function Body:setX() end
---
---Set the y position of the body.
---
---This function cannot wake up the body.
---
function Body:setY() end
---@class love.ChainShape: love.Shape, love.Object
local ChainShape = {}
---
---Returns a child of the shape as an EdgeShape.
---
---@param index number # The index of the child.
---@return love.EdgeShape shape # The child as an EdgeShape.
function ChainShape:getChildEdge(index) end
---
---Gets the vertex that establishes a connection to the next shape.
---
---Setting next and previous ChainShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function ChainShape:getNextVertex() end
---
---Returns a point of the shape.
---
---@param index number # The index of the point to return.
function ChainShape:getPoint(index) end
---
---Returns all points of the shape.
---
---@return number x1 # The x-coordinate of the first point.
---@return number y1 # The y-coordinate of the first point.
---@return number x2 # The x-coordinate of the second point.
---@return number y2 # The y-coordinate of the second point.
function ChainShape:getPoints() end
---
---Gets the vertex that establishes a connection to the previous shape.
---
---Setting next and previous ChainShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function ChainShape:getPreviousVertex() end
---
---Returns the number of vertices the shape has.
---
---@return number count # The number of vertices.
function ChainShape:getVertexCount() end
---
---Sets a vertex that establishes a connection to the next shape.
---
---This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function ChainShape:setNextVertex() end
---
---Sets a vertex that establishes a connection to the previous shape.
---
---This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function ChainShape:setPreviousVertex() end
---@class love.CircleShape: love.Shape, love.Object
local CircleShape = {}
---
---Gets the center point of the circle shape.
---
function CircleShape:getPoint() end
---
---Gets the radius of the circle shape.
---
---@return number radius # The radius of the circle
function CircleShape:getRadius() end
---
---Sets the location of the center of the circle shape.
---
function CircleShape:setPoint() end
---
---Sets the radius of the circle.
---
---@param radius number # The radius of the circle
function CircleShape:setRadius(radius) end
---@class love.Contact: love.Object
local Contact = {}
---
---Gets the two Fixtures that hold the shapes that are in contact.
---
---@return love.Fixture fixtureA # The first Fixture.
---@return love.Fixture fixtureB # The second Fixture.
function Contact:getFixtures() end
---
---Get the friction between two shapes that are in contact.
---
---@return number friction # The friction of the contact.
function Contact:getFriction() end
---
---Get the normal vector between two shapes that are in contact.
---
---This function returns the coordinates of a unit vector that points from the first shape to the second.
---
---@return number nx # The x component of the normal vector.
---@return number ny # The y component of the normal vector.
function Contact:getNormal() end
---
---Returns the contact points of the two colliding fixtures. There can be one or two points.
---
---@return number x1 # The x coordinate of the first contact point.
---@return number y1 # The y coordinate of the first contact point.
---@return number x2 # The x coordinate of the second contact point.
---@return number y2 # The y coordinate of the second contact point.
function Contact:getPositions() end
---
---Get the restitution between two shapes that are in contact.
---
---@return number restitution # The restitution between the two shapes.
function Contact:getRestitution() end
---
---Returns whether the contact is enabled. The collision will be ignored if a contact gets disabled in the preSolve callback.
---
---@return boolean enabled # True if enabled, false otherwise.
function Contact:isEnabled() end
---
---Returns whether the two colliding fixtures are touching each other.
---
---@return boolean touching # True if they touch or false if not.
function Contact:isTouching() end
---
---Resets the contact friction to the mixture value of both fixtures.
---
function Contact:resetFriction() end
---
---Resets the contact restitution to the mixture value of both fixtures.
---
function Contact:resetRestitution() end
---
---Enables or disables the contact.
---
---@param enabled boolean # True to enable or false to disable.
function Contact:setEnabled(enabled) end
---
---Sets the contact friction.
---
---@param friction number # The contact friction.
function Contact:setFriction(friction) end
---
---Sets the contact restitution.
---
---@param restitution number # The contact restitution.
function Contact:setRestitution(restitution) end
---@class love.DistanceJoint: love.Joint, love.Object
local DistanceJoint = {}
---
---Gets the damping ratio.
---
---@return number ratio # The damping ratio.
function DistanceJoint:getDampingRatio() end
---
---Gets the response speed.
---
---@return number Hz # The response speed.
function DistanceJoint:getFrequency() end
---
---Gets the equilibrium distance between the two Bodies.
---
function DistanceJoint:getLength() end
---
---Sets the damping ratio.
---
---@param ratio number # The damping ratio.
function DistanceJoint:setDampingRatio(ratio) end
---
---Sets the response speed.
---
---@param Hz number # The response speed.
function DistanceJoint:setFrequency(Hz) end
---
---Sets the equilibrium distance between the two Bodies.
---
function DistanceJoint:setLength() end
---@class love.EdgeShape: love.Shape, love.Object
local EdgeShape = {}
---
---Gets the vertex that establishes a connection to the next shape.
---
---Setting next and previous EdgeShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function EdgeShape:getNextVertex() end
---
---Returns the local coordinates of the edge points.
---
---@return number x1 # The x-component of the first vertex.
---@return number y1 # The y-component of the first vertex.
---@return number x2 # The x-component of the second vertex.
---@return number y2 # The y-component of the second vertex.
function EdgeShape:getPoints() end
---
---Gets the vertex that establishes a connection to the previous shape.
---
---Setting next and previous EdgeShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function EdgeShape:getPreviousVertex() end
---
---Sets a vertex that establishes a connection to the next shape.
---
---This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function EdgeShape:setNextVertex() end
---
---Sets a vertex that establishes a connection to the previous shape.
---
---This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
---
function EdgeShape:setPreviousVertex() end
---@class love.Fixture: love.Object
local Fixture = {}
---
---Destroys the fixture.
---
function Fixture:destroy() end
---
---Returns the body to which the fixture is attached.
---
---@return love.Body body # The parent body.
function Fixture:getBody() end
---
---Returns the points of the fixture bounding box. In case the fixture has multiple children a 1-based index can be specified. For example, a fixture will have multiple children with a chain shape.
---
---@param index number # A bounding box of the fixture.
---@return number topLeftX # The x position of the top-left point.
---@return number topLeftY # The y position of the top-left point.
---@return number bottomRightX # The x position of the bottom-right point.
---@return number bottomRightY # The y position of the bottom-right point.
function Fixture:getBoundingBox(index) end
---
---Returns the categories the fixture belongs to.
---
---@return number category1 # The first category.
---@return number category2 # The second category.
function Fixture:getCategory() end
---
---Returns the density of the fixture.
---
---@return number density # The fixture density in kilograms per square meter.
function Fixture:getDensity() end
---
---Returns the filter data of the fixture.
---
---Categories and masks are encoded as the bits of a 16-bit integer.
---
---@return number categories # The categories as an integer from 0 to 65535.
---@return number mask # The mask as an integer from 0 to 65535.
---@return number group # The group as an integer from -32768 to 32767.
function Fixture:getFilterData() end
---
---Returns the friction of the fixture.
---
---@return number friction # The fixture friction.
function Fixture:getFriction() end
---
---Returns the group the fixture belongs to. Fixtures with the same group will always collide if the group is positive or never collide if it's negative. The group zero means no group.
---
---The groups range from -32768 to 32767.
---
---@return number group # The group of the fixture.
function Fixture:getGroupIndex() end
---
---Returns which categories this fixture should '''NOT''' collide with.
---
---@return number mask1 # The first category selected by the mask.
---@return number mask2 # The second category selected by the mask.
function Fixture:getMask() end
---
---Returns the mass, its center and the rotational inertia.
---
---@return number mass # The mass of the fixture.
---@return number inertia # The rotational inertia.
function Fixture:getMassData() end
---
---Returns the restitution of the fixture.
---
---@return number restitution # The fixture restitution.
function Fixture:getRestitution() end
---
---Returns the shape of the fixture. This shape is a reference to the actual data used in the simulation. It's possible to change its values between timesteps.
---
---@return love.Shape shape # The fixture's shape.
function Fixture:getShape() end
---
---Returns the Lua value associated with this fixture.
---
---@return any value # The Lua value associated with the fixture.
function Fixture:getUserData() end
---
---Gets whether the Fixture is destroyed. Destroyed fixtures cannot be used.
---
---@return boolean destroyed # Whether the Fixture is destroyed.
function Fixture:isDestroyed() end
---
---Returns whether the fixture is a sensor.
---
---@return boolean sensor # If the fixture is a sensor.
function Fixture:isSensor() end
---
---Casts a ray against the shape of the fixture and returns the surface normal vector and the line position where the ray hit. If the ray missed the shape, nil will be returned.
---
---The ray starts on the first point of the input line and goes towards the second point of the line. The fifth argument is the maximum distance the ray is going to travel as a scale factor of the input line length.
---
---The childIndex parameter is used to specify which child of a parent shape, such as a ChainShape, will be ray casted. For ChainShapes, the index of 1 is the first edge on the chain. Ray casting a parent shape will only test the child specified so if you want to test every shape of the parent, you must loop through all of its children.
---
---The world position of the impact can be calculated by multiplying the line vector with the third return value and adding it to the line starting point.
---
---hitx, hity = x1 + (x2 - x1) * fraction, y1 + (y2 - y1) * fraction
---
---@param x1 number # The x position of the input line starting point.
---@param y1 number # The y position of the input line starting point.
---@param x2 number # The x position of the input line end point.
---@param y2 number # The y position of the input line end point.
---@param maxFraction number # Ray length parameter.
---@param childIndex number # The index of the child the ray gets cast against.
---@return number xn # The x component of the normal vector of the edge where the ray hit the shape.
---@return number yn # The y component of the normal vector of the edge where the ray hit the shape.
---@return number fraction # The position on the input line where the intersection happened as a factor of the line length.
function Fixture:rayCast(x1, y1, x2, y2, maxFraction, childIndex) end
---
---Sets the categories the fixture belongs to. There can be up to 16 categories represented as a number from 1 to 16.
---
---All fixture's default category is 1.
---
---@param category1 number # The first category.
---@param category2 number # The second category.
function Fixture:setCategory(category1, category2) end
---
---Sets the density of the fixture. Call Body:resetMassData if this needs to take effect immediately.
---
---@param density number # The fixture density in kilograms per square meter.
function Fixture:setDensity(density) end
---
---Sets the filter data of the fixture.
---
---Groups, categories, and mask can be used to define the collision behaviour of the fixture.
---
---If two fixtures are in the same group they either always collide if the group is positive, or never collide if it's negative. If the group is zero or they do not match, then the contact filter checks if the fixtures select a category of the other fixture with their masks. The fixtures do not collide if that's not the case. If they do have each other's categories selected, the return value of the custom contact filter will be used. They always collide if none was set.
---
---There can be up to 16 categories. Categories and masks are encoded as the bits of a 16-bit integer.
---
---When created, prior to calling this function, all fixtures have category set to 1, mask set to 65535 (all categories) and group set to 0.
---
---This function allows setting all filter data for a fixture at once. To set only the categories, the mask or the group, you can use Fixture:setCategory, Fixture:setMask or Fixture:setGroupIndex respectively.
---
---@param categories number # The categories as an integer from 0 to 65535.
---@param mask number # The mask as an integer from 0 to 65535.
---@param group number # The group as an integer from -32768 to 32767.
function Fixture:setFilterData(categories, mask, group) end
---
---Sets the friction of the fixture.
---
---Friction determines how shapes react when they 'slide' along other shapes. Low friction indicates a slippery surface, like ice, while high friction indicates a rough surface, like concrete. Range: 0.0 - 1.0.
---
---@param friction number # The fixture friction.
function Fixture:setFriction(friction) end
---
---Sets the group the fixture belongs to. Fixtures with the same group will always collide if the group is positive or never collide if it's negative. The group zero means no group.
---
---The groups range from -32768 to 32767.
---
---@param group number # The group as an integer from -32768 to 32767.
function Fixture:setGroupIndex(group) end
---
---Sets the category mask of the fixture. There can be up to 16 categories represented as a number from 1 to 16.
---
---This fixture will '''NOT''' collide with the fixtures that are in the selected categories if the other fixture also has a category of this fixture selected.
---
---@param mask1 number # The first category.
---@param mask2 number # The second category.
function Fixture:setMask(mask1, mask2) end
---
---Sets the restitution of the fixture.
---
---@param restitution number # The fixture restitution.
function Fixture:setRestitution(restitution) end
---
---Sets whether the fixture should act as a sensor.
---
---Sensors do not cause collision responses, but the begin-contact and end-contact World callbacks will still be called for this fixture.
---
---@param sensor boolean # The sensor status.
function Fixture:setSensor(sensor) end
---
---Associates a Lua value with the fixture.
---
---To delete the reference, explicitly pass nil.
---
---@param value any # The Lua value to associate with the fixture.
function Fixture:setUserData(value) end
---
---Checks if a point is inside the shape of the fixture.
---
---@return boolean isInside # True if the point is inside or false if it is outside.
function Fixture:testPoint() end
---@class love.FrictionJoint: love.Joint, love.Object
local FrictionJoint = {}
---
---Gets the maximum friction force in Newtons.
---
---@return number force # Maximum force in Newtons.
function FrictionJoint:getMaxForce() end
---
---Gets the maximum friction torque in Newton-meters.
---
---@return number torque # Maximum torque in Newton-meters.
function FrictionJoint:getMaxTorque() end
---
---Sets the maximum friction force in Newtons.
---
---@param maxForce number # Max force in Newtons.
function FrictionJoint:setMaxForce(maxForce) end
---
---Sets the maximum friction torque in Newton-meters.
---
---@param torque number # Maximum torque in Newton-meters.
function FrictionJoint:setMaxTorque(torque) end
---@class love.GearJoint: love.Joint, love.Object
local GearJoint = {}
---
---Get the Joints connected by this GearJoint.
---
---@return love.Joint joint1 # The first connected Joint.
---@return love.Joint joint2 # The second connected Joint.
function GearJoint:getJoints() end
---
---Get the ratio of a gear joint.
---
---@return number ratio # The ratio of the joint.
function GearJoint:getRatio() end
---
---Set the ratio of a gear joint.
---
---@param ratio number # The new ratio of the joint.
function GearJoint:setRatio(ratio) end
---@class love.Joint: love.Object
local Joint = {}
---
---Explicitly destroys the Joint. An error will occur if you attempt to use the object after calling this function.
---
---In 0.7.2, when you don't have time to wait for garbage collection, this function
---
---may be used to free the object immediately.
---
function Joint:destroy() end
---
---Get the anchor points of the joint.
---
---@return number x1 # The x-component of the anchor on Body 1.
---@return number y1 # The y-component of the anchor on Body 1.
---@return number x2 # The x-component of the anchor on Body 2.
---@return number y2 # The y-component of the anchor on Body 2.
function Joint:getAnchors() end
---
---Gets the bodies that the Joint is attached to.
---
---@return love.Body bodyA # The first Body.
---@return love.Body bodyB # The second Body.
function Joint:getBodies() end
---
---Gets whether the connected Bodies collide.
---
function Joint:getCollideConnected() end
---
---Returns the reaction force in newtons on the second body
---
function Joint:getReactionForce() end
---
---Returns the reaction torque on the second body.
---
---@param invdt number # How long the force applies. Usually the inverse time step or 1/dt.
---@return number torque # The reaction torque on the second body.
function Joint:getReactionTorque(invdt) end
---
---Gets a string representing the type.
---
---@return love.JointType type # A string with the name of the Joint type.
function Joint:getType() end
---
---Returns the Lua value associated with this Joint.
---
---@return any value # The Lua value associated with the Joint.
function Joint:getUserData() end
---
---Gets whether the Joint is destroyed. Destroyed joints cannot be used.
---
---@return boolean destroyed # Whether the Joint is destroyed.
function Joint:isDestroyed() end
---
---Associates a Lua value with the Joint.
---
---To delete the reference, explicitly pass nil.
---
---@param value any # The Lua value to associate with the Joint.
function Joint:setUserData(value) end
---@class love.MotorJoint: love.Joint, love.Object
local MotorJoint = {}
---
---Gets the target angular offset between the two Bodies the Joint is attached to.
---
---@return number angleoffset # The target angular offset in radians: the second body's angle minus the first body's angle.
function MotorJoint:getAngularOffset() end
---
---Gets the target linear offset between the two Bodies the Joint is attached to.
---
function MotorJoint:getLinearOffset() end
---
---Sets the target angluar offset between the two Bodies the Joint is attached to.
---
---@param angleoffset number # The target angular offset in radians: the second body's angle minus the first body's angle.
function MotorJoint:setAngularOffset(angleoffset) end
---
---Sets the target linear offset between the two Bodies the Joint is attached to.
---
function MotorJoint:setLinearOffset() end
---@class love.MouseJoint: love.Joint, love.Object
local MouseJoint = {}
---
---Returns the damping ratio.
---
---@return number ratio # The new damping ratio.
function MouseJoint:getDampingRatio() end
---
---Returns the frequency.
---
---@return number freq # The frequency in hertz.
function MouseJoint:getFrequency() end
---
---Gets the highest allowed force.
---
function MouseJoint:getMaxForce() end
---
---Gets the target point.
---
function MouseJoint:getTarget() end
---
---Sets a new damping ratio.
---
---@param ratio number # The new damping ratio.
function MouseJoint:setDampingRatio(ratio) end
---
---Sets a new frequency.
---
---@param freq number # The new frequency in hertz.
function MouseJoint:setFrequency(freq) end
---
---Sets the highest allowed force.
---
function MouseJoint:setMaxForce() end
---
---Sets the target point.
---
function MouseJoint:setTarget() end
---@class love.PolygonShape: love.Shape, love.Object
local PolygonShape = {}
---
---Get the local coordinates of the polygon's vertices.
---
---This function has a variable number of return values. It can be used in a nested fashion with love.graphics.polygon.
---
---@return number x1 # The x-component of the first vertex.
---@return number y1 # The y-component of the first vertex.
---@return number x2 # The x-component of the second vertex.
---@return number y2 # The y-component of the second vertex.
function PolygonShape:getPoints() end
---@class love.PrismaticJoint: love.Joint, love.Object
local PrismaticJoint = {}
---
---Checks whether the limits are enabled.
---
---@return boolean enabled # True if enabled, false otherwise.
function PrismaticJoint:areLimitsEnabled() end
---
---Gets the world-space axis vector of the Prismatic Joint.
---
function PrismaticJoint:getAxis() end
---
---Get the current joint angle speed.
---
function PrismaticJoint:getJointSpeed() end
---
---Get the current joint translation.
---
function PrismaticJoint:getJointTranslation() end
---
---Gets the joint limits.
---
---@return number lower # The lower limit, usually in meters.
---@return number upper # The upper limit, usually in meters.
function PrismaticJoint:getLimits() end
---
---Gets the lower limit.
---
---@return number lower # The lower limit, usually in meters.
function PrismaticJoint:getLowerLimit() end
---
---Gets the maximum motor force.
---
function PrismaticJoint:getMaxMotorForce() end
---
---Returns the current motor force.
---
---@param invdt number # How long the force applies. Usually the inverse time step or 1/dt.
---@return number force # The force on the motor in newtons.
function PrismaticJoint:getMotorForce(invdt) end
---
---Gets the motor speed.
---
function PrismaticJoint:getMotorSpeed() end
---
---Gets the upper limit.
---
---@return number upper # The upper limit, usually in meters.
function PrismaticJoint:getUpperLimit() end
---
---Checks whether the motor is enabled.
---
---@return boolean enabled # True if enabled, false if disabled.
function PrismaticJoint:isMotorEnabled() end
---
---Sets the limits.
---
---@param lower number # The lower limit, usually in meters.
---@param upper number # The upper limit, usually in meters.
function PrismaticJoint:setLimits(lower, upper) end
---
---Enables/disables the joint limit.
---
---@return boolean enable # True if enabled, false if disabled.
function PrismaticJoint:setLimitsEnabled() end
---
---Sets the lower limit.
---
---@param lower number # The lower limit, usually in meters.
function PrismaticJoint:setLowerLimit(lower) end
---
---Set the maximum motor force.
---
function PrismaticJoint:setMaxMotorForce() end
---
---Enables/disables the joint motor.
---
---@param enable boolean # True to enable, false to disable.
function PrismaticJoint:setMotorEnabled(enable) end
---
---Sets the motor speed.
---
function PrismaticJoint:setMotorSpeed() end
---
---Sets the upper limit.
---
---@param upper number # The upper limit, usually in meters.
function PrismaticJoint:setUpperLimit(upper) end
---@class love.PulleyJoint: love.Joint, love.Object
local PulleyJoint = {}
---
---Get the total length of the rope.
---
---@return number length # The length of the rope in the joint.
function PulleyJoint:getConstant() end
---
---Get the ground anchor positions in world coordinates.
---
---@return number a1x # The x coordinate of the first anchor.
---@return number a1y # The y coordinate of the first anchor.
---@return number a2x # The x coordinate of the second anchor.
---@return number a2y # The y coordinate of the second anchor.
function PulleyJoint:getGroundAnchors() end
---
---Get the current length of the rope segment attached to the first body.
---
---@return number length # The length of the rope segment.
function PulleyJoint:getLengthA() end
---
---Get the current length of the rope segment attached to the second body.
---
---@return number length # The length of the rope segment.
function PulleyJoint:getLengthB() end
---
---Get the maximum lengths of the rope segments.
---
---@return number len1 # The maximum length of the first rope segment.
---@return number len2 # The maximum length of the second rope segment.
function PulleyJoint:getMaxLengths() end
---
---Get the pulley ratio.
---
---@return number ratio # The pulley ratio of the joint.
function PulleyJoint:getRatio() end
---
---Set the total length of the rope.
---
---Setting a new length for the rope updates the maximum length values of the joint.
---
---@param length number # The new length of the rope in the joint.
function PulleyJoint:setConstant(length) end
---
---Set the maximum lengths of the rope segments.
---
---The physics module also imposes maximum values for the rope segments. If the parameters exceed these values, the maximum values are set instead of the requested values.
---
---@param max1 number # The new maximum length of the first segment.
---@param max2 number # The new maximum length of the second segment.
function PulleyJoint:setMaxLengths(max1, max2) end
---
---Set the pulley ratio.
---
---@param ratio number # The new pulley ratio of the joint.
function PulleyJoint:setRatio(ratio) end
---@class love.RevoluteJoint: love.Joint, love.Object
local RevoluteJoint = {}
---
---Checks whether limits are enabled.
---
---@return boolean enabled # True if enabled, false otherwise.
function RevoluteJoint:areLimitsEnabled() end
---
---Get the current joint angle.
---
---@return number angle # The joint angle in radians.
function RevoluteJoint:getJointAngle() end
---
---Get the current joint angle speed.
---
function RevoluteJoint:getJointSpeed() end
---
---Gets the joint limits.
---
---@return number lower # The lower limit, in radians.
---@return number upper # The upper limit, in radians.
function RevoluteJoint:getLimits() end
---
---Gets the lower limit.
---
---@return number lower # The lower limit, in radians.
function RevoluteJoint:getLowerLimit() end
---
---Gets the maximum motor force.
---
function RevoluteJoint:getMaxMotorTorque() end
---
---Gets the motor speed.
---
function RevoluteJoint:getMotorSpeed() end
---
---Get the current motor force.
---
function RevoluteJoint:getMotorTorque() end
---
---Gets the upper limit.
---
---@return number upper # The upper limit, in radians.
function RevoluteJoint:getUpperLimit() end
---
---Checks whether limits are enabled.
---
---@return boolean enabled # True if enabled, false otherwise.
function RevoluteJoint:hasLimitsEnabled() end
---
---Checks whether the motor is enabled.
---
---@return boolean enabled # True if enabled, false if disabled.
function RevoluteJoint:isMotorEnabled() end
---
---Sets the limits.
---
---@param lower number # The lower limit, in radians.
---@param upper number # The upper limit, in radians.
function RevoluteJoint:setLimits(lower, upper) end
---
---Enables/disables the joint limit.
---
---@param enable boolean # True to enable, false to disable.
function RevoluteJoint:setLimitsEnabled(enable) end
---
---Sets the lower limit.
---
---@param lower number # The lower limit, in radians.
function RevoluteJoint:setLowerLimit(lower) end
---
---Set the maximum motor force.
---
function RevoluteJoint:setMaxMotorTorque() end
---
---Enables/disables the joint motor.
---
---@param enable boolean # True to enable, false to disable.
function RevoluteJoint:setMotorEnabled(enable) end
---
---Sets the motor speed.
---
function RevoluteJoint:setMotorSpeed() end
---
---Sets the upper limit.
---
---@param upper number # The upper limit, in radians.
function RevoluteJoint:setUpperLimit(upper) end
---@class love.RopeJoint: love.Joint, love.Object
local RopeJoint = {}
---
---Gets the maximum length of a RopeJoint.
---
---@return number maxLength # The maximum length of the RopeJoint.
function RopeJoint:getMaxLength() end
---
---Sets the maximum length of a RopeJoint.
---
---@param maxLength number # The new maximum length of the RopeJoint.
function RopeJoint:setMaxLength(maxLength) end
---@class love.Shape: love.Object
local Shape = {}
---
---Returns the points of the bounding box for the transformed shape.
---
---@param tx number # The translation of the shape on the x-axis.
---@param ty number # The translation of the shape on the y-axis.
---@param tr number # The shape rotation.
---@param childIndex number # The index of the child to compute the bounding box of.
---@return number topLeftX # The x position of the top-left point.
---@return number topLeftY # The y position of the top-left point.
---@return number bottomRightX # The x position of the bottom-right point.
---@return number bottomRightY # The y position of the bottom-right point.
function Shape:computeAABB(tx, ty, tr, childIndex) end
---
---Computes the mass properties for the shape with the specified density.
---
---@param density number # The shape density.
---@return number mass # The mass of the shape.
---@return number inertia # The rotational inertia.
function Shape:computeMass(density) end
---
---Returns the number of children the shape has.
---
---@return number count # The number of children.
function Shape:getChildCount() end
---
---Gets the radius of the shape.
---
---@return number radius # The radius of the shape.
function Shape:getRadius() end
---
---Gets a string representing the Shape.
---
---This function can be useful for conditional debug drawing.
---
---@return love.ShapeType type # The type of the Shape.
function Shape:getType() end
---
---Casts a ray against the shape and returns the surface normal vector and the line position where the ray hit. If the ray missed the shape, nil will be returned. The Shape can be transformed to get it into the desired position.
---
---The ray starts on the first point of the input line and goes towards the second point of the line. The fourth argument is the maximum distance the ray is going to travel as a scale factor of the input line length.
---
---The childIndex parameter is used to specify which child of a parent shape, such as a ChainShape, will be ray casted. For ChainShapes, the index of 1 is the first edge on the chain. Ray casting a parent shape will only test the child specified so if you want to test every shape of the parent, you must loop through all of its children.
---
---The world position of the impact can be calculated by multiplying the line vector with the third return value and adding it to the line starting point.
---
---hitx, hity = x1 + (x2 - x1) * fraction, y1 + (y2 - y1) * fraction
---
---@param x1 number # The x position of the input line starting point.
---@param y1 number # The y position of the input line starting point.
---@param x2 number # The x position of the input line end point.
---@param y2 number # The y position of the input line end point.
---@param maxFraction number # Ray length parameter.
---@param tx number # The translation of the shape on the x-axis.
---@param ty number # The translation of the shape on the y-axis.
---@param tr number # The shape rotation.
---@param childIndex number # The index of the child the ray gets cast against.
---@return number xn # The x component of the normal vector of the edge where the ray hit the shape.
---@return number yn # The y component of the normal vector of the edge where the ray hit the shape.
---@return number fraction # The position on the input line where the intersection happened as a factor of the line length.
function Shape:rayCast(x1, y1, x2, y2, maxFraction, tx, ty, tr, childIndex) end
---
---This is particularly useful for mouse interaction with the shapes. By looping through all shapes and testing the mouse position with this function, we can find which shapes the mouse touches.
---
---@param tx number # Translates the shape along the x-axis.
---@param ty number # Translates the shape along the y-axis.
---@param tr number # Rotates the shape.
---@return boolean hit # True if inside, false if outside
function Shape:testPoint(tx, ty, tr) end
---@class love.WeldJoint: love.Joint, love.Object
local WeldJoint = {}
---
---Returns the damping ratio of the joint.
---
---@return number ratio # The damping ratio.
function WeldJoint:getDampingRatio() end
---
---Returns the frequency.
---
---@return number freq # The frequency in hertz.
function WeldJoint:getFrequency() end
---
---Sets a new damping ratio.
---
---@param ratio number # The new damping ratio.
function WeldJoint:setDampingRatio(ratio) end
---
---Sets a new frequency.
---
---@param freq number # The new frequency in hertz.
function WeldJoint:setFrequency(freq) end
---@class love.WheelJoint: love.Joint, love.Object
local WheelJoint = {}
---
---Gets the world-space axis vector of the Wheel Joint.
---
function WheelJoint:getAxis() end
---
---Returns the current joint translation speed.
---
---@return number speed # The translation speed of the joint in meters per second.
function WheelJoint:getJointSpeed() end
---
---Returns the current joint translation.
---
---@return number position # The translation of the joint in meters.
function WheelJoint:getJointTranslation() end
---
---Returns the maximum motor torque.
---
---@return number maxTorque # The maximum torque of the joint motor in newton meters.
function WheelJoint:getMaxMotorTorque() end
---
---Returns the speed of the motor.
---
---@return number speed # The speed of the joint motor in radians per second.
function WheelJoint:getMotorSpeed() end
---
---Returns the current torque on the motor.
---
---@param invdt number # How long the force applies. Usually the inverse time step or 1/dt.
---@return number torque # The torque on the motor in newton meters.
function WheelJoint:getMotorTorque(invdt) end
---
---Returns the damping ratio.
---
---@return number ratio # The damping ratio.
function WheelJoint:getSpringDampingRatio() end
---
---Returns the spring frequency.
---
---@return number freq # The frequency in hertz.
function WheelJoint:getSpringFrequency() end
---
---Sets a new maximum motor torque.
---
---@param maxTorque number # The new maximum torque for the joint motor in newton meters.
function WheelJoint:setMaxMotorTorque(maxTorque) end
---
---Starts and stops the joint motor.
---
---@param enable boolean # True turns the motor on and false turns it off.
function WheelJoint:setMotorEnabled(enable) end
---
---Sets a new speed for the motor.
---
---@param speed number # The new speed for the joint motor in radians per second.
function WheelJoint:setMotorSpeed(speed) end
---
---Sets a new damping ratio.
---
---@param ratio number # The new damping ratio.
function WheelJoint:setSpringDampingRatio(ratio) end
---
---Sets a new spring frequency.
---
---@param freq number # The new frequency in hertz.
function WheelJoint:setSpringFrequency(freq) end
---@class love.World: love.Object
local World = {}
---
---Destroys the world, taking all bodies, joints, fixtures and their shapes with it.
---
---An error will occur if you attempt to use any of the destroyed objects after calling this function.
---
function World:destroy() end
---
---Returns a table with all bodies.
---
---@return table bodies # A sequence with all bodies.
function World:getBodies() end
---
---Returns the number of bodies in the world.
---
function World:getBodyCount() end
---
---Returns functions for the callbacks during the world update.
---
---@return function beginContact # Gets called when two fixtures begin to overlap.
---@return function endContact # Gets called when two fixtures cease to overlap.
---@return function preSolve # Gets called before a collision gets resolved.
---@return function postSolve # Gets called after the collision has been resolved.
function World:getCallbacks() end
---
---Returns the number of contacts in the world.
---
function World:getContactCount() end
---
---Returns the function for collision filtering.
---
---@return function contactFilter # The function that handles the contact filtering.
function World:getContactFilter() end
---
---Returns a table with all Contacts.
---
---@return table contacts # A sequence with all Contacts.
function World:getContacts() end
---
---Get the gravity of the world.
---
function World:getGravity() end
---
---Returns the number of joints in the world.
---
function World:getJointCount() end
---
---Returns a table with all joints.
---
---@return table joints # A sequence with all joints.
function World:getJoints() end
---
---Gets whether the World is destroyed. Destroyed worlds cannot be used.
---
---@return boolean destroyed # Whether the World is destroyed.
function World:isDestroyed() end
---
---Returns if the world is updating its state.
---
---This will return true inside the callbacks from World:setCallbacks.
---
---@return boolean locked # Will be true if the world is in the process of updating its state.
function World:isLocked() end
---
---Gets the sleep behaviour of the world.
---
---@return boolean allow # True if bodies in the world are allowed to sleep, or false if not.
function World:isSleepingAllowed() end
---
---Calls a function for each fixture inside the specified area by searching for any overlapping bounding box (Fixture:getBoundingBox).
---
---@param topLeftX number # The x position of the top-left point.
---@param topLeftY number # The y position of the top-left point.
---@param bottomRightX number # The x position of the bottom-right point.
---@param bottomRightY number # The y position of the bottom-right point.
---@param callback function # This function gets passed one argument, the fixture, and should return a boolean. The search will continue if it is true or stop if it is false.
function World:queryBoundingBox(topLeftX, topLeftY, bottomRightX, bottomRightY, callback) end
---
---Casts a ray and calls a function for each fixtures it intersects.
---
---@param fixture love.Fixture # The fixture intersecting the ray.
---@param xn number # The x value of the surface normal vector of the shape edge.
---@param yn number # The y value of the surface normal vector of the shape edge.
---@param fraction number # The position of the intersection on the ray as a number from 0 to 1 (or even higher if the ray length was changed with the return value).
---@return number control # The ray can be controlled with the return value. A positive value sets a new ray length where 1 is the default value. A value of 0 terminates the ray. If the callback function returns -1, the intersection gets ignored as if it didn't happen.
function World:rayCast(fixture, xn, yn, fraction) end
---
---Sets functions for the collision callbacks during the world update.
---
---Four Lua functions can be given as arguments. The value nil removes a function.
---
---When called, each function will be passed three arguments. The first two arguments are the colliding fixtures and the third argument is the Contact between them. The postSolve callback additionally gets the normal and tangent impulse for each contact point. See notes.
---
---If you are interested to know when exactly each callback is called, consult a Box2d manual
---
---@param beginContact function # Gets called when two fixtures begin to overlap.
---@param endContact function # Gets called when two fixtures cease to overlap. This will also be called outside of a world update, when colliding objects are destroyed.
---@param preSolve function # Gets called before a collision gets resolved.
---@param postSolve function # Gets called after the collision has been resolved.
function World:setCallbacks(beginContact, endContact, preSolve, postSolve) end
---
---Sets a function for collision filtering.
---
---If the group and category filtering doesn't generate a collision decision, this function gets called with the two fixtures as arguments. The function should return a boolean value where true means the fixtures will collide and false means they will pass through each other.
---
---@param filter function # The function handling the contact filtering.
function World:setContactFilter(filter) end
---
---Set the gravity of the world.
---
function World:setGravity() end
---
---Sets the sleep behaviour of the world.
---
---@param allow boolean # True if bodies in the world are allowed to sleep, or false if not.
function World:setSleepingAllowed(allow) end
---
---Translates the World's origin. Useful in large worlds where floating point precision issues become noticeable at far distances from the origin.
---
function World:translateOrigin() end
---
---Update the state of the world.
---
---@param dt number # The time (in seconds) to advance the physics simulation.
---@param velocityiterations number # The maximum number of steps used to determine the new velocities when resolving a collision.
---@param positioniterations number # The maximum number of steps used to determine the new positions when resolving a collision.
function World:update(dt, velocityiterations, positioniterations) end
---@class love.BodyType
---@field static integer # Static bodies do not move.
---@field dynamic integer # Dynamic bodies collide with all bodies.
---@field kinematic integer # Kinematic bodies only collide with dynamic bodies.
---@class love.JointType
---@field distance integer # A DistanceJoint.
---@field friction integer # A FrictionJoint.
---@field gear integer # A GearJoint.
---@field mouse integer # A MouseJoint.
---@field prismatic integer # A PrismaticJoint.
---@field pulley integer # A PulleyJoint.
---@field revolute integer # A RevoluteJoint.
---@field rope integer # A RopeJoint.
---@field weld integer # A WeldJoint.
---@class love.ShapeType
---@field circle integer # The Shape is a CircleShape.
---@field polygon integer # The Shape is a PolygonShape.
---@field edge integer # The Shape is a EdgeShape.
---@field chain integer # The Shape is a ChainShape.
|