protected function Rectangle::fraction in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Utility/Rectangle.php \Drupal\Component\Utility\Rectangle::fraction()
- 9 core/lib/Drupal/Component/Utility/Rectangle.php \Drupal\Component\Utility\Rectangle::fraction()
Returns the fractional part of a float number, unsigned.
Parameters
float $input: The input value.
Return value
float The fractional part of the input number, unsigned.
File
- core/
lib/ Drupal/ Component/ Utility/ Rectangle.php, line 157
Class
- Rectangle
- Rectangle rotation algebra class.
Namespace
Drupal\Component\UtilityCode
protected function fraction($input) {
return abs((int) $input - $input);
}