------------------------------------------------------------------------------
| 470 | |
| 471 | //------------------------------------------------------------------------------ |
| 472 | int vtkKdTree::GetDataSetsNumberOfCells(int from, int to) |
| 473 | { |
| 474 | int numCells = 0; |
| 475 | |
| 476 | for (int i = from; i <= to; i++) |
| 477 | { |
| 478 | vtkDataSet* data = this->GetDataSet(i); |
| 479 | if (data) |
| 480 | { |
| 481 | numCells += data->GetNumberOfCells(); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | return numCells; |
| 486 | } |
| 487 | |
| 488 | //------------------------------------------------------------------------------ |
| 489 | int vtkKdTree::GetNumberOfCells() |
no test coverage detected