-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtri.c
114 lines (100 loc) · 2.59 KB
/
tri.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <stdio.h>
#include <curses.h>
#include "tri.h"
/*
* this method will create both filled and empty triangle.
* the triangles to be shown will be either 90 degrees triangle
* or 60 degrees on all angles
*
*/
void drawTri(WINDOW * win,int x, int y, int size, int color, int full)
{
if (full == 0)
{
int i=x;
int j = y;
color_set(color, NULL);//to bee colored as chosen
/*
* METHOD:
* height and base are the same size.
* -1- go from up to down (using j++) and print * the the left
* and one on the right - which increases every step
*
* -2- print one line od * in the same length as the height
* at the y+height position
*/
for (i=x;i<x+size;i++)
{
mvwaddstr(win,j++, i, "*" );
mvwaddstr(win,j, x, "*" );
}/*to print the side lines*/
for (i=x; i<=x+size;i++)
{
mvwaddstr(win,y+size, i, "*" );
}/*to print the bottom line*/
refresh();
}
if (full ==1)
{
color_set(color, NULL);
int i,j,k=x+size;
/***********************************************************************/
/*--------------------------- METHOD-----------------------------------*/
/* go from up to down and in each step: */
/* go from x to k, and paint * each time */
/* decrease k after each step */
/***********************************************************************/
for (i=y+size; i>=y;--i)
{
for (j=x;j<=k;j++){
mvwaddstr(win,i, j, "*" );
}
k--;
}//using mathematics calculations to create.
refresh();
}
}
void drawET(WINDOW * win,int x, int y, int size, int color,int full)
{
if (full == 0)
{
int i= x;
color_set(color, NULL);
/***********************************************************************/
/*--------------------------------METHOD-------------------------------*/
/* paint the bottom line */
/* go from up to down, each time paint * in the beginning and end */
/* start in +1 x and finish in -1 x */
/***********************************************************************/
for (i=x; i<x+size;i++)
{
mvwaddstr(win,y+size, i, "*" );
}/*to print the bottom line*/
int j =y+size/2;
for (i=x+size/2;i>=x;i--)
{
mvwaddstr(win,j++, i, "*" );
}
j =y+size/2;
for(i=x+size/2; i<=x+size; i++)
{
mvwaddstr(win,j++, i, "*" );
}/*to print the side lines*/
refresh();
}
if(full == 1)
{
int i= x;
int l=0,h=0,j;
color_set(color, NULL);
for (j=y+size;j>=y;--j)
{
for (i=(x+l); i<=x+(size-h);i++)
{
mvwaddstr(win,j, i, "*" );
}/*to print the bottom line*/
l++;
h++;
}
}
}