binarymax / floodfill.js

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

Using floats causes crash #5

Closed dfmiller closed 8 years ago

dfmiller commented 8 years ago

Using floats for the x or y coordinate causes the browser to hang / crash.

binarymax commented 8 years ago

Yes It's been in the back of my mind to add better type checking everywhere. Consider it added to the backlog :)

dfmiller commented 8 years ago

Is it really that hard to add x = Math.floor(x) ?