glsl-scale-log

1.0.0 • Public • Published

glsl-scale-log

stable

A logarithmic scale for glslify.

Usage

NPM

scale(float base, float value, vec2 domain)

Returns a value between 0 and 1, depending on where along the scale value lies between domain.x (min) and domain.y (max).

base is the logarithmic base to use.

#pragma glslify: scale require('glsl-scale-log') 
 
float min   = 0.0;
float max   = 1000.0;
float value = 100.0;
float base  = 10.0;
 
float t = scale(base, value, vec2(minmax));

scale(float base, float value, vec2 domain, vec2 range)

Similar to the above signature, however returns a value between range.x and range.y instead of 0 and 1. Shorthand for mix(range.x, range.y, scale(...)).

float t = scale(base, value, vec2(minmax), vec2(0.01.0));

Contributing

See stackgl/contributing for details.

License

MIT. See LICENSE.md for details.

Readme

Keywords

Package Sidebar

Install

npm i glsl-scale-log

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • dy
  • archmoj
  • hughsk
  • mikolalysenko
  • substack
  • mattdesl
  • chrisdickinson
  • yoshuawuyts
  • mikkoh
  • rezaali
  • tatumcreative
  • wwwtyro
  • thibauts
  • bpostlethwaite
  • dfcreative
  • erkaman
  • gre
  • rreusser
  • vorg