UNPKG
vtk.js-custom-jhonny
Version:
latest (32.8.1-custom.8t)
32.8.1-custom.8t
32.8.1-custom.7
32.8.1-custom.6
32.8.1-custom.5
32.8.1-custom.4
32.8.1-custom.3
32.8.1-custom.2
32.8.1-custom.1
Visualization Toolkit for the Web
github.com/kitware/vtk-js
Kitware/vtk-js
vtk.js-custom-jhonny
/
Common
/
DataModel
/
StructuredData
/
Constants.js
18 lines
(16 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const
StructuredType
=
{
UNCHANGED:
0
,
SINGLE_POINT:
1
,
X_LINE:
2
,
Y_LINE:
3
,
Z_LINE:
4
,
XY_PLANE:
5
,
YZ_PLANE:
6
,
XZ_PLANE:
7
,
XYZ_GRID:
8
,
EMPTY:
9
}
;
var
Constants
=
{
StructuredType
}
;
export
{
StructuredType
,
Constants
as
default
}
;