blob: 85def476803a2eb9933b6a14087e41f4ff4adb9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Enum class for v3dtypes
// AUTO-GENERATED from v3dtypes.csv
// Generated at 2023-02-09 04:54:07
struct v3dtypes
{
int material=1;
int transform=2;
int element=3;
int centers=4;
int header=5;
int line=64;
int triangle=65;
int quad=66;
int curve=128;
int bezierTriangle=129;
int bezierPatch=130;
int lineColor=192;
int triangleColor=193;
int quadColor=194;
int curveColor=256;
int bezierTriangleColor=257;
int bezierPatchColor=258;
int triangles=512;
int disk=1024;
int cylinder=1025;
int tube=1026;
int sphere=1027;
int halfSphere=1028;
int animation=2048;
int pixel=4096;
};
v3dtypes v3dtypes;// End of File
|