getHeight method
@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;
}
@return {double} height The height of this Box.
double getHeight()
{
// Different from Closure Library box as we add the sides together to get height
return bottom + top;
}