added start of drawing a border for #4 , but still need to tweak it
This commit is contained in:
@@ -1 +1,12 @@
|
||||
#include "drawing.h"
|
||||
#include "drawing.h"
|
||||
|
||||
void drawing_draw_rectangle_open(float x, float y, float width, float heigth, int thiccness, unsigned int color)
|
||||
{
|
||||
for (int i = 0; i < thiccness; i++)
|
||||
{
|
||||
vita2d_draw_line(x, y + i, x + width, y + i, color);
|
||||
vita2d_draw_line(x + i, y, x + i, y + heigth, color);
|
||||
vita2d_draw_line(x, y - i, x + width, y - i, color);
|
||||
vita2d_draw_line(x + width - i, y, x + width - i, y + heigth, color);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user