CS计算机代考程序代写 12/22/2020

12/22/2020
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License
Computer Graphics
1
Disco Ball Lighting!
Mike Bailey mjb@cs.oregonstate.edu
disco.pptx
mjb – December 20, 2020
1
ΔΦ
Δθ
Computer Graphics
H
angle
BALLPOS
LIGHTPOS
BL
BP
ECpos (fragment position)
2
mjb – December 20, 2020
2
1

3
12/22/2020
disco.glib
3
##OpenGL GLIB
Perspective 90 LookAt001 000 010
Vertex disco.vert
Fragment disco.frag
Program Disco Program Disco \
uNumFacets <5 15 50> \ uPower <1000. 5000. 50000.>
Color 1. 0.5 0. Teapot
Computer Graphics
mjb – December 20, 2020
disco.vert
4
#version 330 compatibility
out vec3 vECpos;
out vec4 vColor;
out float vLightIntensity;
const vec3 LIGHTPOS = vec3( 2., 0., 0. );
void main( ) {
vECpos = ( gl_ModelViewMatrix * gl_Vertex ).xyz;
vec3 tnorm = normalize( vec3( gl_NormalMatrix * gl_Normal ) ); vLightIntensity = dot( normalize(LIGHTPOS – vECpos), tnorm ); vLightIntensity = abs( vLightIntensity );
vColor = gl_Color;
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; }
Computer Graphics
mjb – December 20, 2020
4
2

5
12/22/2020
disco.frag, I
#version 330 compatibility
in vec3 vECpos;
in vec4 vColor;
in float vLightIntensity;
uniform int uNumFacets;
uniform float uPower;
uniform float Timer; // built-in to glman
const float PI = 3.14159265;
const vec3 BALLPOS = vec3( 0., 2., 0. ); const vec3 LIGHTPOS = vec3( 2., 0., 0. ); const vec3 LIGHTCOLOR = vec3( 1., 1., 1. );
void
main( void ) {
int numTheta = uNumFacets;
int numPhi = uNumFacets;
float dtheta = 2. * PI / float(numTheta); float dphi = PI / float(numPhi);
5
// spherical coord angles between the facets
vec3 BP = normalize( vECpos – BALLPOS );
float angle = radians(Timer*360.); float c = cos( angle );
float s = sin( angle );
vec3 bp;
bp.x = c*BP.x + s*BP.z; bp.y = BP.y;
bp.z = -s*BP.x + c*BP.z;
Computer Graphics
// vector from ball center to the // point we care about
// ball rotation angle
// but, rotate the vector, not the ball
// # in longitude direction // # in latitude direction
mjb – December 20, 2020
disco.frag, II
vec3 BL = normalize( LIGHTPOS – BALLPOS ); // vector from the ball center // to the light
vec3 H = normalize( BL + bp );
// vector halfway between BL and bp – if a facet aligns with this angle, // the point we care about will get a lot of light
float xz = length( H.xz );
float phi = atan( H.y, xz );
float theta = atan( H.z, H.x ); // turn the H vector into spherical coordinates
int itheta = int( floor( ( theta + dtheta/2. ) / dtheta ) );
6
int iphi = int( floor( ( phi + dphi/2.
float theta0 = dtheta * float(itheta); float phi0 = dphi * float(iphi);
) / dphi ) );
// figure out what the closest facet to H is
vec3 N0;
N0.y = sin(phi0);
xz = cos(phi0); N0.x = xz*cos(theta0); N0.z = xz*sin(theta0);
float d = max( dot( N0, H ), 0. ); const float DMIN = 0.990;
if( d < DMIN ) d = 0.; d = pow( d, uPower ); // N0 is the discrete facet normal vector // like the cone angle on a spotlight // acos(0.990) is about 8 degrees // specular brightness gl_FragColor = vec4( vColor.rgb*vLightIntensity + d * LIGHTCOLOR, 1. ) ; // diffuse + specular } Computer Graphics mjb – December 20, 2020 6 3 12/22/2020 7 Computer Graphics mjb – December 20, 2020 7 4