()
| 7275 | } |
| 7276 | |
| 7277 | double overlayLineTo() { |
| 7278 | if (overlayPath==null) { |
| 7279 | overlayPath = new GeneralPath(); |
| 7280 | overlayPath.moveTo(0, 0); |
| 7281 | } |
| 7282 | interp.getLeftParen(); |
| 7283 | float x = (float)interp.getExpression(); |
| 7284 | interp.getComma(); |
| 7285 | float y = (float)interp.getExpression(); |
| 7286 | interp.getRightParen(); |
| 7287 | overlayPath.lineTo(x, y); |
| 7288 | return Double.NaN; |
| 7289 | } |
| 7290 | |
| 7291 | double overlayDrawLine() { |
| 7292 | if (overlayPath==null) overlayPath = new GeneralPath(); |
no test coverage detected