1: 2: /** 3: Interface for a triangle to be drawn on the screen. 4: */ 5: public interface TriangleInterface extends ShapeInterface 6: { 7: /** 8: Sets the triangle's base. 9: */ 10: public void set(int newBase); 11: } 12: