| 313 | // *********************************************************************** |
| 314 | |
| 315 | i32 NewQuat(lua_State* L) { |
| 316 | UserData* pUserData = AllocUserData(L, Type::Float32, 4, 1); |
| 317 | SetImpl(L, pUserData, 0, 1); |
| 318 | return 1; |
| 319 | } |
| 320 | |
| 321 | // *********************************************************************** |
| 322 | i32 Set(lua_State* L) { |
nothing calls this directly
no test coverage detected