root/trunk/qd/example.d

Revision 97, 0.5 kB (checked in by FeepingCreature, 5 years ago)
  • Added stuffs
Line 
1 module example;
2 import qd, std.c.time: sleep;
3
4 void main() {
5   screen(640, 480);
6   pset(10, 10);
7   line(0, 0, 100, 100, Box, Back(Red~Black));
8   for (int i=0; i<=100; i+=10) {
9     line(i, 0, 100-i, 100);
10     line(0, i, 100, 100-i);
11   }
12   circle(100, 100, 50, 15, White~Black, Fill=White~Black);
13   paint(200, 200, Red, Back=White);
14   circle(100, 100, 50, 15, White);
15   paint(200, 200, Black);
16   pset(10, 11); pset(10, 11, Black);
17   pset(10, 10);
18   while (true) { flip; events((int a, bool b) { }, (int a, int b) { }); }
19 }
Note: See TracBrowser for help on using the browser.