| 23 | #include "vectorvalue.h" |
| 24 | |
| 25 | AlignModule::AlignModule(Reporter& r) : Module(r,"align") |
| 26 | { |
| 27 | addDescription(tr("Aligns its children to the given faces.")); |
| 28 | addParameter("top",tr("Specifies alignment to the top face.")); |
| 29 | addParameter("bottom",tr("Specifies alignment to the bottom face.")); |
| 30 | addParameter("north",tr("Specifies alignment to the north face.")); |
| 31 | addParameter("south",tr("Specifies alignment to the south face.")); |
| 32 | addParameter("east",tr("Specifies alignment to the east face.")); |
| 33 | addParameter("west",tr("Specifies alignment to the west face.")); |
| 34 | } |
| 35 | |
| 36 | Node* AlignModule::evaluate(const Context& ctx) const |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected