()
| 7263 | } |
| 7264 | |
| 7265 | double overlayMoveTo() { |
| 7266 | if (overlayPath==null) |
| 7267 | overlayPath = new GeneralPath(); |
| 7268 | interp.getLeftParen(); |
| 7269 | float x = (float)interp.getExpression(); |
| 7270 | interp.getComma(); |
| 7271 | float y = (float)interp.getExpression(); |
| 7272 | interp.getRightParen(); |
| 7273 | overlayPath.moveTo(x, y); |
| 7274 | return Double.NaN; |
| 7275 | } |
| 7276 | |
| 7277 | double overlayLineTo() { |
| 7278 | if (overlayPath==null) { |
no test coverage detected