UNPKG
@mousepox/math
Version:
latest (1.7.3)
1.7.3
1.7.2
1.7.1
1.7.0
1.6.1
1.6.0
1.5.0
1.4.1
1.4.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
0.4.0
0.3.1
0.3.0
0.2.0
0.1.0
Math-related objects and utilities
@mousepox/math
/
dist
/
astar.d.ts
4 lines
(3 loc)
•
177 B
TypeScript
View Raw
1
2
3
4
import
{
IPoint
}
from
"./core"
;
import
{
Grid
}
from
"./Grid"
;
export
declare
function
astar
(
grid
:
Grid
,
x1
:
number
,
y1
:
number
,
x2
:
number
,
y2
:
number
):
IPoint
[] |
undefined
;