UNPKG
ts-raycasting
Version:
latest (0.0.14)
0.0.14
0.0.12
Raycasting in typescript
github.com/dderevjanik/ts-raycasting
dderevjanik/ts-raycasting
ts-raycasting
/
src
/
interfaces
/
IRayConf.ts
7 lines
(6 loc)
•
236 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
interface
IRayConf
{
fov
:
number
;
// field of view, Angle
rayCount
:
number
;
// number of rays to cast
fisheye
:
boolean
;
// fisheye effect ?
center
:
boolean
;
// casting rays from center ?
};