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
112
113
114
115
116
117
118
119
120
121
122
123
124
|
SVG.Container = {
add: function(e, i) {
if (!this.has(e)) {
i = i == null ? this.children().length : i;
this.children().splice(i, 0, e);
this.node.insertBefore(e.node, this.node.childNodes[i]);
e.parent = this;
}
return this;
},
has: function(e) {
return this.children().indexOf(e) >= 0;
},
children: function() {
return this._children || (this._children = []);
},
remove: function(e) {
return this.removeAt(this.children().indexOf(e));
},
removeAt: function(i) {
if (0 <= i && i < this.children().length) {
var e = this.children()[i];
this.children().splice(i, 1);
this.node.removeChild(e.node);
e.parent = null;
}
return this;
},
defs: function() {
if (this._defs == null) {
this._defs = new SVG.Defs();
this.add(this._defs, 0);
}
return this._defs;
},
levelDefs: function() {
var d = this.defs();
this.remove(d).add(d, 0);
return this;
},
group: function() {
var e = new SVG.G();
this.add(e);
return e;
},
rect: function(v) {
return this.place(new SVG.Rect(), v);
},
circle: function(v) {
var g;
if (v != null) {
g = { x: v.x, y: v.y };
if (v.r || v.radius)
g.width = g.height = (v.r || v.radius) * 2;
else
g.width = g.height = v.width || v.height;
}
return this.place(new SVG.Circle(), g);
},
ellipse: function(v) {
var g;
if (v != null) {
g = { x: v.x, y: v.y };
if (v.width) g.width = v.width;
if (v.height) g.height = v.height;
if (v.rx) g.width = v.rx * 2;
if (v.ry) g.height = v.ry * 2;
}
return this.place(new SVG.Ellipse(), g);
},
path: function(v) {
return this.place(new SVG.Path(), v);
},
image: function(v) {
return this.place(new SVG.Image(), v);
},
place: function(e, v) {
if (v != null) {
if (v.x != null && v.y != null)
e.move(v.x, v.y);
if (v.width != null && v.height != null)
e.size(v.width, v.height);
if (v.data != null)
e.data(v.data);
if (v.src != null)
e.load(v.src);
}
this.add(e);
return e;
}
};
|