Appends the current plot to a virtual stack and resets allPlotObjects for next slice N. Vischer
()
| 1785 | * N. Vischer |
| 1786 | */ |
| 1787 | public void addToStack() { |
| 1788 | if (stack==null) |
| 1789 | stack = new PlotVirtualStack(getSize().width,getSize().height); |
| 1790 | draw(); |
| 1791 | stack.addPlot(this); |
| 1792 | IJ.showStatus("addToPlotStack: "+stack.size()); |
| 1793 | allPlotObjects.clear(); |
| 1794 | } |
| 1795 | |
| 1796 | /** Alias for addToStack(). */ |
| 1797 | public void appendToStack() { |
no test coverage detected