| 237 | } |
| 238 | |
| 239 | float operator()(py::ssize_t i, py::ssize_t j) const { |
| 240 | return Matrix::operator()(i * m_row_factor, j * m_col_factor); |
| 241 | } |
| 242 | |
| 243 | float &operator()(py::ssize_t i, py::ssize_t j) { |
| 244 | return Matrix::operator()(i * m_row_factor, j * m_col_factor); |
nothing calls this directly
no test coverage detected