10#include <lua/src/lua.h>
11#include <lua/src/lauxlib.h>
12#include <lua/src/lualib.h>
24 std::vector<double>
values(length);
26 for (
unsigned i = 1;
i <= length;
i++)
48 std::vector<std::vector<double>>
values;
50 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:75
std::vector< double > getNumericLuaTable(lua_State *lua, int index)
Get the a Lua table of doubles.
Definition lua.h:21
std::vector< std::vector< double > > getLuaTableOfNumericLuaTable(lua_State *lua, int index)
Get the a Lua table of table of doubles.
Definition lua.h:45