project/node_modules/zrender/lib/graphic/Pattern.js

14 lines
298 B
JavaScript
Raw Normal View History

2024-07-14 15:48:34 +08:00
var Pattern = (function () {
function Pattern(image, repeat) {
this.image = image;
this.repeat = repeat;
this.x = 0;
this.y = 0;
this.rotation = 0;
this.scaleX = 1;
this.scaleY = 1;
}
return Pattern;
}());
export default Pattern;