| 231 | */ |
| 232 | void GetOrientation(double orient[3]); |
| 233 | void GetOrientation(float orient[3]) |
| 234 | { |
| 235 | double temp[3]; |
| 236 | this->GetOrientation(temp); |
| 237 | orient[0] = static_cast<float>(temp[0]); |
| 238 | orient[1] = static_cast<float>(temp[1]); |
| 239 | orient[2] = static_cast<float>(temp[2]); |
| 240 | } |
| 241 | double* GetOrientation() VTK_SIZEHINT(3) |
| 242 | { |
| 243 | this->GetOrientation(this->ReturnValue); |
no test coverage detected