| 22 | #include "numbervalue.h" |
| 23 | |
| 24 | OffsetModule::OffsetModule(Reporter& r) : Module(r,"offset") |
| 25 | { |
| 26 | addDescription(tr("Moves the outlines of polygons outward or inward by a given amount.")); |
| 27 | addParameter("delta",tr("The amount to offset the polygon. The polygon is offset inwards, when negative.")); |
| 28 | } |
| 29 | |
| 30 | Node* OffsetModule::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected