| 84 | {} |
| 85 | |
| 86 | void ParticleVolume::commit() |
| 87 | { |
| 88 | Builder::commit(); |
| 89 | |
| 90 | numParticles = getParam<int>("numParticles", numParticles); |
| 91 | withVolume = getParam<bool>("withVolume", withVolume); |
| 92 | withIsosurface = getParam<bool>("withIsosurface", withIsosurface); |
| 93 | isovalue = getParam<float>("isovalue", 0.5f); |
| 94 | withClipping = getParam<bool>("withClipping", withClipping); |
| 95 | multipleIsosurfaces = |
| 96 | getParam<bool>("multipleIsosurfaces", multipleIsosurfaces); |
| 97 | clampMaxCumulativeValue = |
| 98 | getParam<float>("clampMaxCumulativeValue", clampMaxCumulativeValue); |
| 99 | radiusSupportFactor = |
| 100 | getParam<float>("radiusSuportFactor", radiusSupportFactor); |
| 101 | |
| 102 | addPlane = false; |
| 103 | } |
| 104 | |
| 105 | cpp::Group ParticleVolume::buildGroup() const |
| 106 | { |
no test coverage detected