UNPKG
@irysius/grid-math
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Tools to assist with grid math and algorithms
github.com/irysius/grid-math
irysius/grid-math
@irysius/grid-math
/
ScreenPosition.d.ts
8 lines
•
306 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
module
"@irysius/grid-math/ScreenPosition"
{
import
{
IVector2
}
from
"@irysius/grid-math/Vector2"
;
export
const
TYPE
:
'screen'
;
export
interface
IScreenPosition
extends
IVector2
{
type
:
'screen'
; }
export
function
create
(
x
:
number
,
y
:
number
):
IScreenPosition
; }