()
| 44 | |
| 45 | |
| 46 | TextLayoutTest() { |
| 47 | griddata.setScale( -1.0, 1.0, 0, 1.0); |
| 48 | grayscalePlot.setAutoscaleZ(true, 0, 1); |
| 49 | plottingPanel.addDrawable(grayscalePlot); |
| 50 | plottingPanel.setAutoscaleX(true); |
| 51 | plottingPanel.setAutoscaleY(true); |
| 52 | griddata.setScale(0, numpts, 0,numpts); |
| 53 | drawingFrame.setVisible(true); |
| 54 | plottingPanel.repaint(); |
| 55 | } |
| 56 | |
| 57 | public void setRandomVals() { |
| 58 | double[][][] data=griddata.getData(); |
nothing calls this directly
no test coverage detected