| 439 | } |
| 440 | |
| 441 | static int Vector4_tostring(lua_State *L) |
| 442 | { |
| 443 | Vector4* v = (Vector4*)lua_touserdata(L, 1); |
| 444 | lua_pushfstring(L, "vmath.%s(%f, %f, %f, %f)", SCRIPT_TYPE_NAME_VECTOR4, v->getX(), v->getY(), v->getZ(), v->getW()); |
| 445 | return 1; |
| 446 | } |
| 447 | |
| 448 | static int Vector4_index(lua_State *L) |
| 449 | { |
nothing calls this directly
no test coverage detected