| 305 | // *********************************************************************** |
| 306 | |
| 307 | i32 NewVec(lua_State* L) { |
| 308 | UserData* pUserData = AllocUserData(L, Type::Float32, 3, 1); |
| 309 | SetImpl(L, pUserData, 0, 1); |
| 310 | return 1; |
| 311 | } |
| 312 | |
| 313 | // *********************************************************************** |
| 314 |
nothing calls this directly
no test coverage detected