| 22 | #include "rmath.h" |
| 23 | |
| 24 | Atan2Function::Atan2Function() : Function("atan2") |
| 25 | { |
| 26 | addDescription(tr("Returns the arc tangent of the two number values.")); |
| 27 | addParameter("y"); |
| 28 | addParameter("x"); |
| 29 | } |
| 30 | |
| 31 | Value& Atan2Function::evaluate(const Context& ctx) const |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected