| 69 | } |
| 70 | |
| 71 | static int math_atan (lua_State *L) { |
| 72 | lua_pushnumber(L, atan(luaL_checknumber(L, 1))); |
| 73 | return 1; |
| 74 | } |
| 75 | |
| 76 | static int math_atan2 (lua_State *L) { |
| 77 | lua_pushnumber(L, atan2(luaL_checknumber(L, 1), luaL_checknumber(L, 2))); |
nothing calls this directly
no test coverage detected