| 21 | #include "vectorvalue.h" |
| 22 | |
| 23 | CrossFunction::CrossFunction() : Function("cross") |
| 24 | { |
| 25 | addDescription(tr("Returns the cross product of the two vectors.")); |
| 26 | addParameter("v1"); |
| 27 | addParameter("v2"); |
| 28 | } |
| 29 | |
| 30 | Value& CrossFunction::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected