Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
glsl-specular-cook-torrance
Advanced tools
Computes the specular power in the Cook-Torrance model.
#pragma glslify: cookTorranceSpec = require(glsl-specular-cook-torrance)
uniform vec3 eyePosition;
uniform vec3 lightPosition;
uniform float roughness, fresnel;
varying vec3 surfacePosition, surfaceNormal;
void main() {
//Light and view geometry
vec3 viewDirection = normalize(eyePosition - surfacePosition);
vec3 lightDirection = normalize(lightPosition - surfacePosition);
//Surface properties
vec3 normal = normalize(surfaceNormal);
//Compute specular power
float power = cookTorranceSpec(
lightDirection,
viewDirection,
normal,
roughness,
fresnel);
gl_FragColor = vec4(power,power,power,1.0);
}
Install with npm:
npm install glsl-specular-phong
Then use with glslify.
#pragma glslify: cookTorrance = require(glsl-specular-cook-torrance)
float cookTorrance(vec3 lightDir, vec3 eyeDir, vec3 normal, float roughness, float fresnel)
Computes the specular power in the Cook-Torrance
lightDir
is a unit length vec3
pointing from the surface point toward the lighteyeDir
is a unit length vec3
pointing from the surface point toward the cameranormal
is the unit length surface normal at the sample pointroughness
is the surface roughness parameter, between 0 and 1. 0 means surface is perfectly smooth, 1 means surface is mattefresnel
the Fresnel exponent. 0 = no Fresnel, higher values create a rim effect around objectsReturns A float
representing the specular power
Note Unlike the usual Cook-Torrance model, the light power is not scaled by 1/(normal . lightDirection). This avoids an unnecessary numerically unstable division, but requires modifying how diffuse light is calculated.
(c) 2014 Mikola Lysenko. MIT License
FAQs
Cook-Torrance specular/fresnel lighting term
We found that glsl-specular-cook-torrance demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.