/*
 * Polygon.java    2.0 97/06/10
 * Copyright (c) 1997, B. F. Caviness
 *
 * This software may be copied/modified for any non-commercial educational use.
 */

package sg;

/**
 * The <code>interface Polygon</code> must be implemented by each geometric
 * object.
 *
 * @version   2.0, 10 June 1997
 * @author    B. F. Caviness
 */

public interface Polygon {
   /**
    * Paint the polygon on the graphics device g.
    */
   void paint( Graphics g );
}
