| 348 | } |
| 349 | |
| 350 | static int Vector3_sub(lua_State *L) |
| 351 | { |
| 352 | Vector3* v1 = CheckVector3(L, 1); |
| 353 | Vector3* v2 = CheckVector3(L, 2); |
| 354 | PushVector3(L, *v1 - *v2); |
| 355 | return 1; |
| 356 | } |
| 357 | |
| 358 | static int Vector3_mul(lua_State *L) |
| 359 | { |
nothing calls this directly
no test coverage detected