()
| 4542 | } |
| 4543 | |
| 4544 | @AstroImageJ(reason = "Support scaled plots") |
| 4545 | public boolean isAijPlot() { |
| 4546 | if (pp.aijPlotType == AijPlotType.AUTOMATIC) { |
| 4547 | return allPlotObjects.parallelStream() |
| 4548 | .noneMatch(p -> p.shape == Plot.CUSTOM && p.type == PlotObject.XY_DATA); |
| 4549 | } |
| 4550 | return pp.aijPlotType != AijPlotType.BITMAPPED; |
| 4551 | } |
| 4552 | |
| 4553 | @AstroImageJ(reason = "Support scaled plots") |
| 4554 | public boolean isAijAutomatic() { |
no outgoing calls
no test coverage detected