2012-06-22 2 views

답변

1

좋아요?

   Line2D line = new Line2D.Double(); 
      Graphics2D g2 = aPaintContext.getGraphics(); 
      for (double x = bx; x < rightBorder; x += 5) { 
       line.setLine(x, by, x, bottomBorder); 
       g2.draw(line); 
관련 문제