MCPcopy Create free account
hub / github.com/GilesBathgate/RapCAD / AlignModule

Method AlignModule

src/module/alignmodule.cpp:25–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23#include "vectorvalue.h"
24
25AlignModule::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
36Node* AlignModule::evaluate(const Context& ctx) const
37{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected