#include <deprecated_matrix44.h>

Public Member Functions | |
| T | Determinant () const |
| If you need to solve some equation you can use this function instead of Matrix44 one for speed. | |
| LinearSolve (const Matrix44< T > &m) | |
| Point4< T > | Solve (const Point4< T > &b) |
Protected Member Functions | |
| bool | Decompose () |
Protected Attributes | |
| T | d |
| Hold sign of row permutation (used for determinant sign). | |
| int | index [4] |
| Holds row permutation. | |
Class for solving A * x = b.
Definition at line 313 of file deprecated_matrix44.h.
| vcg::LinearSolve< T >::LinearSolve | ( | const Matrix44< T > & | m | ) | [inline] |
Definition at line 866 of file deprecated_matrix44.h.
| bool vcg::LinearSolve< T >::Decompose | ( | ) | [inline, protected] |
Definition at line 887 of file deprecated_matrix44.h.
| T vcg::LinearSolve< T >::Determinant | ( | ) | const [inline] |
If you need to solve some equation you can use this function instead of Matrix44 one for speed.
Reimplemented from vcg::Matrix44< T >.
Definition at line 875 of file deprecated_matrix44.h.
Definition at line 1000 of file deprecated_matrix44.h.
T vcg::LinearSolve< T >::d [protected] |
Hold sign of row permutation (used for determinant sign).
Definition at line 323 of file deprecated_matrix44.h.
int vcg::LinearSolve< T >::index[4] [protected] |
Holds row permutation.
Definition at line 321 of file deprecated_matrix44.h.