| 290 | } |
| 291 | |
| 292 | double LuaBindings::RootCallbacks::evalFunction(Root* root, String const& arg1, double arg2) { |
| 293 | return root->functionDatabase()->function(arg1)->evaluate(arg2); |
| 294 | } |
| 295 | |
| 296 | double LuaBindings::RootCallbacks::evalFunction2(Root* root, String const& arg1, double arg2, double arg3) { |
| 297 | return root->functionDatabase()->function2(arg1)->evaluate(arg2, arg3); |
nothing calls this directly
no test coverage detected