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