Please read and learn from <a href="http://www.catb.org/~esr/faqs/smart-questions.html" rel="nofollow">http://www.catb.org/~esr/faqs/smart-questions.html</a>. As is, we have to guess at what you know and don’t know.<p>My knowledge/memory may be a bit rusty, but let’s try to do that (basically rephrasing Wikipedia, leaving out some details, but that sometimes helps). I’ll assume you know what triangles are ;-), what a triangular mesh is and what shading is.<p>With Gouraud shading, you compute the shading at each visible vertex of your model and interpolate the shading of all other points in each visible polygon from the shading of each of its vertices.<p>Computing shading involves computing a surface normal and, then, using a reflection model to compute what a given point looks like.<p>With Phong shading, you compute the surface normal at each visible vertex of your model, interpolate the surface normal of of all other points in each visible polygon from the surface normal of each of its vertices, and then compute the shading of each point using that surface normal.<p>That’s more work (you have to interpolate vectors, and, more importantly, have to apply your reflection model at each point, rather than only at each vertex), but gives better results.