| 10 | std::unique_ptr<Builder::BuilderFactory> Builder::factory; |
| 11 | |
| 12 | void Builder::commit() |
| 13 | { |
| 14 | rendererType = getParam<std::string>("rendererType", "scivis"); |
| 15 | tfColorMap = getParam<std::string>("tf.colorMap", "jet"); |
| 16 | tfOpacityMap = getParam<std::string>("tf.opacityMap", "linear"); |
| 17 | randomSeed = getParam<unsigned int>("randomSeed", 0); |
| 18 | } |
| 19 | |
| 20 | cpp::World Builder::buildWorld() const |
| 21 | { |
no outgoing calls
no test coverage detected