| 505 | } |
| 506 | |
| 507 | static int Vector4_add(lua_State *L) |
| 508 | { |
| 509 | Vector4* v1 = CheckVector4(L, 1); |
| 510 | Vector4* v2 = CheckVector4(L, 2); |
| 511 | PushVector4(L, *v1 + *v2); |
| 512 | return 1; |
| 513 | } |
| 514 | |
| 515 | static int Vector4_sub(lua_State *L) |
| 516 | { |
nothing calls this directly
no test coverage detected