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 max(x, y) ((x > y) ? x : y)
33 int esta_en(double, double, double, double, int);
36 /* Declaración de variables */
51 /* Inicializa variables */
52 i = total = radio = impreso = x = y = 0;
53 fi_cero = ratio_x = ratio_y = 0.0;
54 for (i = 0; i < CANT; i++) {
59 /* Obtiene entrada de usuario y sale si hay error al interpretarla.
60 * TODO - hacerlo independiente de la cantidad (usando CANT),
63 printf("Ingrese la lista de números (10 máximo) separados por comas (,): ");
65 "%i,%i,%i,%i,%i,%i,%i,%i,%i,%i\n",
75 &valores[9]) == EOF) {
76 fprintf(stderr, "Hubo un error al interpretar su entrada de datos.\n");
81 for (i = 0; i < CANT; i++) {
83 fprintf(stderr, "El valor de la posición %i es negativo.\n", i + 1);
90 /* Calculo valores de desplazamiento de fi y el ro máximo (radio) */
91 for (i = 0; i < CANT; i++) {
92 fi[i] = (double) valores[i] * 2.0 * M_PI / (double) total;
94 radio = max(ANCHO, ALTO) / 2;
96 /* Calculo correcciones en x e y para que "emule" un cuadrado */
97 ratio_x = (ALTO > ANCHO) ? ((double)ALTO / (double)ANCHO) : 1.0;
98 ratio_y = (ANCHO > ALTO) ? ((double)ANCHO / (double)ALTO) : 1.0;
100 /* Dibuja la torta */
101 for (y = -ALTO/2; y < (ALTO/2); y++) {
102 for (x = -ANCHO/2; x < ANCHO/2; x++) {
105 for (i = 0; i < CANT; i++) {
106 /* Se fija si cada x, y de la pantalla está en una porción de
107 * la torta, dibujando el número que corresponde si lo es así.
109 if (esta_en((double)x * ratio_x,
111 fi_cero, fi[i], radio)) {
115 /* Si no pertenece a esta parte de la torta, actualizo el
116 * fi_cero sumandole el delta fi de la parte actual.
122 /* Si no se pertenece a ninguna parte, se dibuja un espacio */
127 printf("\n"); /* Termino una línea */
135 int esta_en(double x, double y, double fi_cero, double fi_delta, int radio) {
136 double ro = sqrt(x*x + y*y);
137 double fi = atan2(y, x) + M_PI;
138 double fi_fin = fi_cero + fi_delta;
139 /* Se fija si el fi y ro actuales están en los rangos
140 * NOTA: la comparación se hace como float para evitar pequeños errores
141 * de redondeo (las operaciones se hacen en double para que sean más
142 * precisas y las comparaciones en float para que sean más "flexibles").
145 ((float)ro <= (float)radio)
146 && ((float)fi >= (float)fi_cero)
147 && ((float)fi <= (float)fi_fin);