| 23 | #include "rmath.h" |
| 24 | |
| 25 | SphereModule::SphereModule(Reporter& r) : PrimitiveModule(r,"sphere") |
| 26 | { |
| 27 | addDescription(tr("Constructs a sphere. The sphere will be centered at the origin.")); |
| 28 | addParameter("radius",tr("The radius of the sphere.")); |
| 29 | } |
| 30 | |
| 31 | Node* SphereModule::evaluate(const Context& ctx) const |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected