| 538 | } |
| 539 | |
| 540 | static int Vector4_div(lua_State *L) |
| 541 | { |
| 542 | Vector4* v = CheckVector4(L, 1); |
| 543 | float s = (float) luaL_checknumber(L, 2); |
| 544 | PushVector4(L, *v / s); |
| 545 | return 1; |
| 546 | } |
| 547 | |
| 548 | static int Vector4_unm(lua_State *L) |
| 549 | { |
nothing calls this directly
no test coverage detected