| 249 | } |
| 250 | |
| 251 | static int Vector_tostring(lua_State *L) |
| 252 | { |
| 253 | FloatVector* v = *(FloatVector**)lua_touserdata(L, 1); |
| 254 | lua_pushfstring(L, "%s.%s (size: %d)", SCRIPT_LIB_NAME, SCRIPT_TYPE_NAME_VECTOR, v->size); |
| 255 | return 1; |
| 256 | } |
| 257 | |
| 258 | static int Vector_gc(lua_State *L) |
| 259 | { |
nothing calls this directly
no test coverage detected