mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
Rename Doc#draw to Doc#redraw
This commit is contained in:
parent
cbb10922c5
commit
cb5a8aa2fc
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ Doc = Base.extend({
|
|||
this.size = new Size(canvas.offsetWidth, canvas.offsetHeight);
|
||||
this.children = [];
|
||||
},
|
||||
draw: function() {
|
||||
redraw: function() {
|
||||
this.ctx.clearRect(0, 0, this.size.width, this.size.height);
|
||||
for(var i = 0, l = this.children.length; i < l; i++) {
|
||||
this.children[i].draw(this.ctx);
|
||||
|
|
Loading…
Reference in a new issue