| 124 | } |
| 125 | |
| 126 | SH operator/(const T& scale) const |
| 127 | { |
| 128 | SH result; |
| 129 | for(uint64 i = 0; i < N; ++i) |
| 130 | result.Coefficients[i] = Coefficients[i] / scale; |
| 131 | return result; |
| 132 | } |
| 133 | |
| 134 | // Dot products |
| 135 | T Dot(const SH& other) const |
nothing calls this directly
no outgoing calls
no test coverage detected