-
Notifications
You must be signed in to change notification settings - Fork 0
/
graficos.cpp
315 lines (184 loc) · 4.67 KB
/
graficos.cpp
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#include "graficos.h"
#include <QPainter>
#include <QLabel>
#include <QMainWindow>
#include <iostream>
#include <QtGui>
#define PI 3.1416
using namespace std;
Graficos::Graficos()
:QMainWindow()
{
label = new QLabel(this);
qp = new QPainter();
imagen = QImage(400,400, QImage::Format_ARGB32);
imagen.fill(Qt::white);//fondo blanco
setCentralWidget(label);
centrox = 200;
centroy = 200;
qp->begin(&imagen);
}
Graficos::~Graficos()
{
qp->end();
}
void Graficos::render(){
label->setPixmap(QPixmap::fromImage(imagen));
label->show();
}
QPoint Graficos::coor(int x, int y){
if(x >=0){
x = centrox + abs(x);
}else if(x < 0){
x = centrox - abs(x);
}
if(y >= 0){
y = centroy - abs(y);
}else if(y < 0){
y = centrox + abs(y);
}
return QPoint(x,y);
}
void Graficos::dibujar_pixel(int x, int y){
qp->drawPoint(coor(x,y)); //dibujo el pixel
}
void Graficos::fuerzaBrutaCirculo(int r)
{
double y1,y2;
for(int x=-r;x<r;x++)
{
y1 = sqrt((r*r) - (x*x));
y2 = - sqrt((r*r) - (x*x));
dibujar_pixel(x, (int)round(y1));
dibujar_pixel(x, (int)round(y2));
}
}
void Graficos::puntos_Circulo(int x, int y)
{
dibujar_pixel(x,y);
dibujar_pixel(y,x);
dibujar_pixel(y,-x);
dibujar_pixel(x,-y);
dibujar_pixel(-x,-y);
dibujar_pixel(-y,-x);
dibujar_pixel(-y,x);
dibujar_pixel(-x,y);
}
void Graficos::puntoMedioCirculo(int r)
{
int x,y,d;
x = 0;
y = r;
d = 1 - r;
puntos_Circulo(x,y);
while(y > x){
if(d < 0)
{
d = d + 2*x + 3;
x = x + 1;
}
else
{
d = d + 2*(x-y) + 5;
x = x + 1;
y = y - 1;
}
puntos_Circulo(x,y);
}
}
void Graficos::fuerzaBrutaLinea(int _x1,int _y1,int _x2,int _y2)
{
double x1,x2,y1,y2 ;
x1 = (double)_x1;
x2 = (double)_x2;
y1 = (double)_y1;
y2 = (double)_y2;
double y = 0, m = 0, b = 0;
m = (y2 - y1)/(x2 - x1); //pendiente
b = y1 - (m * x1); //interseccion con y
for(int x=_x1;x<_x2;x++)
{
y = ( m * x )+ b;
dibujar_pixel(x , (int)round(y) );
}
}
void Graficos::dda(int _x1,int _y1,int _x2,int _y2)
{
double x1,x2,y1,y2 ;
x1 = (double)_x1;
x2 = (double)_x2;
y1 = (double)_y1;
y2 = (double)_y2;
double y = y1;
double m = (y2 - y1)/(x2 - x1);
for(int x=_x1;x<_x2;x++){
y = y + m;
dibujar_pixel(x, (int)round(y));
}
}
void Graficos::ddaSimetrico(int x1,int y1,int x2,int y2)
{
int d;
double dx,dy,x,y;
if(abs(x2 - x1) > abs(y2 - y1))
{
d = abs(x2 - x1);
}
else
{
d = abs(y2 - y1);
}
dx = (double)(x2 - x1) / d ;
dy = (double)(y2 - y1) / d;
x = (double)x1 + 0.5 * signo(dx);
y = (double)y1 + 0.5 * signo(dy);
for(int i=1;i<d;i++)
{
dibujar_pixel((int)round(x),(int)round(y));
x = (double)x + dx;
y = (double)y + dy;
}
}
double Graficos::signo(double x){
if(x<0){
return -1.0;
}else{
return 1.0;
}
}
QColor Graficos::color(int x, int y){
return QColor(imagen.pixel(coor(x,y)));
}
void Graficos::cuatro_conexa(int x ,int y, QColor target_color, QColor new_color){
if(color(x,y) != target_color){
return;
}
qp->setPen(QColor(new_color));
qp->drawPoint(coor(x,y)); //dibujo el pixel
cuatro_conexa(x-1,y,target_color,new_color);
cuatro_conexa(x+1,y,target_color,new_color);
cuatro_conexa(x,y+1,target_color,new_color);
cuatro_conexa(x,y-1,target_color,new_color);
}
void Graficos::parcial(int n, int r){
double rad=0.0,aumento_rad=0.0, x=0.0, y=0.0, antx=0.0, anty=0.0;
aumento_rad = (2*PI) / n ; //divido 2*PI por el numero de lados para saber tamaño en radianes
// de cada "porcion"
if(n == 1){
dibujar_pixel(0,0);
}else if(n == 2){
qp->drawLine(coor(r,0), coor(0, 0)); //dibujo el pixel
}else{
while(rad <= 2*PI)
{
rad = rad + aumento_rad; //sumo a rad la "porcion"
x = r * cos(rad); //convierto de polares a cartesianas
y = r * sin(rad); //convierto de polares a cartesianas
qp->drawLine(coor(antx,anty), coor(x, y)); //dibujo el pixel
antx = x;
anty = y;
}
qp->drawLine(coor(x,y), coor(r, 0)); //dibujo el pixel
cuatro_conexa(1,1,Qt::white, Qt::yellow);
}
}