| 373 | } |
| 374 | |
| 375 | static int Vector3_div(lua_State *L) |
| 376 | { |
| 377 | Vector3* v = CheckVector3(L, 1); |
| 378 | float s = (float) luaL_checknumber(L, 2); |
| 379 | PushVector3(L, *v / s); |
| 380 | return 1; |
| 381 | } |
| 382 | |
| 383 | static int Vector3_unm(lua_State *L) |
| 384 | { |
nothing calls this directly
no test coverage detected