blob: 82a233946ab7de4e19a919941549e1b17193e622 (
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
|
SVG.Pattern = function(type) {
this.constructor.call(this, SVG.create('pattern'))
/* set unique id */
this.attr('id', (this.id = 'svgjs_element_' + (SVG.did++)))
}
// Inherit from SVG.Container
SVG.Pattern.prototype = new SVG.Container
//
SVG.extend(SVG.Pattern, {
// Return the fill id
fill: function() {
return 'url(#' + this.id + ')'
}
})
//
SVG.extend(SVG.Defs, {
/* define gradient */
pattern: function(width, height, block) {
var element = this.put(new SVG.Pattern())
/* invoke passed block */
block(element)
return element.attr({
x: 0,
y: 0,
width: width,
height: height,
patternUnits: 'userSpaceOnUse'
})
}
});
|