| 1178 | return cm; |
| 1179 | } |
| 1180 | ComplexMatrix4 toComplexMatrix4(QMatrix qm) { |
| 1181 | DEMAND( qm.size() == 4 ); |
| 1182 | ComplexMatrix4 cm; |
| 1183 | macro_copyQMatrixToDeprecatedComplexMatrix(cm, qm); |
| 1184 | return cm; |
| 1185 | } |
| 1186 | |
| 1187 | /** Copies ComplexMatrix structures into a QMatrix */ |
| 1188 | #define macro_copyComplexMatrix(dest, src, dim) \ |
no outgoing calls
no test coverage detected