double calculateNewHeight( double originalWidth, double originalHeight, double newWidth) { return (originalHeight * newWidth) / originalWidth; }