-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw2.c
129 lines (120 loc) · 2.84 KB
/
draw2.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* draw2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nahmed-m <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/01/13 17:17:24 by nahmed-m #+# #+# */
/* Updated: 2016/01/14 13:02:21 by nahmed-m ### ########.fr */
/* */
/* ************************************************************************** */
#include "fdf.h"
void ft_gen_x_axes_mid(t_env *e, int i, int s, t_trace *t)
{
t_pos p1;
t_pos p2;
while (t->k != e->line)
{
while (t->i != e->collum - 1)
{
e->color = color(e->cor[t->k][t->i]);
if (e->cor[t->k][t->i] == e->cor[t->k][t->i + 1])
{
p1.x = t->x + i;
p1.y = t->y - e->cor[t->k][t->i];
p2.x = t->x + s + i;
p2.y = t->y - e->cor[t->k][t->i];
line(&p1, &p2, e);
}
t->x += s;
t->i++;
}
t->x = e->basex;
t->i = 0;
t->k++;
t->y += s;
i -= s;
}
}
void ft_gen_x_axes_top(t_env *e, int i, int s, t_trace *t)
{
t_pos p1;
t_pos p2;
while (t->k != e->line)
{
while (t->i != e->collum - 1)
{
e->color = color(e->cor[t->k][t->i]);
if (e->cor[t->k][t->i] != e->cor[t->k][t->i + 1])
{
p1.x = t->x + i;
p1.y = t->y - e->cor[t->k][t->i];
p2.x = t->x + s + i;
p2.y = t->y - e->cor[t->k][t->i + 1];
line(&p1, &p2, e);
}
t->x += s;
t->i++;
}
t->x = e->basex;
t->i = 0;
t->k++;
t->y += s;
i -= s;
}
}
void ft_gen_y_axes_mid(t_env *e, int i, int s, t_trace *t)
{
t_pos p1;
t_pos p2;
while (t->k != e->line - 1)
{
while (t->i != e->collum)
{
e->color = color(e->cor[t->k][t->i]);
if (e->cor[t->k][t->i] == e->cor[t->k + 1][t->i])
{
p1.x = t->x + i;
p1.y = t->y - e->cor[t->k][t->i];
p2.x = t->x + i - s;
p2.y = t->y + s - e->cor[t->k][t->i];
line(&p1, &p2, e);
}
t->x += s;
t->i++;
}
t->x = e->basex;
t->i = 0;
t->k++;
t->y += s;
i -= s;
}
}
void ft_gen_y_axes_top(t_env *e, int i, int s, t_trace *t)
{
t_pos p1;
t_pos p2;
while (t->k != e->line - 1)
{
while (t->i != e->collum)
{
e->color = color(e->cor[t->k][t->i]);
if (e->cor[t->k][t->i] != e->cor[t->k + 1][t->i])
{
p1.x = t->x + i;
p1.y = t->y - e->cor[t->k][t->i];
p2.x = t->x + i - s;
p2.y = t->y + s - e->cor[t->k + 1][t->i];
line(&p1, &p2, e);
}
t->x += s;
t->i++;
}
t->x = e->basex;
t->i = 0;
t->k++;
t->y += s;
i -= s;
}
}