//TriangleInterface.java

/**
 * Interface for a triangle to be drawn on the screen. 
 */
public interface TriangleInterface
    extends ShapeInterface
{
    /**
     * Sets the triangle's base. 
     */
    public void set(int newBase);
}
