| 513 | } |
| 514 | |
| 515 | static int Vector4_sub(lua_State *L) |
| 516 | { |
| 517 | Vector4* v1 = CheckVector4(L, 1); |
| 518 | Vector4* v2 = CheckVector4(L, 2); |
| 519 | PushVector4(L, *v1 - *v2); |
| 520 | return 1; |
| 521 | } |
| 522 | |
| 523 | static int Vector4_mul(lua_State *L) |
| 524 | { |
nothing calls this directly
no test coverage detected