| 546 | } |
| 547 | |
| 548 | static int Vector4_unm(lua_State *L) |
| 549 | { |
| 550 | Vector4* v = (Vector4*)lua_touserdata(L, 1); |
| 551 | PushVector4(L, - *v); |
| 552 | return 1; |
| 553 | } |
| 554 | |
| 555 | static int Vector4_concat(lua_State *L) |
| 556 | { |
nothing calls this directly
no test coverage detected