| 259 | } |
| 260 | |
| 261 | static int quaternion_to_string(lua_State *L) |
| 262 | { |
| 263 | LuaStack stack(L, +1); |
| 264 | char buf[256]; |
| 265 | stack.push_string(to_string(buf, sizeof(buf), stack.get_quaternion(1))); |
| 266 | return 1; |
| 267 | } |
| 268 | |
| 269 | static int quaternionbox_store(lua_State *L) |
| 270 | { |
nothing calls this directly
no test coverage detected