2 * Taller de Programación (75.42).
4 * Ejercicio Número 1 - Graficador de torta en modo texto.
6 * Copyleft (2003) Leandro Lucarella <llucare@fi.uba.ar>
7 * Puede copiar, modificar y distribuir este programa bajo los términos de
8 * la licencia GPL (http://www.gnu.org/).
10 * Creado: lun mar 24 02:21:42 ART 2003
15 /* bibliotecas usadas */
20 /* Constante con PI */
22 # define M_PI 3.14159265358979323846
25 /* Constantes que indican el ancho y alto de la pantalla */
28 /* Constante con la máxima cantidad de elementos aceptables */
31 #define SCANF_STRING "%i,%i,%i,%i,%i,%i,%i,%i,%i,%i\n"
33 #define max(x, y) ((x > y) ? x : y)
35 int esta_en(double, double, double, double, int);
38 /* Declaración de variables */
53 /* Inicializa variables */
54 i = total = radio = impreso = x = y = 0;
55 fi_cero = ratio_x = ratio_y = 0.0;
56 for (i = 0; i < CANT; i++) {
61 /* Obtiene entrada de usuario y sale si hay error al interpretarla.
62 * TODO - hacerlo independiente de la cantidad (usando CANT),
76 &valores[9]) == EOF) {
77 fprintf(stderr, "Hubo un error al interpretar su entrada de datos.\n");
82 for (i = 0; i < CANT; i++) {
84 fprintf(stderr, "El valor de la posición %i es negativo.\n", i + 1);
91 /* Calculo valores de desplazamiento de fi y el ro máximo (radio) */
92 for (i = 0; i < CANT; i++) {
93 fi[i] = (double) valores[i] * 2.0 * M_PI / (double) total;
95 radio = max(ANCHO, ALTO) / 2;
97 /* Calculo correcciones en x e y para que "emule" un cuadrado */
98 ratio_x = (ALTO > ANCHO) ? ((double)ALTO / (double)ANCHO) : 1.0;
99 ratio_y = (ANCHO > ALTO) ? ((double)ANCHO / (double)ALTO) : 1.0;
101 /* Dibuja la torta */
102 for (y = -ALTO/2; y < (ALTO/2); y++) {
103 for (x = -ANCHO/2; x < ANCHO/2; x++) {
106 for (i = 0; i < CANT; i++) {
107 /* Se fija si cada x, y de la pantalla está en una porción de
108 * la torta, dibujando el número que corresponde si lo es así.
110 if (esta_en((double)x * ratio_x,
112 fi_cero, fi[i], radio)) {
116 /* Si no pertenece a esta parte de la torta, actualizo el
117 * fi_cero sumandole el delta fi de la parte actual.
123 /* Si no se pertenece a ninguna parte, se dibuja un espacio */
128 printf("\n"); /* Termino una línea */
136 int esta_en(double x, double y, double fi_cero, double fi_delta, int radio) {
137 double ro = sqrt(x*x + y*y);
138 double fi = atan2(y, x) + M_PI;
139 double fi_fin = fi_cero + fi_delta;
140 /* Se fija si el fi y ro actuales están en los rangos
141 * NOTA: la comparación se hace como float para evitar pequeños errores
142 * de redondeo (las operaciones se hacen en double para que sean más
143 * precisas y las comparaciones en float para que sean más "flexibles").
146 ((float)ro <= (float)radio)
147 && ((float)fi >= (float)fi_cero)
148 && ((float)fi <= (float)fi_fin);