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

/**
 *
 * @author felix
 */

public interface Figura {
    
    public double area();

    public double perimetro();

}
