which set all pixels of the canvas to the given color.void Clear(RGB col = Black);
Submit your new function definition to xchen AT cs DOT utah DOT edu before the end of the morning class. (Please just copy and paste into your message editor window).
void WireTriangle(int x1, int y1, RGB const& col1, int x2, int y2, RGB const& col2, int x3, int y3, RGB const& col3); void WireCircle(int center_x, int center_y, int radius, RGB const& col); void SolidCircle(int center_x, int center_y, int radius, RGB const& col); void WireRectangle(int minx, int miny, int maxx, int maxy, RGB const& col); void SolidRectangle(int minx, int miny, int maxx, int maxy, RGB const& col);
1.3.6