// *********** My Object for the object library ************ // Function: Draws three flowers of different colors. // draw_bezier_surface() is used to create the flowers' petals. // This function will take 8 steps and 16 Bezier points for // its parameters. // drawFlower() creates one flower and takes one parameter, which // is an integer to determine what color to use for the flower // (0 for plum, 1 for pink, and 2 for purple). // drawThreeFlowers() then calls the drawFlower() function to // draw the plum, pink and purple flowers. // Need semicolons here void draw_bezier_surface(int nsteps,GLfloat*control_points) void jguintoDrawFlower(int color) void jguintoDrawThreeFlowers()