#include "qcepproperty.h"
#include "cctwmatrix3x3.h"
Go to the source code of this file.
#define CCTW_DOUBLEMATRIX3X3_PROPERTY |
( |
|
propname | ) |
|
template<typename T >
QDataStream& operator<< |
( |
QDataStream & |
stream, |
|
|
const CctwMatrix3x3< T > & |
matrix |
|
) |
| |
Definition at line 108 of file cctwdoublematrix3x3property.h.
110 for (
int row = 0; row < 3; ++row)
111 for (
int col = 0; col < 3; ++col)
112 stream <<
double(matrix(row, col));
template<typename T >
QDataStream& operator>> |
( |
QDataStream & |
stream, |
|
|
CctwMatrix3x3< T > & |
matrix |
|
) |
| |
Definition at line 117 of file cctwdoublematrix3x3property.h.
120 for (
int row = 0; row < 3; ++row) {
121 for (
int col = 0; col < 3; ++col) {
123 matrix(row, col) = T(x);