(self, x, y, map)
| 17 | return self.__height |
| 18 | |
| 19 | def get_value(self, x, y, map): |
| 20 | return map[x][y] |
| 21 | |
| 22 | def draw_sqr(self, x, y, width, height, value, map): |
| 23 | assert 0 <= x < self.__width and 0 <= y < self.__height, 'the position ({0}, {1}) is not correct.'.format(x, y) |
nothing calls this directly
no outgoing calls
no test coverage detected