Implements polynomial solvers. More...
#include "math/CMaths.h"
Go to the source code of this file.
Namespaces | |
chai3d | |
Functions | |
int | chai3d::cSolveLinear (double a_coefficient[2], double a_solution[1]) |
This function computes the solution of a linear equation. More... | |
int | chai3d::cSolveQuadric (double a_coefficient[3], double a_solution[2]) |
This function computes the solution of a quadric equation. More... | |
int | chai3d::cSolveCubic (double a_coefficient[4], double a_solution[3]) |
This function computes the solution of a cubic equation. More... | |
int | chai3d::cSolveQuartic (double a_coefficient[5], double a_solution[4]) |
This function computes the solution of a quartic equation. More... | |