UNPKG
@thewtex/vtk.js-esm
Version:
latest (18.4.2-77b22c7239.1)
18.4.2-77b22c7239.1
18.4.2-77b22c7239
Visualization Toolkit for the Web
github.com/kitware/vtk-js
kitware/vtk-js
@thewtex/vtk.js-esm
/
Rendering
/
Core
/
RenderWindowInteractor
/
Constants.js
20 lines
(18 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var
Device
=
{
Unknown:
0
,
LeftController:
1
,
RightController:
2
}
;
var
Input
=
{
Unknown:
0
,
Trigger:
1
,
TrackPad:
2
,
Grip:
3
,
ApplicationMenu:
4
}
;
var
Constants
=
{
Device:
Device
,
Input:
Input
}
;
export
default
Constants;
export
{
Device
,
Input
}
;