| 116 | protected: |
| 117 | template <typename IdTypeT> |
| 118 | void Copy(IdTypeT inId, IdTypeT outId) |
| 119 | { |
| 120 | for (int j = 0; j < this->NumComp; ++j) |
| 121 | { |
| 122 | this->Output[outId * this->NumComp + j] = |
| 123 | static_cast<T>(this->Input[inId * this->NumComp + j]); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | template <typename IdTypeT> |
| 128 | void Interpolate(int numWeights, const IdTypeT* ids, const double* weights, IdTypeT outId) |
no outgoing calls
no test coverage detected