()
| 15 | ArrayData griddata = new ArrayData(numpts, numdt, 3); |
| 16 | |
| 17 | BandedSampleTest() { |
| 18 | plottingPanel.addDrawable(carpet); |
| 19 | plottingPanel.setAutoscaleX(true); |
| 20 | plottingPanel.setAutoscaleY(true); |
| 21 | griddata.setScale(0, numpts, 0,numdt); |
| 22 | carpet.setAutoscaleZ(false, 1); |
| 23 | carpet.setGridData(griddata); |
| 24 | carpet.clearData(); |
| 25 | drawingFrame.setVisible(true); |
| 26 | new Thread(new Runnable() { |
| 27 | @Override |
| 28 | public void run() { |
| 29 | initCarpet(); |
| 30 | plottingPanel.repaint(); |
| 31 | } |
| 32 | }).start(); |
| 33 | } |
| 34 | |
| 35 | void initCarpet() { |
| 36 | double[][] row = new double[3][numpts]; |
nothing calls this directly
no test coverage detected