| 22 | #include "rmath.h" |
| 23 | |
| 24 | RadFunction::RadFunction() : Function("rad") |
| 25 | { |
| 26 | addDescription(tr("Returns the number of radians for the given number of degrees.")); |
| 27 | addParameter("degrees"); |
| 28 | } |
| 29 | |
| 30 | Value& RadFunction::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected