Am 06.04.2011 00:20, schrieb Adam D. Ruppe:
> import simpledisplay;
>
> void main() {
> auto image = new Image(255, 255);
>
> foreach(a; 0..255)
> foreach(b; 0..255)
> image.putPixel(a, b, Color(a, b, 0));
>
> image.display();
> }
Hey cool, this was a fast fix.
Thank's for sharing!
°Matthias