| 880 | } |
| 881 | |
| 882 | void ofxLua::setNumberVector(const std::string& tableName, std::vector<lua_Number>& v) { |
| 883 | writeVector<lua_Number>(tableName, LUA_TNUMBER, v); |
| 884 | } |
| 885 | |
| 886 | void ofxLua::setNumberVector(const unsigned int tableIndex, std::vector<lua_Number>& v) { |
| 887 | writeVector<lua_Number>(tableIndex, LUA_TNUMBER, v); |