Get image by id.
| 277 | |
| 278 | /// Get image by id. |
| 279 | RGBAImage *RGBAImageSet::Get(int ident) { |
| 280 | ImageMap::iterator it = images.find(ident); |
| 281 | if (it != images.end()) { |
| 282 | return it->second; |
| 283 | } |
| 284 | return NULL; |
| 285 | } |
| 286 | |
| 287 | /// Give the largest height of the set. |
| 288 | int RGBAImageSet::GetHeight() const { |