Commit 2c1a2f4e authored by Davis King's avatar Davis King

Added some polynomial drawing to the testing gui

parent af7fcb0e
......@@ -77,6 +77,12 @@ private:
if (hidden == false )
{
fill_rect(c,rect,rgb_pixel(red,green,blue));
std::vector<point> poly;
poly.push_back((rect.tl_corner()+rect.tr_corner())/2);
poly.push_back((rect.tr_corner()+rect.br_corner())/2);
poly.push_back((rect.br_corner()+rect.bl_corner())/2);
poly.push_back((rect.bl_corner()+rect.tl_corner())/2);
draw_solid_convex_polygon(c,poly,rgb_alpha_pixel(0,0,0,70));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment