Utility class for maths functions. More...
Static Public Member Functions | |
static List< float > | SolveQuadraticEquation (float a, float b, float c) |
Solve and quadratic equation in the form ax^2 + bx + c = 0. | |
Utility class for maths functions.
Definition at line 9 of file MathsUtil.cs.
|
inlinestatic |
Solve and quadratic equation in the form ax^2 + bx + c = 0.
a | Coefficient of x^2. |
b | Coefficient of x. |
c | Constant c. |
Definition at line 23 of file MathsUtil.cs.