@{ * Locate the closest point to the global coordinate x. Return the * point id. If point id < 0; then no point found. (This may arise * when point is outside of dataset.) * THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND * THE DATASET IS NOT MODIFIED */
| 240 | * THE DATASET IS NOT MODIFIED |
| 241 | */ |
| 242 | vtkIdType FindPoint(double x, double y, double z) |
| 243 | { |
| 244 | double xyz[3]; |
| 245 | xyz[0] = x; |
| 246 | xyz[1] = y; |
| 247 | xyz[2] = z; |
| 248 | return this->FindPoint(xyz); |
| 249 | } |
| 250 | virtual vtkIdType FindPoint(double x[3]) = 0; |
| 251 | ///@} |
| 252 |