------------------------------------------------------------------------------
| 1450 | |
| 1451 | //------------------------------------------------------------------------------ |
| 1452 | vtkIdType vtkChartXY::StackPlotAbove(vtkPlot* plot, vtkPlot* under) |
| 1453 | { |
| 1454 | vtkIdType plotIndex = this->GetPlotIndex(plot); |
| 1455 | vtkIdType underIndex = this->GetPlotIndex(under); |
| 1456 | int corner = this->GetPlotCorner(plot); |
| 1457 | if (corner < 0 || corner >= 4 || underIndex != this->GetPlotCorner(under)) |
| 1458 | { |
| 1459 | return plotIndex; |
| 1460 | } |
| 1461 | return this->ChartPrivate->PlotCorners[corner]->StackAbove(plotIndex, underIndex); |
| 1462 | } |
| 1463 | |
| 1464 | //------------------------------------------------------------------------------ |
| 1465 | vtkIdType vtkChartXY::LowerPlot(vtkPlot* plot) |
nothing calls this directly
no test coverage detected