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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* renderer */
export const CAMERA_NEAR = 0.001
export const CAMERA_FAR = 20
export const CAMERA_X = 0.5
export const CAMERA_Y = -0.5
export const CAMERA_Z = 2.5
export const FOG_COLOR = 0x191919
/* tag cloud */
export const CLOUD_COLORS = [
0xffffff,
0xffffff,
0xffffff,
0xdddde6,
0x888896,
]
export const CLOUD_SCALE = 1
export const CLOUD_ROTATION_SPEED = 0.001
export const CLOUD_MAX_COUNT = 200
export const CLOUD_TEXT_MIN_SIZE = 0.005
export const CLOUD_TEXT_MAX_SIZE = 0.03
/* face */
export const FACE_SCALE = 1
/* face markers */
export const FACE_MARKERS_SCALE = 0.83
export const FACE_OFFSET_X = 0
export const FACE_OFFSET_Y = -0.058
export const FACE_OFFSET_Z = 0.0525
export const MARKER_POINT_COLOR = 0xffffff
export const MARKER_COLORS = [
0xff3333,
0xff8833,
0xffff33,
0x338833,
0x3388ff,
0x3333ff,
0x8833ff,
0xff3388,
0xffffff,
]
export const POINT_SCALE = 0.005
export const LINE_THICKNESS = 0.0075
export const FACE_POINT_COUNT = 68
|