------------------------------------------------------------------------------
| 2371 | |
| 2372 | //------------------------------------------------------------------------------ |
| 2373 | int vtkXYPlotActor::GetPlotPoints(int i) |
| 2374 | { |
| 2375 | i = std::min(std::max(i, 0), VTK_MAX_PLOTS - 1); |
| 2376 | return this->PointsOn->GetValue(i); |
| 2377 | } |
| 2378 | |
| 2379 | //------------------------------------------------------------------------------ |
| 2380 | void vtkXYPlotActor::SetPlotColor(int i, double r, double g, double b) |
no test coverage detected