()
| 800 | |
| 801 | |
| 802 | private void setCanvasSize() { |
| 803 | // System.out.format("setting canvas size %d %d%n", sketchWidth, sketchHeight); |
| 804 | // new Exception().printStackTrace(System.out); |
| 805 | int contentW = Math.max(sketchWidth, MIN_WINDOW_WIDTH); |
| 806 | int contentH = Math.max(sketchHeight, MIN_WINDOW_HEIGHT); |
| 807 | |
| 808 | canvas.setBounds((contentW - sketchWidth)/2, |
| 809 | (contentH - sketchHeight)/2, |
| 810 | sketchWidth, sketchHeight); |
| 811 | } |
| 812 | |
| 813 | |
| 814 | /** Resize frame for these sketch (canvas) dimensions. */ |