GithubHelp home page GithubHelp logo

hhy5277 / trianglify Goto Github PK

View Code? Open in Web Editor NEW

This project forked from qrohlf/trianglify

0.0 2.0 0.0 3.21 MB

Algorithmically generated triangle art

Home Page: http://qrohlf.com/trianglify/

License: Other

JavaScript 97.54% HTML 2.46%

trianglify's Introduction

Trianglify Build Status

Trianglify is a library that I wrote to generate nice SVG background images like this one:

Getting Trianglify

You can grab Trianglify with npm (recommended):

npm install trianglify

Include it in your HTML via CDNJS:

<script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.4.0/trianglify.min.js"></script>

Or clone the repo:

git clone https://github.com/qrohlf/trianglify.git

Quickstart

<script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.4.0/trianglify.min.js"></script>
<script>
	var pattern = Trianglify({
		width: window.innerWidth,
		height: window.innerHeight
	});
	document.body.appendChild(pattern.canvas())
</script>

See https://qrohlf.com/trianglify for interactive examples and a walkthrough of the most commonly-used Trianglify options.

API

Trianglify exposes a single function into the global namespace, called Trianglify. This takes a single options object as an argument and returns a pattern object.

var Trianglify = require('trianglify'); // only needed in node.js
var pattern = Trianglify({width: 200, height: 200})

The pattern object contains data about the generated pattern's options and geometry, as well as rending implementations.

pattern.opts

Object containing the options used to generate the pattern.

pattern.polys

The colors and vertices of the polygons that make up the pattern, in the following format:

[
  ['color', [vertex, vertex, vertex]],
  ['color', [vertex, vertex, vertex]],
  ...
]

pattern.svg([opts])

Rendering function for SVG. Returns an SVGElement DOM node. Takes an optional options object. Currently the only supported option is {includeNamespace: true}, which will cause the output to include an xmlns='http://www.w3.org/2000/svg' attribute. This is helpful if you intend to serialize the svg string to a file, as most browsers and vector graphics programs require it. See #41 for more details about this option.

pattern.canvas([HTMLCanvasElement])

Rendering function for canvas. When called with no arguments returns a HTMLCanvasElement DOM node. When passed an existing canvas element as an argument, renders the pattern to the existing canvas.

To use this in a node.js environment, the optional dependency node-canvas needs to be installed.

pattern.png()

Rendering function for PNG. Returns a data URI with the PNG data in base64 encoding. See examples/save-as-png.js for an example of decoding this into a file.

Options

Trianglify is configured by an options object passed in as the only argument. The following option keys are supported:

width

Integer, defaults to 600. Specify the width in pixels of the pattern to generate.

height

Integer, defaults to 400. Specify the height in pixels of the pattern to generate.

cell_size

Integer, defaults to 75. Specify the size of the mesh used to generate triangles. Larger values will result in coarser patterns, smaller values will result in finer patterns. Note that very small values may dramatically increase the runtime of Trianglify.

variance

Decimal value between 0 and 1 (inclusive), defaults to 0.75. Specify the amount of randomness used when generating triangles.

seed

Number or string, defaults to null. Seeds the random number generator to create repeatable patterns. When set to null, the random number will be seeded with random values from the environment. An example usage would be passing in blog post titles as the seed to generate unique trianglify patterns for every post on a blog that won't change when the page reloads.

x_colors

String or array of CSS-formatted colors, default is 'random'. Specify the color gradient used on the x axis.

Valid string values are 'random' or the name of a colorbrewer palette (i.e. 'YlGnBu' or 'RdBu'). When set to 'random', a gradient will be randomly selected from the colorbrewer library.

Valid array values should specify the color stops in any CSS format (i.e. ['#000000', '#4CAFE8', '#FFFFFF']).

y_colors

String or array of CSS-formatted colors, default is 'match_x'. When set to 'match_x' the same gradient will be used on both axes. Otherwise, accepts the same options as x_colors.

color_space

String, defaults to 'lab'. Set the color space used for generating gradients. Supported values are rgb, hsv, hsl, hsi, lab and hcl. See this blog post for some background on why this matters.

color_function

Specify a custom function for coloring triangles, defaults to null. Accepts a function to override the standard gradient coloring that takes the x,y coordinates of a triangle's centroid as arguments and returns a CSS-formatted color string representing the color that triangle should have.

Here is an example color function that uses the HSL color format to generate a rainbow pattern:

var colorFunc = function(x, y) {
	return 'hsl('+Math.floor(Math.abs(x*y)*360)+',80%,60%)';
};

var pattern = Trianglify({color_function: colorFunc})

stroke_width

Number, defaults to 1.51. Specify the width of the stroke on triangle shapes in the pattern. The default value is the ideal value for eliminating antialiasing artifacts when rendering patterns to a canvas.

points

Array of points ([x, y]) to trianglulate. When not specified an array randomised points is generated filling the space.

License

Trianglify is GPLv3 licensed. Please contact me if you are interested in purchasing Trianglify under an alternative license.

trianglify's People

Contributors

alssndro avatar enzuguri avatar kkirsche avatar mpreziuso avatar qrohlf avatar tdhsmith avatar tobaco avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.