All Projects → MaxBittker → glsl-voronoi-noise

MaxBittker / glsl-voronoi-noise

Licence: MIT license
2d and 3d Voronoi noise functions, packed for glslify

Programming Languages

GLSL
2045 projects

glsl-voronoi-noise

Voronoi noise, packed for glslify

   
example 2d output example 3d output

usage:

precision mediump float;
#pragma glslify: voronoi3d = require('glsl-voronoi-noise/3d')

varying vec2 uv;
uniform float t;

void main() {
    gl_FragColor.rgb = voronoi3d(vec3(uv, t));  
    gl_FragColor.a   = 1.0;
}

See also: glsl-worley

Implementations from Shawn Lawson

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].