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
/
ScreenRect.d.ts
8 lines
•
316 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
module
"@irysius/grid-math/ScreenRect"
{
import
{
IRect
}
from
"@irysius/grid-math/Rect"
;
export
const
TYPE
:
'screen'
;
export
interface
IScreenRect
extends
IRect
{
type
:
'screen'
; }
export
function
create
(
x
:
number
,
y
:
number
,
width
:
number
,
height
:
number
):
IScreenRect
; }