| | 440 | // helper functions for matrix decomposition |
|---|
| | 441 | ValueType norm1_3x3 (void) const; |
|---|
| | 442 | ValueType normInf_3x3 (void) const; |
|---|
| | 443 | |
|---|
| | 444 | void adjointT_3x3 (TransformationMatrix &result) const; |
|---|
| | 445 | void polarDecompose (TransformationMatrix &Q, |
|---|
| | 446 | TransformationMatrix &S, |
|---|
| | 447 | ValueType &det ) const; |
|---|
| | 448 | void spectralDecompose(TransformationMatrix &SO, |
|---|
| | 449 | VectorType3f &k ) const; |
|---|
| | 450 | void decompose (VectorType3f &t, |
|---|
| | 451 | ValueType &f, |
|---|
| | 452 | QuaternionType &r, |
|---|
| | 453 | QuaternionType &so, |
|---|
| | 454 | VectorType3f &s ) const; |
|---|
| | 455 | |
|---|