mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 12:51:04 +00:00
15 lines
213 B
C++
15 lines
213 B
C++
|
// getter to work around future -O
|
||
|
vector get(vector v) {
|
||
|
return v;
|
||
|
}
|
||
|
|
||
|
void test(vector in) {
|
||
|
vector v = get(in);
|
||
|
vector b = v * v_x;
|
||
|
print(vtos(b), "\n");
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
test('20 40 80');
|
||
|
}
|