getHeight method

double getHeight()

@return {double} height The height of this Box.

Implementation

double getHeight()
{
  // Different from Closure Library box as we add the sides together to get height
  return bottom + top;
}