12 #include <lua/src/lua.h>
13 #include <lua/src/lauxlib.h>
14 #include <lua/src/lualib.h>
27 std::vector<double>
values(length);
29 for (
unsigned i = 1;
i <= length;
i++)
51 std::vector<std::vector<double>>
values;
53 for (
unsigned i = 1;
i <= length;
i++)
glm::vec< L, float, glm::qualifier::highp > vec
Definition commandLine.h:214
int lua_checkArgumentCount(lua_State *lua, int expected, std::string msg)
Check the number of arguments to the Lua call.
Definition lua.h:78
std::vector< double > getNumericLuaTable(lua_State *lua, int index)
Get the a Lua table of doubles.
Definition lua.h:24
std::vector< std::vector< double > > getLuaTableOfNumericLuaTable(lua_State *lua, int index)
Get the a Lua table of table of doubles.
Definition lua.h:48