------------------------------------------------------------------------------
| 492 | |
| 493 | //------------------------------------------------------------------------------ |
| 494 | vtkPolyData* vtkLegendBoxActor::GetEntrySymbol(int i) |
| 495 | { |
| 496 | if (i < 0 || i >= this->NumberOfEntries) |
| 497 | { |
| 498 | return nullptr; |
| 499 | } |
| 500 | else |
| 501 | { |
| 502 | return this->Symbol[i]; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | //------------------------------------------------------------------------------ |
| 507 | vtkImageData* vtkLegendBoxActor::GetEntryIcon(int i) |
no outgoing calls
no test coverage detected