annotate demos/qd1.d @ 85:f869c636a113
trunk
[svn r89] Fixed a bunch of problems with template instance across multiple modules.
Fixed initialization of function local static variables, with a non const initializer (now happens on first call using a global to make sure it only happens once.)
author |
lindquist |
date |
Fri, 02 Nov 2007 06:32:32 +0100 |
parents |
|
children |
22a56b65872b |
rev |
line source |
lindquist@85
|
1 module qd1;
|
lindquist@85
|
2 import qd;
|
lindquist@85
|
3 import std.c.time: sleep;
|
lindquist@85
|
4 void main() {
|
lindquist@85
|
5 screen(640, 480);
|
lindquist@85
|
6 pset(10, 10);
|
lindquist@85
|
7 line(0, 0, 100, 100, Box, Back(Red~Black));
|
lindquist@85
|
8 for (int i=0; i<=100; i+=10) {
|
lindquist@85
|
9 line(i, 0, 100-i, 100);
|
lindquist@85
|
10 line(0, i, 100, 100-i);
|
lindquist@85
|
11 }
|
lindquist@85
|
12 circle(100, 100, 50, 15, White~Black, Fill=White~Black);
|
lindquist@85
|
13 paint(200, 200, Red, Back=White);
|
lindquist@85
|
14 circle(100, 100, 50, 15, White);
|
lindquist@85
|
15 paint(200, 200, Black);
|
lindquist@85
|
16 pset(10, 11); pset(10, 11, Black);
|
lindquist@85
|
17 pset(10, 10);
|
lindquist@85
|
18 sleep(5);
|
lindquist@85
|
19 }
|