| 164 | */ |
| 165 | double* GetVectorResult() VTK_SIZEHINT(3); |
| 166 | void GetVectorResult(double result[3]) |
| 167 | { |
| 168 | double* r = this->GetVectorResult(); |
| 169 | result[0] = r[0]; |
| 170 | result[1] = r[1]; |
| 171 | result[2] = r[2]; |
| 172 | } |
| 173 | ///@} |
| 174 | |
| 175 | ///@{ |
nothing calls this directly
no test coverage detected