Home | History | Annotate | Download | only in utils

Lines Matching refs:row

197      *  get a value from the matrix. The row,col parameters work as follows:
202 inline SkMScalar get(int row, int col) const {
203 SkASSERT((unsigned)row <= 3);
205 return fMat[col][row];
209 * set a value in the matrix. The row,col parameters work as follows:
214 inline void set(int row, int col, SkMScalar value) {
215 SkASSERT((unsigned)row <= 3);
217 fMat[col][row] = value;
221 inline double getDouble(int row, int col) const {
222 return SkMScalarToDouble(this->get(row, col));
224 inline void setDouble(int row, int col, double value) {
225 this->set(row, col, SkDoubleToMScalar(value));