Lines Matching defs:col
181 void Matrix4::SetEntry(int32_t row, int32_t col, double value)
183 if ((row < 0 || row >= DIMENSION) || (col < 0 || col >= DIMENSION)) {
186 matrix4x4_[row][col] = value;
350 int32_t col = index % DIMENSION;
351 return matrix4x4_[row][col];
354 double Matrix4::operator()(int32_t row, int32_t col) const
356 // Caller guarantee row and col in range of [0, 3].
357 return matrix4x4_[row][col];
446 bool Matrix4N::SetEntry(int32_t row, int32_t col, double value)
448 if (row < 0 || row >= DIMENSION || col < 0 || col >= columns_) {
451 matrix4n_[row][col] = value;
521 bool MatrixN4::SetEntry(int32_t row, int32_t col, double value)
523 if (row < 0 || row >= rows_ || col < 0 || col >= DIMENSION) {
526 matrixn4_[row][col] = value;