| 831 | } |
| 832 | |
| 833 | void ofxLua::getNumberVector(const std::string& tableName, std::vector<lua_Number>& v) { |
| 834 | readVector<lua_Number>(tableName, v, LUA_TNUMBER, 0.0f); |
| 835 | } |
| 836 | |
| 837 | void ofxLua::getNumberVector(const unsigned int tableIndex, std::vector<lua_Number>& v) { |
| 838 | readVector<lua_Number>(tableIndex, v, LUA_TNUMBER, 0.0f); |