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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// Define list of available attributes for stroke and fill
var sugar = {
stroke: ['color', 'width', 'opacity', 'linecap', 'linejoin', 'miterlimit', 'dasharray', 'dashoffset']
, fill: ['color', 'opacity', 'rule']
, prefix: function(t, a) {
return a == 'color' ? t : t + '-' + a
}
}
/* Add sugar for fill and stroke */
;['fill', 'stroke'].forEach(function(m) {
var i, extension = {}
extension[m] = function(o) {
if (typeof o == 'string' || SVG.Color.isRgb(o) || (o && typeof o.fill === 'function'))
this.attr(m, o)
else
/* set all attributes from sugar.fill and sugar.stroke list */
for (i = sugar[m].length - 1; i >= 0; i--)
if (o[sugar[m][i]] != null)
this.attr(sugar.prefix(m, sugar[m][i]), o[sugar[m][i]])
return this
}
SVG.extend(SVG.Element, SVG.FX, extension)
})
SVG.extend(SVG.Element, SVG.FX, {
// Map rotation to transform
rotate: function(d, cx, cy) {
return this.transform({ rotation: d, cx: cx, cy: cy })
}
// Map skew to transform
, skew: function(x, y, cx, cy) {
return this.transform({ skewX: x, skewY: y, cx: cx, cy: cy })
}
// Map scale to transform
, scale: function(x, y, cx, cy) {
return arguments.length == 1 || arguments.length == 3 ?
this.transform({ scale: x, cx: y, cy: cx }) :
this.transform({ scaleX: x, scaleY: y, cx: cx, cy: cy })
}
// Map translate to transform
, translate: function(x, y) {
return this.transform({ x: x, y: y })
}
// Map flip to transform
, flip: function(a, o) {
return this.transform({ flip: a, offset: o })
}
// Map matrix to transform
, matrix: function(m) {
return this.attr('transform', new SVG.Matrix(m))
}
// Opacity
, opacity: function(value) {
return this.attr('opacity', value)
}
// Relative move over x axis
, dx: function(x) {
return this.x((this.target || this).x() + x)
}
// Relative move over y axis
, dy: function(y) {
return this.y((this.target || this).y() + y)
}
// Relative move over x and y axes
, dmove: function(x, y) {
return this.dx(x).dy(y)
}
})
SVG.extend(SVG.Rect, SVG.Ellipse, SVG.Circle, SVG.Gradient, SVG.FX, {
// Add x and y radius
radius: function(x, y) {
return (this.target || this).type == 'radial' ?
this.attr({ r: new SVG.Number(x) }) :
this.rx(x).ry(y == null ? x : y)
}
})
SVG.extend(SVG.Path, {
// Get path length
length: function() {
return this.node.getTotalLength()
}
// Get point at length
, pointAt: function(length) {
return this.node.getPointAtLength(length)
}
})
SVG.extend(SVG.Parent, SVG.Text, SVG.FX, {
// Set font
font: function(o) {
for (var k in o)
k == 'leading' ?
this.leading(o[k]) :
k == 'anchor' ?
this.attr('text-anchor', o[k]) :
k == 'size' || k == 'family' || k == 'weight' || k == 'stretch' || k == 'variant' || k == 'style' ?
this.attr('font-'+ k, o[k]) :
this.attr(k, o[k])
return this
}
})
|