-/* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
+/* vim: set et sts=4 sw=4 fdm=marker fmr={,} fdn=1 fo+=t tw=80:
*
* Taller de Programación (75.42).
*
#ifndef RECTANGULO_H
#define RECTANGULO_H
-#include "punto.h"
-#include <cstdlib>
-#include <ostream>
+#include "figura.h"
/**
- * Figura dibujable.
+ * Rectángulo.
*/
class Rectangulo: public Figura {
+
protected:
+
/// Ancho.
float ancho;
+
/// Alto.
float alto;
public:
+
/// Constructor.
Rectangulo(size_t color, size_t grosor, const Punto& centro,
const char* nombre, float ancho, float alto);