136137138139140141142143144145146
graph.fill(arc); state.postPaint(); } if (state.getLogPen().isVisible()) { state.prepareDraw(); graph.draw(arc); state.postDraw(); } }
5859606162636465666768
final int[] points_x = getScaledPointsX(); final int[] points_y = getScaledPointsY(); if (state.getLogPen().isVisible()) { state.prepareDraw(); cx = points_x[0]; cy = points_y[0]; final Line2D.Double line = new Line2D.Double(); for (int i = 1; i < count; i++) {
6061626364656667686970
final Point destP = getScaledDestination(); if (state.getLogPen().isVisible()) { state.prepareDraw(); graph.draw(new Line2D.Double(cx, cy, destP.x, destP.y)); state.postDraw(); } state.setCurPos(destP.x, destP.y);
graph.fill(polygon); state.postPaint(); } if (state.getLogPen().isVisible()) { state.prepareDraw(); graph.draw(polygon); state.postDraw(); } }
135136137138139140141142143144145
7071727374757677787980
graph.fill(genPath); state.postPaint(); } if (state.getLogPen().isVisible()) { state.prepareDraw(); graph.draw(genPath); state.postDraw(); } }
7980818283848586878889
graph.fill(shape); state.postPaint(); } if (state.getLogPen().isVisible()) { state.prepareDraw(); graph.draw(shape); state.postDraw(); } }
6869707172737475767778
graph.fill(rec); state.postPaint(); } if (state.getLogPen().isVisible()) { state.prepareDraw(); graph.draw(rec); state.postDraw(); } }
5657585960616263646566
{ final Point p = getScaledTarget(); final Graphics2D g = file.getGraphics2D(); final MfDcState state = file.getCurrentState(); state.prepareDraw(); g.drawLine(p.x, p.y, p.x, p.y); state.postDraw(); } /**
949596979899100101102103104