-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefinitions.js
More file actions
53 lines (46 loc) · 1.37 KB
/
definitions.js
File metadata and controls
53 lines (46 loc) · 1.37 KB
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
function Point(posX, posY, posZ) {
this.x = posX;
this.y = posY;
this.z = posZ;
}
function Color(red, green, blue, alpha) {
this.r = red;
this.g = green;
this.b = blue;
this.a = alpha;
}
var fontFamiliesVec = [
'font-family: Arial, sans-serif;',
'font-family: Verdana, sans-serif;',
'font-family: Helvetica, sans-serif',
'font-family: Arial Black, sans-serif;',
'font-family: Tahoma, sans-serif;',
'font-family: Trebuchet MS, sans-serif;',
'font-family: Impact, sans-serif;',
'font-family: Gill Sans, serif;',
'font-family: Times New Roman, serif;',
'font-family: Georgia, serif;',
'font-family: Palatino, serif;',
'font-family: Baskerville, serif;',
'font-family: Courier, monospace;',
'font-family: Lucida, monospace;',
'font-family: Monaco, monospace;',
'font-family: Bradley Hand, cursive;',
'font-family: Brush Script MT, cursive;',
'font-family: Luminari, cursive;',
'font-family: Comic Sans MS, cursive;'
];
const CAIOSMODE_DEFAULT = 0;
const DEFAULT_HEADRADIUS = 5.5;
const DEFAULT_TORSOWIDTH = 4;
const DEFAULT_TORSOHEIGHT = 10;
const DEFAULT_FEMURWIDTH = 4;
const DEFAULT_FEMURHEIGHT = 7;
const DEFAULT_TIBIAWIDTH = 4;
const DEFAULT_TIBIAHEIGHT = 7;
const DEFAULT_MAXZ = -3750;
const DEFAULT_MAXCOLOR = 190;
const DEFAULT_MINCOLOR = 120;
const MAX_GENERALROTATIONPERFRAME = 7;
const MAX_FEMURROTATION = 95;
const MAX_TIBIAROTATION = 130;