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

package Capitulo_6.Dibujo2;

import java.awt.Color;
import java.awt.Graphics;

/**
 *
 * @author felix
 */
public interface Figura {
    public void set(int x0, int y0, int x1, int y1, Color c);
    void dibuja(Graphics g);
}
