mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
49ca09a64f
I don't remember what half these tests were for :/
16 lines
206 B
R
16 lines
206 B
R
void printf (string fmt, ...) = #0;
|
|
|
|
quaternion q;
|
|
vector v;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
quaternion tq;
|
|
q = '0.6 0.48 0.64 0';
|
|
v = '1 2 3';
|
|
tq.s = 0;
|
|
tq.v = v;
|
|
printf ("%v %q\n", q * v, q * tq * ~q);
|
|
return 0;
|
|
}
|