#include <glsl_math.h>
Static Public Member Functions | |
| float | calc (const Mat &m) |
|
||||||||||
|
Definition at line 649 of file glsl_math.h. References gslib::glsl_math::cofactor().
00649 {
00650 float result = 0;
00651 for ( Mat::size_type i = 0; i < Mat::columnSize(); ++i ) {
00652 result += ( ( 0 == ( i & 1 ) ) ? 1 : -1 ) * m[ 0 ][ i ] * cofactor( m, 0, i );
00653 }
00654 return result;
00655 }
|
Here is the call graph for this function:

1.3.6