| 21 | #include "numbervalue.h" |
| 22 | |
| 23 | CircleModule::CircleModule(Reporter& r) : PrimitiveModule(r,"circle") |
| 24 | { |
| 25 | addDescription(tr("Constructs a circle. It will be placed centered on the xy plane.")); |
| 26 | addParameter("radius",tr("The radius of the circle.")); |
| 27 | } |
| 28 | |
| 29 | Node* CircleModule::evaluate(const Context& ctx) const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected