Computer Graphics Detailed PYQs Solutions
Computer Graphics Detailed PYQs Solutions
Paper 1
3. Explain the basic difference between Raster Scan and Random Scan display systems.
Raster Scan and Random Scan are two different approaches to generating graphics on a
screen. In a Raster Scan system, the display is drawn line by line, from top to bottom, similar
to how a television operates. It is suitable for complex, high-resolution images like
photographs. Random Scan, on the other hand, directly draws geometric shapes by tracing
paths (vectors) and is used for line art or wireframe models. Raster Scan displays are more
common, while Random Scan offers better performance in vector-based graphics.
7. What is a Bezier Curve? Derive the equation for a quadratic Bezier Curve.
A Bezier Curve is a parametric curve commonly used in computer graphics for modeling
smooth curves that can be scaled indefinitely. It is defined by a set of control points. A
quadratic Bezier Curve, the simplest type, has three control points: P0, P1, and P2. The
curve is given by the equation P(t) = (1 - t)²P0 + 2t(1 - t)P1 + t²P2, where t varies between 0
and 1, determining the position along the curve.
10. Describe the concept of shading models and the types of shading used in 3D graphics.
Shading models determine how light interacts with surfaces. Flat Shading uses a single color
for a polygon, providing a faceted appearance. Gouraud Shading interpolates colors at
vertices across the polygon for a smoother appearance, but may lack highlight detail. Phong
Shading, a more advanced technique, interpolates surface normals, resulting in smooth
shading with more realistic highlights.