Warning: session_start(): open(/var/lib/php/sessions/sess_olbkcmp2l6rl3u1ps2d305qq0q, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
interface IImageRegion
{
// get whole image that the region refers to
public default Img image() { null; }
// which object made this
public O creator();
public default int indexInCreator() { ret 0; }
// smallest rectangle that all of the region's pixels are contained in
public Rect bounds();
public int numberOfPixels();
public Pt firstPixel();
public Iterator pixelIterator();
public bool contains(int x, int y);
// gets the region's color (what exactly this means is defined
// by the crea)
public RGB color();
}