You are here

public function Rectangle::getBoundingHeight in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Utility/Rectangle.php \Drupal\Component\Utility\Rectangle::getBoundingHeight()

Gets the bounding height of the rectangle.

Return value

int The bounding height of the rotated rectangle.

File

core/lib/Drupal/Component/Utility/Rectangle.php, line 191

Class

Rectangle
Rectangle rotation algebra class.

Namespace

Drupal\Component\Utility

Code

public function getBoundingHeight() {
  return $this->boundingHeight;
}