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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
SVG.extend(SVG.Element, {
// Add transformations
transform: function (o) {
/**
* EXTRACTING PARAMETERS
*/
// Act as a getter if no object was passed
if (typeof o !== 'object') {
matrix = new SVG.Matrix(this).extract()
return typeof o === 'string' ? matrix[o] : matrix
}
// Allow the user to define the origin with a string
if (typeof o.origin === "string") {
// Get the bounding box and string to use in our calculations
var string = o.origin.toLowerCase().trim()
, bbox = this.bbox()
, x = bbox.x
, y = bbox.y
, width = bbox.width
, height = bbox.height
// Set the bounds eg : "bottom-left", "Top right", "middle" etc...
o.ox = string.includes("left") ? x
: string.includes("right") ? x + width
: x + width / 2
o.oy = string.includes("top") ? y
: string.includes("bottom") ? y + height
: y + height / 2
// Make sure we only pass ox and oy
o.origin = null
}
// Get the resulting matrix and apply it to the element
var result = new SVG.Matrix().form(o)
, matrixString = result.toString()
// Apply the result
return this.attr('transform', matrix)
}
}
// Map matrix to transform
, matrix: function(m, relative) {
// Construct a matrix from the first parameter
var matrix = new SVG.Matrix(m)
// If we have a relative matrix, we just apply the old matrix
if (relative) {
var oldMatrix = new SVG.Matrix(this)
matrix = oldMatrix.multiply(matrix)
}
// Apply the matrix directly
return this.attr('transform', matrix)
}
})
SVG.extend(SVG.FX, {
transform: function(o, relative) {
// // get target in case of the fx module, otherwise reference this
// var target = this.target()
// , matrix, bbox
//
// // act as a getter
// if (typeof o !== 'object') {
// // get current matrix
// matrix = new SVG.Matrix(target).extract()
//
// return typeof o === 'string' ? matrix[o] : matrix
// }
//
// // ensure relative flag
// relative = !!relative || !!o.relative
//
// // act on matrix
// if (o.a != null) {
// matrix = new SVG.Matrix(o)
//
// // act on rotation
// } else if (o.rotation != null) {
// // ensure centre point
// ensureCentre(o, target)
//
// // apply transformation
// matrix = new SVG.Rotate(o.rotation, o.cx, o.cy)
//
// // act on scale
// } else if (o.scale != null || o.scaleX != null || o.scaleY != null) {
// // ensure centre point
// ensureCentre(o, target)
//
// // ensure scale values on both axes
// o.scaleX = o.scale != null ? o.scale : o.scaleX != null ? o.scaleX : 1
// o.scaleY = o.scale != null ? o.scale : o.scaleY != null ? o.scaleY : 1
//
// matrix = new SVG.Scale(o.scaleX, o.scaleY, o.cx, o.cy)
//
// // act on skew
// } else if (o.skewX != null || o.skewY != null) {
// // ensure centre point
// ensureCentre(o, target)
//
// // ensure skew values on both axes
// o.skewX = o.skewX != null ? o.skewX : 0
// o.skewY = o.skewY != null ? o.skewY : 0
//
// matrix = new SVG.Skew(o.skewX, o.skewY, o.cx, o.cy)
//
// // act on flip
// } else if (o.flip) {
// if(o.flip == 'x' || o.flip == 'y') {
// o.offset = o.offset == null ? target.bbox()['c' + o.flip] : o.offset
// } else {
// if(o.offset == null) {
// bbox = target.bbox()
// o.flip = bbox.cx
// o.offset = bbox.cy
// } else {
// o.flip = o.offset
// }
// }
//
// matrix = new SVG.Matrix().flip(o.flip, o.offset)
//
// // act on translate
// } else if (o.x != null || o.y != null) {
// matrix = new SVG.Translate(o.x, o.y)
// }
//
// if(!matrix) return this
//
// matrix.relative = relative
//
// this.last().transforms.push(matrix)
//
// return this._callStart()
// }
})
SVG.extend(SVG.Element, {
// Reset all transformations
untransform: function() {
return this.attr('transform', null)
},
// merge the whole transformation chain into one matrix and returns it
matrixify: function() {
var matrix = (this.attr('transform') || '')
// split transformations
.split(SVG.regex.transforms).slice(0,-1).map(function(str){
// generate key => value pairs
var kv = str.trim().split('(')
return [kv[0], kv[1].split(SVG.regex.delimiter).map(function(str){ return parseFloat(str) })]
})
// merge every transformation into one matrix
.reduce(function(matrix, transform){
if(transform[0] == 'matrix') return matrix.multiply(arrayToMatrix(transform[1]))
return matrix[transform[0]].apply(matrix, transform[1])
}, new SVG.Matrix())
return matrix
},
// add an element to another parent without changing the visual representation on the screen
toParent: function(parent) {
if(this == parent) return this
var ctm = this.screenCTM()
var pCtm = parent.screenCTM().inverse()
this.addTo(parent).untransform().transform(pCtm.multiply(ctm))
return this
},
// same as above with parent equals root-svg
toDoc: function() {
return this.toParent(this.doc())
}
})
// TODO: DESTROY
// =======
//
//
// SVG.Transformation = SVG.invent({
//
// create: function(source, inversed){
//
// if(arguments.length > 1 && typeof inversed != 'boolean'){
// return this.constructor.call(this, [].slice.call(arguments))
// }
//
// if(Array.isArray(source)){
// for(var i = 0, len = this.arguments.length; i < len; ++i){
// this[this.arguments[i]] = source[i]
// }
// } else if(typeof source == 'object'){
// for(var i = 0, len = this.arguments.length; i < len; ++i){
// this[this.arguments[i]] = source[this.arguments[i]]
// }
// }
//
// this.inversed = false
//
// if(inversed === true){
// this.inversed = true
// }
//
// }
//
// , extend: {
//
// arguments: []
// , method: ''
//
// , at: function(pos){
//
// var params = []
//
// for(var i = 0, len = this.arguments.length; i < len; ++i){
// params.push(this[this.arguments[i]])
// }
//
// var m = this._undo || new SVG.Matrix()
//
// m = new SVG.Matrix().morph(SVG.Matrix.prototype[this.method].apply(m, params)).at(pos)
//
// return this.inversed ? m.inverse() : m
//
// }
//
// , undo: function(o){
// for(var i = 0, len = this.arguments.length; i < len; ++i){
// o[this.arguments[i]] = typeof this[this.arguments[i]] == 'undefined' ? 0 : o[this.arguments[i]]
// }
//
// // The method SVG.Matrix.extract which was used before calling this
// // method to obtain a value for the parameter o doesn't return a cx and
// // a cy so we use the ones that were provided to this object at its creation
// o.cx = this.cx
// o.cy = this.cy
//
// this._undo = new SVG[capitalize(this.method)](o, true).at(1)
//
// return this
// }
//
// }
//
// })
//
// SVG.Translate = SVG.invent({
//
// parent: SVG.Matrix
// , inherit: SVG.Transformation
//
// , create: function(source, inversed){
// this.constructor.apply(this, [].slice.call(arguments))
// }
//
// , extend: {
// arguments: ['transformedX', 'transformedY']
// , method: 'translate'
// }
//
// })
//
// SVG.Rotate = SVG.invent({
//
// parent: SVG.Matrix
// , inherit: SVG.Transformation
//
// , create: function(source, inversed){
// this.constructor.apply(this, [].slice.call(arguments))
// }
//
// , extend: {
// arguments: ['rotation', 'cx', 'cy']
// , method: 'rotate'
// , at: function(pos){
// var m = new SVG.Matrix().rotate(new SVG.Number().morph(this.rotation - (this._undo ? this._undo.rotation : 0)).at(pos), this.cx, this.cy)
// return this.inversed ? m.inverse() : m
// }
// , undo: function(o){
// this._undo = o
// return this
// }
// }
//
// })
//
// SVG.Scale = SVG.invent({
//
// parent: SVG.Matrix
// , inherit: SVG.Transformation
//
// , create: function(source, inversed){
// this.constructor.apply(this, [].slice.call(arguments))
// }
//
// , extend: {
// arguments: ['scaleX', 'scaleY', 'cx', 'cy']
// , method: 'scale'
// }
//
// })
//
// SVG.Skew = SVG.invent({
//
// parent: SVG.Matrix
// , inherit: SVG.Transformation
//
// , create: function(source, inversed){
// this.constructor.apply(this, [].slice.call(arguments))
// }
//
// , extend: {
// arguments: ['skewX', 'skewY', 'cx', 'cy']
// , method: 'skew'
// }
//
// })
|