canvas-sketch icon indicating copy to clipboard operation
canvas-sketch copied to clipboard

[beta] A framework for making generative artwork in JavaScript and the browser.

Results 59 canvas-sketch issues
Sort by recently updated
recently updated
newest added

Hey Matt, I'm looking to generate pen plotter art files that includes arcs, but I must be missing something in your two `--penplot` examples. Both generate arrays of coordinate arrays...

There has been some suggestions to build a mini floating HUD to control the sketch – see [#8](https://github.com/mattdesl/canvas-sketch/issues/8). This could be useful in the interim until a more complete GUI...

As brought up by [this thread](https://github.com/mattdesl/canvas-sketch/issues/7) by @fturcheti, it might be nice to get some feedback on hotkeys and "how to control the sketch" in a nice and easy way....

Just saw [this](https://necessarydisorder.wordpress.com/2018/07/02/getting-started-with-making-processing-gifs-and-using-the-beesandbombs-template/) post where the author writes about a motion blur technique for processing GIF loops. https://gist.github.com/Bleuje/e06d3b23abe45c4d04973b8b0f90b7a4 I think something like that could be interesting to explore; maybe built-in,...

I noticed while experimenting with `canvas-sketch` that when you export an image using cmd + s or an animation using cmd + shift + s, the render function is called...

I am working on a print series and realizing I probably want to give buyers the option between multiple sizes, rather than forcing them to a single size. I'm also...

This is a 'nice to have' feature. Right now auto-install works pretty well, except with glslify modules since they are not picked up by detective. Test case, save the following...

```js const sketch = () => { return ({ context: ctx, width, height }) => { ctx.fillStyle = 'red'; setTimeout(() => { console.log('I expect red'); ctx.fillRect(200, 200, 200, 200); },...

I've got some [examples](https://github.com/mattdesl/canvas-sketch/tree/master/examples) so far, but most of them are more 'unit tests' to make sure it all works. It would be great if the CLI could run a...