| 24 | #include "vectorvalue.h" |
| 25 | |
| 26 | AngFunction::AngFunction() : Function("ang") |
| 27 | { |
| 28 | addDescription(tr("Returns a quaternion with the given angle and axis.")); |
| 29 | addParameter("angle"); |
| 30 | addParameter("axis"); |
| 31 | } |
| 32 | |
| 33 | Value& AngFunction::getResult(const decimal& a,const decimal& x,const decimal& y,const decimal& z) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected