()
| 31 | |
| 32 | |
| 33 | GrayscalePlotTest() { |
| 34 | griddata.setScale( -1.0, 1.0, 0, 1.0); |
| 35 | grayscalePlot.setAutoscaleZ(true, 0, 1); |
| 36 | plottingPanel.addDrawable(grayscalePlot); |
| 37 | plottingPanel.setAutoscaleX(true); |
| 38 | plottingPanel.setAutoscaleY(true); |
| 39 | griddata.setScale(0, numpts, 0,numpts); |
| 40 | drawingFrame.setVisible(true); |
| 41 | plottingPanel.repaint(); |
| 42 | } |
| 43 | |
| 44 | public void setRandomVals() { |
| 45 | System.out.println("GSPlotTest.setRandomVals"); |
nothing calls this directly
no test coverage detected