blob: e45a8c6d774496de1c4b763a1eeb1bdefe33f099 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
// Module for unit convertions
SVG.Number = function(value) {
/* initialize defaults */
this.value = 0
this.unit = ''
/* parse value */
switch(typeof value) {
case 'number':
this.value = value
break
case 'string':
var match = value.match(SVG.regex.unit)
if (match) {
/* make value numeric */
this.value = parseFloat(match[1])
/* normalize percent value */
if (match[2] == '%')
this.value /= 100
/* store unit */
this.unit = match[2]
}
break
default:
if (value instanceof SVG.Number) {
this.value = value.value
this.unit = value.unit
}
break
}
}
SVG.extend(SVG.Number, {
// Stringalize
toString: function() {
return (this.unit == '%' ? ~~(this.value * 1e8) / 1e6 : this.value) + this.unit
}
, // Convert to primitive
valueOf: function() {
return this.value
}
// Convert to different unit
, to: function(unit) {
if (typeof unit === 'string')
this.unit = unit
return this
}
// Add number
, plus: function(number) {
this.value = this + new SVG.Number(number)
return this
}
// Subtract number
, minus: function(number) {
return this.plus(-new SVG.Number(number))
}
// Multiply number
, times: function(number) {
this.value = this * new SVG.Number(number)
return this
}
// Divide number
, divide: function(number) {
this.value = this / new SVG.Number(number)
return this
}
})
|