------------------------------------------------------------------------------
| 436 | |
| 437 | //------------------------------------------------------------------------------ |
| 438 | void vtkPointLocator::FindDistributedPoints( |
| 439 | int N, double x, double y, double z, vtkIdList* result, int M) |
| 440 | { |
| 441 | double p[3]; |
| 442 | p[0] = x; |
| 443 | p[1] = y; |
| 444 | p[2] = z; |
| 445 | this->FindDistributedPoints(N, p, result, M); |
| 446 | } |
| 447 | |
| 448 | //------------------------------------------------------------------------------ |
| 449 | static int GetOctant(const double x[3], const double pt[3]) |
nothing calls this directly
no test coverage detected