ayamflow / glsl-2d-primitives

SDF functions to draw 2d shapes in glsl.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

glsl-2d-primitives

stable

SDF functions to draw 2d shapes in glsl. Antialiased using glsl-aastep.

glsl-2d-primitives

Installation ๐Ÿ“ฆ

npm i glsl-2d-primitives -S

Usagez ๐Ÿ“–

circle(vec2 st, float radius)

rectangle(vec2 st, vec2 size)

polygon(vec2 st, float radius, float sides)

Example ๐Ÿ’พ

#pragma glslify: circle = require(glsl-2d-primitives/circle)
#pragma glslify: rectangle = require(glsl-2d-primitives/rectangle)
#pragma glslify: polygon = require(glsl-2d-primitives/polygon)

attribute vec2 vUv;
uniform sampler2D map;

void main() {
    gl_FragColor = texture2D(map, vUv);
    // Mask the image with a centered rectangle
    gl_FragColor.a = rectangle(vUv, vec2(0.4, 0.6));

    // Draw a pentagon, without alpha masking
    gl.FragColor = vec4(vec3(polygon(vUv, 0.4, 5.0)), 1.0);

    // Mask the image with a ring, combining 2 circles
    float ring = circle(vUv, 0.5) * (1.0 - circle(vUv, 0.52));
    gl_FragColor.a = ring;
}

Demo

See also

License ๐Ÿ“

MIT. See LICENSE for details.

About

SDF functions to draw 2d shapes in glsl.

License:MIT License


Languages

Language:GLSL 100.0%