Restores the plot contents (not including axis formats etc) from the snapshot previously created by savePlotObjects(). See also killPlotObjectsSnapshot Use 'update' to update the plot thereafter.
()
| 1592 | * previously created by savePlotObjects(). See also killPlotObjectsSnapshot |
| 1593 | * Use 'update' to update the plot thereafter. */ |
| 1594 | public void restorePlotObjects() { |
| 1595 | if (allPlotObjectsSnapshot != null) |
| 1596 | copyPlotObjectsVector(allPlotObjectsSnapshot, allPlotObjects); |
| 1597 | } |
| 1598 | |
| 1599 | /** Deletes the snapshot of the plot contents to make space */ |
| 1600 | public void killPlotObjectsSnapshot() { |
no test coverage detected