Code Monkey home page Code Monkey logo

glsl-sdf-primitives's Introduction

Modeling with distance fields

A collection of distance field equations for modeling and ray-marching basic primitives shapes. Primitives can be combined and modified to create more complex shapes using glsl-sdf-ops.

Ray traced primitives

The library is glslify compatible. An demo exists here.

These were taken from iQ's excellent distance functions page

Usage

vec2 doModel(vec3 p);
#pragma glslify: raytrace = require('glsl-raytrace', map = doModel, steps = 90)

// import a primitive
#pragma glslify: sdTorus 	= require('glsl-sdf-primitives/sdTorus')

vec2 doModel(vec3 p) {
  return vec2( sdTorus( p, vec2( 0.20, 0.05 )), 0.0 );
}

Primitives

Signed Sphere

sdSphere( vec3 position, float radius )

Signed Box

sdBox( vec3 position, vec3 dimension )

Unsigned Box

sdBox( vec3 position, vec3 dimension )

Unsigned Rounded Box

sdBox( vec3 position, vec3 dimension, float rounding )

Signed Plane

sdPlane( vec3 position, vec4 planeEquation )

Signed Torus

sdTorus( vec3 position, float hole )

Signed Capped Cone

sdCappedCone( vec3 position, vec2 dimension )

Signed Capped Cylinder

sdCappedCylinder( vec3 position, vec2 dimension )

Signed Capsule

sdCapsule( vec3 position, vec3 a, vec3 b, float radius )

Signed Cone

sdCone( vec3 position, vec2 dimension )

Signed Cylinder

sdCylinder( vec3 position, vec2 dimension )

Signed Hexagonal Prism

sdHexPrism( vec3 position, vec2 dimension )

Signed Triangle Prism

sdTriPrism( vec3 position, vec2 dimension )

Unsigned Quadrilateral

udQuad( vec3 p, vec3 a, vec3 b, vec3 c, vec3 d )

Unsigned Triangle

udTriudTriangle( vec3 p, vec3 a, vec3 b, vec3 c )

glsl-sdf-primitives's People

Contributors

marklundin avatar razh 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.