| 21 | #include "node/transformationnode.h" |
| 22 | |
| 23 | DatumModule::DatumModule(Reporter& r) : Module(r,"datum") |
| 24 | { |
| 25 | addDescription(tr("Creates a plane from which children will be relative to")); |
| 26 | addParameter("x",tr("An yz plane offset by x")); |
| 27 | addParameter("y",tr("An xz plane offset by y")); |
| 28 | addParameter("z",tr("An xy plane offset by z")); |
| 29 | auxilary=true; |
| 30 | } |
| 31 | |
| 32 | Node* DatumModule::evaluate(const Context& ctx) const |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected