| 604 | } |
| 605 | |
| 606 | static int Quat_tostring(lua_State *L) |
| 607 | { |
| 608 | Quat* q = (Quat*)lua_touserdata(L, 1); |
| 609 | lua_pushfstring(L, "vmath.%s(%f, %f, %f, %f)", SCRIPT_TYPE_NAME_QUAT, q->getX(), q->getY(), q->getZ(), q->getW()); |
| 610 | return 1; |
| 611 | } |
| 612 | |
| 613 | static int Quat_index(lua_State *L) |
| 614 | { |
nothing calls this directly
no test coverage detected