From 87ee1f2c9d20abae655c2f0c85503a7c951f26d8 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 3 Oct 2003 04:42:20 +0000 Subject: [PATCH] =?utf8?q?Se=20reemplazan=20los=20float=20por=20int=20porq?= =?utf8?q?ue=20las=20medidas=20son=20en=20p=C3=ADxeles.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- circulo.cpp | 2 +- circulo.h | 4 ++-- cuadrado.cpp | 2 +- cuadrado.h | 2 +- punto.h | 6 +++--- rectangulo.cpp | 2 +- rectangulo.h | 6 +++--- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/circulo.cpp b/circulo.cpp index 5ce7d78..55774b0 100644 --- a/circulo.cpp +++ b/circulo.cpp @@ -21,7 +21,7 @@ #endif Circulo::Circulo(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float radio): + const char* nombre, int radio): Figura(color, grosor, centro, nombre), radio(radio) { #ifdef DEBUG std::cerr << "En constructor de Círculo." << std::endl; diff --git a/circulo.h b/circulo.h index c3d2b01..ea1047b 100644 --- a/circulo.h +++ b/circulo.h @@ -27,13 +27,13 @@ class Circulo: public Figura { protected: /// Radio. - float radio; + int radio; public: /// Constructor. Circulo(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float radio); + const char* nombre, int radio); /// Destructor. virtual ~Circulo(void); diff --git a/cuadrado.cpp b/cuadrado.cpp index 09b6ca2..d54ca8f 100644 --- a/cuadrado.cpp +++ b/cuadrado.cpp @@ -21,7 +21,7 @@ #endif Cuadrado::Cuadrado(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float lado): + const char* nombre, int lado): Rectangulo(color, grosor, centro, nombre, lado, lado) { #ifdef DEBUG std::cerr << "En constructor de Cuadrado." << std::endl; diff --git a/cuadrado.h b/cuadrado.h index 5c85abf..bdfb118 100644 --- a/cuadrado.h +++ b/cuadrado.h @@ -28,7 +28,7 @@ class Cuadrado: public Rectangulo { /// Constructor. Cuadrado(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float lado); + const char* nombre, int lado); /// Destructor. virtual ~Cuadrado(void); diff --git a/punto.h b/punto.h index b62fb34..5b02726 100644 --- a/punto.h +++ b/punto.h @@ -27,13 +27,13 @@ struct Punto { /// Coordenada x. - float x; + int x; /// Coordenada y. - float y; + int y; /// Constructor. - Punto(float x, float y): x(x), y(y) { + Punto(int x, int y): x(x), y(y) { #ifdef DEBUG std::cerr << "En constructor de Punto." << std::endl; #endif diff --git a/rectangulo.cpp b/rectangulo.cpp index c4e9e56..26510d6 100644 --- a/rectangulo.cpp +++ b/rectangulo.cpp @@ -21,7 +21,7 @@ #endif Rectangulo::Rectangulo(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float ancho, float alto): + const char* nombre, int ancho, int alto): Figura(color, grosor, centro, nombre), ancho(ancho), alto(alto) { #ifdef DEBUG std::cerr << "En constructor de Rectángulo." << std::endl; diff --git a/rectangulo.h b/rectangulo.h index 47da206..f1cdffd 100644 --- a/rectangulo.h +++ b/rectangulo.h @@ -27,16 +27,16 @@ class Rectangulo: public Figura { protected: /// Ancho. - float ancho; + int ancho; /// Alto. - float alto; + int alto; public: /// Constructor. Rectangulo(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float ancho, float alto); + const char* nombre, int ancho, int alto); /// Destructor. virtual ~Rectangulo(void); -- 2.43.0