binarymax / floodfill.js

HTML5 Canvas Floodfill via JavaScript
MIT License
57 stars 14 forks source link

Suggestions to make it more awesome #7

Closed dfmiller closed 8 years ago

dfmiller commented 8 years ago
        CanvasRenderingContext2D.prototype.floodfill = function(x, y, fillColor) {
            floodfill(x, y, fillColor, this)
        }
binarymax commented 8 years ago

Care to help with any of these and make a pull request? :)

dfmiller commented 8 years ago

Thanks for the update! Works great.