| 125 | |
| 126 | template <typename Real> |
| 127 | Real* PGMImage<Real>::MutablePixel(int x, int y) { |
| 128 | return MutablePixelFromLinearIndex(LinearIndex(x, y)); |
| 129 | } |
| 130 | |
| 131 | template <typename Real> |
| 132 | Real PGMImage<Real>::Pixel(int x, int y) const { |
no outgoing calls
no test coverage detected