------------------------------------------------------------------------------
| 537 | |
| 538 | //------------------------------------------------------------------------------ |
| 539 | void vtkParallelCoordinatesView::GetBrushLine(int line, vtkIdType& npts, vtkIdType const*& ptids) |
| 540 | { |
| 541 | int cellNum = 0; |
| 542 | for (this->BrushData->GetLines()->InitTraversal(); |
| 543 | this->BrushData->GetLines()->GetNextCell(npts, ptids); cellNum++) |
| 544 | { |
| 545 | if (cellNum == line) |
| 546 | { |
| 547 | return; |
| 548 | } |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | void vtkParallelCoordinatesView::Hover(unsigned long eventId) |
| 553 | { |
no test coverage detected