Đang chuẩn bị liên kết để tải về tài liệu:
Java™ How to Program ( Deitel - Deitel) - Phần 22

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

Tham khảo sách 'java™ how to program ( deitel - deitel) - phần 22', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | 27 g. setColor Color.RED 28 g. drawRect 185 35 80 80 29 g. setColor Color.BLACK 30 g. drawArc 185 35 80 80 0 -270 31 32 start at 0 and sweep 360 degrees 33 g. fillArc 15 120 80 40 0 360 34 35 start at 270 and sweep -90 degrees 36 g. fillArc 100 120 80 40 270 -90 37 38 start at 0 and sweep -270 degrees 39 g. fillArc 185 120 80 40 0 - 270 40 end method paintComponent 41 end class ArcsJPanel Figure 12.25. Creating JFrame to display arcs. This item is displayed on pages 618 - 619 in the print version 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Fig. 12.25 DrawArcs.java Drawing arcs. import javax.swing.JFrame public class DrawArcs execute application public static void main String args create frame for ArcsJPanel JFrame frame new JFrame Drawing Arcs frame.setDefaultCloseOperation JFrame.EXIT ON CLOSE ArcsJPanel arcsJPanel new ArcsJPanel create ArcsJPanel frame.add arcsJPanel add arcsJPanel to frame frame.setSize 300 210 set frame size frame.setVisible true display frame end main end class DrawArcs PREV NEXT PREV NEXT Page 618 12.7. Drawing Polygons and Polylines Polygons are closed multisided shapes composed of straight line segments. Polylines are sequences of connected points. Figure 12.26 discusses methods for drawing polygons and polylines. Note that some methods require a Polygon object package java.awt . Class Polygon s constructors are also described in Fig. 12.26. The application of Fig. 12.27Fig. 12.28 draws polygons and polylines. Figure 12.26. Graphics methods for polygons and class Polygon methods. This item is displayed on pages 619 - 620 in the print version Method Description Graphics methods for drawing polygons public void drawPolygon int xPoints int yPoints int points Draws a polygon. The x-coordinate of each point is specified in the xPoints array and the y-coordinate of each point in the yPoints array. The last argument specifies the number of points. This method draws a closed polygon. If the last point is different from the first the polygon is

Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.