Joseph Redmon
2015-06-16 3b864c2254752c252936c9cc14036991686d2c81
src/image.c
@@ -59,6 +59,14 @@
    }
}
void draw_box_width(image a, int x1, int y1, int x2, int y2, int w, float r, float g, float b)
{
    int i;
    for(i = 0; i < w; ++i){
        draw_box(a, x1+i, y1+i, x2-i, y2-i, r, g, b);
    }
}
void flip_image(image a)
{
    int i,j,k;