Q1: Write C++ program to draw a concave polygon and fill it with desired color using scan fill algorithm. View Code 1 Copy Code Close
Q2: Write C++ program to implement Cohen Sutherland line clipping algorithm. View Code 1 Copy Code Close
Q3a: Write C++ program to draw the following pattern. Use DDA line and Bresenham's circle drawing algorithm. Apply the concept of encapsulation. View Code 1 Copy Code Close
Q3b: Write C++ program to draw the following pattern. Use DDA line and Bresenham's circle drawing algorithm. Apply the concept of encapsulation. View Code 1 Copy Code Close
Q4a: Write C++ program to draw 2-D object and perform following basic transformations: 1. Scaling 2. Translation 3. Rotation. Apply the concept of operator overloading. View Code 1 Copy Code Close
Q4b: Write C++ program to implement translation, rotation and scaling transformations on equilateral triangle and rhombus. Apply the concept of operator overloading. View Code 1 Copy Code Close
Q5b: Write C++ program to generate Hilbert curve using concept of fractals. View Code 1 Copy Code Close
Q5c: Write C++ program to generate fractal patterns by using Koch curves. View Code 1 Copy Code Close