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