Home | History | Annotate | Download | only in utils

Lines Matching refs:row

195      *  get a value from the matrix. The row,col parameters work as follows:
200 inline SkMScalar get(int row, int col) const {
201 SkASSERT((unsigned)row <= 3);
203 return fMat[col][row];
207 * set a value in the matrix. The row,col parameters work as follows:
212 inline void set(int row, int col, SkMScalar value) {
213 SkASSERT((unsigned)row <= 3);
215 fMat[col][row] = value;
219 inline double getDouble(int row, int col) const {
220 return SkMScalarToDouble(this->get(row, col));
222 inline void setDouble(int row, int col, double value) {
223 this->set(row, col, SkDoubleToMScalar(value));