#include <image.h>

Public Member Functions |
|
| ImageAccessor (Image *parent) | |
| Color | ColorAt (u_int X, u_int Y) const |
| Get the value at a given coordinate.
|
|
| ImageAccessor | ( | Image * | parent | ) | [inline] |
| Color ColorAt | ( | u_int | X, |
| u_int | Y | ||
| ) | const [inline] |
Get the value at a given coordinate.
Definition at line 2553 of file image.h.
{
return Color(
ImageAccessorBase<ChannelType, 3>::ValueAt(X,Y,0),
ImageAccessorBase<ChannelType, 3>::ValueAt(X,Y,1),
ImageAccessorBase<ChannelType, 3>::ValueAt(X,Y,2),
1);
}