Portfolio

Please see the below work samples highlighting my skills. Each progam was made using C++ and OpenGL with shaders written in GLSL.

SHADERS

This program uses per-fragment lighting and fragment shaders to model an erosion effect on a custom object I made in Blender. I added shadows to the scene using custom shaders in GLSL and animated the object moving to demonstrate the motion of the shadows.

This program uses vertex and fragment shaders to distort the vertices and color of a sphere. The vertex shader is changing each coordinates position using sine functions and the fragment shader is altering the color of the sphere to draw ellipses on its surface. The scene is animated to constantly change the vertices in the vertex shaders and the size of each ellipse in the fragment shader. The fragment shader is also using a smooth step function to blend the edges of the elliptical areas.

GEOMETRIC MODELING

This program animates a scene of a cartoon ghost using Catmull-Rom curves. The white dots are the coordinates for each point and the white lines linearly connect each point. I used the Catmull-Rom formula to smoothly connect the points and animated the them to move over time.

TEXTURE MAPPING

This program wraps a 2D world map image around a sphere drawn in OpenGL and distorts the s and t coordinates of the texture. This is done by changing the object s coordinates as a tangent function of its t coordinates.

Print Friendly, PDF & Email