()
| 1138 | } |
| 1139 | |
| 1140 | void lineTo() { |
| 1141 | interp.getLeftParen(); |
| 1142 | int a1 = (int)Math.round(interp.getExpression()); |
| 1143 | interp.getComma(); |
| 1144 | int a2 = (int)Math.round(interp.getExpression()); |
| 1145 | interp.getRightParen(); |
| 1146 | ImageProcessor ip = getProcessor(); |
| 1147 | ip.lineTo(a1, a2); |
| 1148 | updateAndDraw(); |
| 1149 | } |
| 1150 | |
| 1151 | void drawLine() { |
| 1152 | interp.getLeftParen(); |
no test coverage detected