PocketMine-MP 5.19.1 git-f1b1a7022d7dc67d012d8891bc4c23c2652c825e
Math.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20*/
21
22declare(strict_types=1);
23
27namespace pocketmine\math;
28
29use function sqrt;
30
31final class Math{
32 private function __construct(){
33 //NOOP
34 }
35
39 public static function floorFloat($n) : int{
40 $i = (int) $n;
41 return $n >= $i ? $i : $i - 1;
42 }
43
47 public static function ceilFloat($n) : int{
48 $i = (int) $n;
49 return $n <= $i ? $i : $i + 1;
50 }
51
57 public static function solveQuadratic(float $a, float $b, float $c) : array{
58 if($a === 0.0){
59 throw new \InvalidArgumentException("Coefficient a cannot be 0!");
60 }
61 $discriminant = $b ** 2 - 4 * $a * $c;
62 if($discriminant > 0){ //2 real roots
63 $sqrtDiscriminant = sqrt($discriminant);
64 return [
65 (-$b + $sqrtDiscriminant) / (2 * $a),
66 (-$b - $sqrtDiscriminant) / (2 * $a)
67 ];
68 }elseif($discriminant == 0){ //1 real root
69 return [
70 -$b / (2 * $a)
71 ];
72 }else{ //No real roots
73 return [];
74 }
75 }
76}
static ceilFloat($n)
Definition: Math.php:47
static floorFloat($n)
Definition: Math.php:39
static solveQuadratic(float $a, float $b, float $c)
Definition: Math.php:57