comparison tests/mini/v2d.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/v2d.d@d9d5d59873d8
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 extern(C) int printf(char*, ...);
2
3 struct V2D(T)
4 {
5 T x,y;
6
7 T dot(ref V2D v)
8 {
9 return x*v.x + y*v.y;
10 }
11
12 V2D opAdd(ref V2D v)
13 {
14 return V2D(x+v.x, y+v.y);
15 }
16 }
17
18 alias V2D!(float) V2Df;
19
20 void main()
21 {
22 printf("V2D test\n");
23 auto up = V2Df(0.0f, 1.0f);
24 auto right = V2Df(1.0f, 0.0f);
25 assert(up.dot(right) == 0.0f);
26 auto upright = up + right;
27 assert(upright.x == 1.0f && upright.y == 1.0f);
28 auto copy = upright;
29 copy.x++;
30 assert(copy.x > upright.x);
31 printf(" SUCCESS\n");
32 }