| 23 | #include "vectorvalue.h" |
| 24 | |
| 25 | MultMatrixModule::MultMatrixModule(Reporter& r) : Module(r,"multmatrix") |
| 26 | { |
| 27 | addDescription(tr("Multiplies its children with the given 4 by 4 affine transformation matrix.")); |
| 28 | addParameter("matrix",tr("The 4 by 4 affine transformation matrix")); |
| 29 | } |
| 30 | |
| 31 | Node* MultMatrixModule::evaluate(const Context& ctx) const |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected