| 288 | } |
| 289 | |
| 290 | bool getFunctionValues(const Matrix &layerData, const IndicesMatrix &indices, DataMatrix *data) |
| 291 | { |
| 292 | data->topLeft_ = layerData(indices.topLeft_.x(), indices.topLeft_.y()); |
| 293 | data->topRight_ = layerData(indices.topRight_.x(), indices.topRight_.y()); |
| 294 | data->bottomLeft_ = layerData(indices.bottomLeft_.x(), indices.bottomLeft_.y()); |
| 295 | data->bottomRight_ = layerData(indices.bottomRight_.x(), indices.bottomRight_.y()); |
| 296 | return true; |
| 297 | } |
| 298 | |
| 299 | void bindIndicesToRange(const GridMap &gridMap, IndicesMatrix *indices) |
| 300 | { |
no outgoing calls
no test coverage detected