-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrect.c
49 lines (40 loc) · 957 Bytes
/
rect.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <stdio.h>
#include <curses.h>
#include "rect.h"
void drawRect(WINDOW * win,int x, int y, int size, int color, int full)
{
if (full == 0){
int i;
color_set(color, NULL);
/******************************************/
/*----------------- METHOD----------------*/
/* create horizontal lines in y and y+size*/
/* create vertical lines in x and x+size+2*/
/******************************************/
for (i=x; i<x+size;++i)
{
mvwaddstr(win,y, i, "*" );
mvwaddstr(win,y+size, i, "*" );
refresh();
}/*to print the top and bottom lines*/
for (i=y;i<=y+size;++i)
{
mvwaddstr(win,i, x, "*" );
mvwaddstr(win,i, x+size, "*" );
}/*to print the side lines*/
refresh();
}
if (full == 1){
int i,j;
color_set(color, NULL);
for (i=y;i<=y+size;++i)
{
for (j=x; j<=x+size;++j)
{
mvwaddstr(win,i, j, "*" );
}/*to print the top and bottom lines*/
}
refresh();
}
}
/*to save to future use*/