Searched refs:m_matrix (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dmatrix.cpp48 return m_matrix[col][row];
56 m_matrix[col][row] = value;
67 m_matrix[i][j] = mat.m_matrix[i][j];
83 if ( !wxIsSameDouble(m_matrix[i][j], mat.m_matrix[i][j]) )
98 return m_matrix[0][0];
100 return m_matrix[col][row];
108 return m_matrix[col][row];
117 inverseMatrix[0][0] = wxCalculateDet(m_matrix[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dmatrix.h42 //rows are horizontal (second index of m_matrix member)
43 //columns are vertical (first index of m_matrix member)
47 //rows are horizontal (second index of m_matrix member)
48 //columns are vertical (first index of m_matrix member)
80 //rows are horizontal (second index of m_matrix member)
81 //columns are vertical (first index of m_matrix member)
84 //rows are horizontal (second index of m_matrix member)
85 //columns are vertical (first index of m_matrix member)
173 double m_matrix[3][3]; member in class:wxTransformMatrix
193 //we can do without Y -> m_matrix[
[all...]
H A Dgraphics.h653 wxGraphicsMatrix* GetMatrix() { return m_matrix; }
656 wxGraphicsMatrix* m_matrix;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dgraphicc.cpp229 cairo_matrix_t m_matrix ; member in class:wxCairoMatrixData
874 m_matrix = *matrix;
884 return new wxCairoMatrixData(GetRenderer(),&m_matrix);
890 cairo_matrix_multiply( &m_matrix, &m_matrix, (cairo_matrix_t*) t->GetNativeMatrix());
897 cairo_matrix_init( &m_matrix, a, b, c, d, tx, ty);
904 if (a) *a = m_matrix.xx;
905 if (b) *b = m_matrix.yx;
906 if (c) *c = m_matrix.xy;
907 if (d) *d = m_matrix
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dgraphics.cpp876 CGAffineTransform m_matrix;
894 m->m_matrix = m_matrix ;
901 m_matrix = CGAffineTransformConcat(*((CGAffineTransform*) t->GetNativeMatrix()), m_matrix);
908 m_matrix = CGAffineTransformMake(a,b,c,d,tx,ty);
915 if (a) *a = m_matrix.a;
916 if (b) *b = m_matrix.b;
917 if (c) *c = m_matrix.c;
918 if (d) *d = m_matrix
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dgraphics.cpp217 Matrix* m_matrix ; member in class:wxGDIPlusMatrixData
880 m_matrix = matrix ;
882 m_matrix = new Matrix();
887 delete m_matrix;
892 return new wxGDIPlusMatrixData( GetRenderer(), m_matrix->Clone());
898 m_matrix->Multiply( (Matrix*) t->GetNativeMatrix());
905 m_matrix->SetElements(a,b,c,d,tx,ty);
913 m_matrix->GetElements(elements);
925 m_matrix->Invert();
931 return m_matrix
[all...]

Completed in 124 milliseconds