glsl-specular-phong

1.0.0 • Public • Published

glsl-specular-phong

Computes the Phong specular weight for a light source

Example

#pragma glslify: phongSpec require(glsl-specular-phong) 
 
uniform vec3 eyePosition;
uniform vec3 lightPosition;
 
uniform float shininess;
 
varying vec3 surfacePosition;
varying vec3 surfaceNormal;
 
void main() {
  vec3 eyeDirection = normalize(eyePosition - surfacePosition);
  vec3 lightDirection = normalize(lightPosition - surfacePosition);
  vec3 normal = normalize(surfaceNormal);
 
  float power = blinnPhongSpec(lightDirection, viewDirection, normal, shininess);
 
  gl_FragColor = vec4(power,power,power,1.0);
}

Usage

Install with npm:

npm install glsl-specular-phong

Then use with glslify.

API

#pragma glslify: phong require(glsl-specular-phong) 
float phong(vec3 lightDir, vec3 eyeDir, vec3 normal, float shininess)

Computes the specular power in the Phong lighting model.

  • lightDir is a unit length vec3 pointing from the surface point toward the light
  • eyeDir is a unit length vec3 pointing from the surface point toward the camera
  • normal is the surface normal at the sample point
  • shininess is the exponent in the Phong equation

Returns A float representing the specular power

License

(c) 2014 Mikola Lysenko. MIT License

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    2

Package Sidebar

Install

npm i glsl-specular-phong

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