trianglify
trianglify copied to clipboard
Algorithmically generated triangle art
trianglify.io is awesome, but it has some limits, for example: exporting high resolution image needs payment. so I create one online web tool without trianglify lib: https://sinqi.tools/triangle
``` index-VkoFY4_Q.js:1 TypeError: Uv is not a function at i (index-VkoFY4_Q.js:56:54894) at index-VkoFY4_Q.js:1:23734 at Dt (index-VkoFY4_Q.js:1:13199) at ot (index-VkoFY4_Q.js:1:13278) at Dn.t.__weh.t.__weh (index-VkoFY4_Q.js:1:23614) at zi (index-VkoFY4_Q.js:1:14593) at Jr (index-VkoFY4_Q.js:1:43511) at mount...
There are small typos in: - CONTRIBUTING.md - Readme.md Fixes: - Should read `serialized` rather than `seralized`. - Should read `environment` rather than `enivronment`. - Should read `consistent` rather than...
node-canvas requires node gyp and its a nightmare to use with things like electron or docker. Is there a way to fully uncouple from canvas and instead have an abstraction...
First, thank you for creating this project! Just wanted to drop a note that I've created a CLI version of trianglify with a few options exposed to tweak the images:...
https://bost.ocks.org/mike/algorithms/ Bridson’s algorithm for Poisson-disc sampling solves your problem with using a square grid for initial point generation, it gives you uniform triangle size and randomized point distribution. Would probably...
I'd like to run some tests on how to move Trianglify computations off the main thread. The main use case here is increasing the responsiveness of the sliders on https://trianglify.io/...
Per v4.0.0, the `dist` folder with build artifacts will no longer be checked in to git. This is a Good Thing, but it also means that users who don't want...
The current sanity checks for cell_size are not sufficient, it is still possible to create an infinite loop by passing in a string (i.e. `"40"` instead of `40`) for cell_size....