mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 22:22:17 +00:00
10 lines
327 B
C++
10 lines
327 B
C++
vector vec1 = { -0, +0, 0 };
|
|
vector vec2 = { .0, .0, .0 };
|
|
vector vec3 = { -.0, +.0, +0.1 };
|
|
vector vec4 = { 1.1, 2.2, 3.3 };
|
|
vector vec5 = { 2., 3., 4. };
|
|
vector vec6 = { -2., +3., -4. };
|
|
/*
|
|
* These are just comments: Ideally there is still some broken things
|
|
* for the vector yet. which sort of sucks.
|
|
*/
|