template<typename type, unsigned int A, unsigned int B>
Definition at line 1176 of file FXMaths.h. 01177 { // No SIMD available to swap bytes around and endian conversion isn't big enough :( 01178 MatrixIt<type, A, B, true> ret; 01179 for(FXuint b=0; b<B; b++) 01180 for(FXuint a=0; a<A; a++) 01181 ret.data[b].set(a, v.data[a][b]); 01182 return ret; 01183 }
|