------------------------------------------------------------------------------
| 2352 | |
| 2353 | //------------------------------------------------------------------------------ |
| 2354 | int vtkXYPlotActor::GetPlotLines(int i) |
| 2355 | { |
| 2356 | i = std::min(std::max(i, 0), VTK_MAX_PLOTS - 1); |
| 2357 | return this->LinesOn->GetValue(i); |
| 2358 | } |
| 2359 | |
| 2360 | //------------------------------------------------------------------------------ |
| 2361 | void vtkXYPlotActor::SetPlotPoints(int i, int isOn) |
no test coverage detected