xanpj

Results 2 comments of xanpj

@jordanurbs I care as a developer that would like to use such a library.

```javascript var canvas = document.getElementById("canvas"); var ctx = canvas.getContext("2d"); ... ctx.fillStyle = "white"; ctx.fillRect(0, 0, canvas.width, canvas.height); ``` Just add the last two lines to fill the background in the...