(float a, float b, float c, float d, float e)Solve a quartic equation of form a*x^4 + b*x^3 + c*x^2 + d*x + e = 0.
@returns A 5-tuple, contanining: sol x0 x1 x2 x3. sol is the number of solutions (ranging from 0-4), and x0, x1, x2 and x3 are the solutions, if any. Unused x's are undefined.
string mSolveQuartic(float %a, float %b, float %c, float %d, float %e);
float %a
No description available.
float %b
No description available.
float %c
No description available.
float %d
No description available.
float %e
No description available.
string
No description available.
Engine
atof
atoi
getMax
getMin
mAbs
mAcos
mAsin
mAtan
mCeil
mClamp
mClampF
mCos
mDegToRad
mFloatLength
mFloor
mLog
mPow
mRadToDeg
mSin
mSolveCubic
mSolveQuadratic
mSqrt
mTan
This function is not called by any other functions.