Ctrl+V

Go on I dare you.
Push the Ctrl button on your keyboard, and the letter V at the same time to find out what the last word you copied was.
Here is mine:
rounded nut removal
 
[Pixel_Shader]

varying vec3 normal, lightDir, eyeVec;
varying float att;

void main (void)
{
vec4 final_color =
(gl_FrontLightModelProduct.sceneColor * gl_FrontMaterial.ambient) +
(gl_LightSource[0].ambient * gl_FrontMaterial.ambient)*att;

vec3 N = normalize(normal);
vec3 L = normalize(lightDir);

float lambertTerm = dot(N,L);

if(lambertTerm > 0.0)
{
final_color += gl_LightSource[0].diffuse *
gl_FrontMaterial.diffuse *
lambertTerm * att;

vec3 E = normalize(eyeVec);
vec3 R = reflect(-L, N);

float specular = pow( max(dot(R, E), 0.0),
gl_FrontMaterial.shininess );

final_color += gl_LightSource[0].specular *
gl_FrontMaterial.specular * specular * att;
}

gl_FragColor = final_color;
}
 
.elims levid dna eugnot revlis a evah I
 

maildude

Postal Paranoiac
Nothing happened. :dunno:
 

Spleen

Banned?
Nothing! How exceedingly disappointing.
 

PlasmaTwa2

The Second-Hottest Man in my Mother's Basement
Oh, nothing really. I just always wanted to open a door to room where people are being trained like in James Bond movies.
 
Top