The diagram on the next page shows a single triangular face in the wireframe
representation of an object. The three vertices of the triangle are labeled
\(v_{1}, v_{2}\), and \(v_{3}\), and each has been assigned a color, either red,
blue, or green.
The vertex color is stored as a three-tuple, with each entry an integer in the
range 0 to 255 , representing the contribution of the components red, green,
and blue, respectively. (Note: This is identical to the RGB color model
introduced in Chapter 4, page 171.) So, for example, the color red is
represented by the three-tuple \((255,0,0)\). Purple, an equal mix of red and
blue, would be represented as \((128,0,128)\).
During the rendering phase, a computer must shade in the entire triangular
face, according to the colors assigned to each of the three vertices. Describe
an algorithm that would do color shading and blending of the triangular face
in a visually attractive manner.