/**
 * Interface that defines stretch method to lengthen the longest dimension of a Shape
 */
public interface Stretchable
{
    void stretch( double factor );
}