/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package borrame;

import java.awt.Graphics;

/**
 *
 * @author felix
 */
public class Rectangulo extends Cuadro{
    public Rectangulo() {       
    }
    
    @Override
    public void dibuja(Graphics g) {
        g.setColor(c);
        g.drawRect(x0, y0, (x0-x1), (y0-y1));
        
    }
}
