qrohlf / trianglify

Algorithmically generated triangle art
http://qrohlf.com/trianglify/
GNU General Public License v3.0
10.08k stars 669 forks source link

Typos in example #37

Closed dkossnick-figma closed 9 years ago

dkossnick-figma commented 9 years ago

Love the package! Minor typo on the landing page example missing two commas:

var defaults = { cell_size: 75, variance: 0.75, x_colors: 'random', y_colors: 'match_x' palette: Trianglify.colorbrewer, color_space: 'lab' color_function: false, stroke_width: 1.51, width: 600, height: 400, seed: null };

should be:

var defaults = { cell_size: 75, variance: 0.75, x_colors: 'random', y_colors: 'match_x', palette: Trianglify.colorbrewer, color_space: 'lab', color_function: false, stroke_width: 1.51, width: 600, height: 400, seed: null };

qrohlf commented 9 years ago

Thanks, will fix asap. On Wed, Apr 22, 2015 at 6:58 PM David Kosslyn notifications@github.com wrote:

Love the package! Minor typo on the landing page example missing two commas:

var defaults = { cell_size: 75, variance: 0.75, x_colors: 'random', y_colors: 'match_x' palette: Trianglify.colorbrewer, color_space: 'lab' color_function: false, stroke_width: 1.51, width: 600, height: 400, seed: null };

should be:

var defaults = { cell_size: 75, variance: 0.75, x_colors: 'random', y_colors: 'match_x', palette: Trianglify.colorbrewer, color_space: 'lab', color_function: false, stroke_width: 1.51, width: 600, height: 400, seed: null };

— Reply to this email directly or view it on GitHub https://github.com/qrohlf/trianglify/issues/37.