| 22 | #include "node/hullnode.h" |
| 23 | |
| 24 | HullModule::HullModule(Reporter& r) : Module(r,"hull") |
| 25 | { |
| 26 | addDescription(tr("Creates a boundry shape from the points of its children.")); |
| 27 | addParameter("concave",tr("Determines whether the hull may be concave")); |
| 28 | } |
| 29 | |
| 30 | Node* HullModule::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected