| 66 | } |
| 67 | |
| 68 | void RadiusAssignFilter::initialize() |
| 69 | { |
| 70 | this->initializeDomain(m_referenceDomainSpec, m_referenceDomain); |
| 71 | this->initializeDomain(m_srcDomainSpec, m_srcDomain); |
| 72 | |
| 73 | if (m_radius <= 0) |
| 74 | throwError("Invalid 'radius' option: " + std::to_string(m_radius) + |
| 75 | ", must be > 0"); |
| 76 | if (m_updateExpr.size() == 0) |
| 77 | throwError("Empty 'update_epxression' option, must be set to apply any change on the data"); |
| 78 | |
| 79 | } |
| 80 | |
| 81 | void RadiusAssignFilter::preparedDomain(std::vector<DimRange> &domain, PointLayoutPtr layout) |
| 82 | { |
nothing calls this directly
no test coverage detected