关于JAVA Graphics2D种drawLine方法参数说明

记性总是不太好,容易忘事,一线线是由两点组成的,启点和终点,所有在drawLine方法中有四个参数来控制两点,参数如下:

    /**
     * Draws a line, using the current color, between the points
     * (x1, y1) and (x2, y2)
     * in this graphics context's coordinate system.
     * @param   x1  the first point's x coordinate.
     * @param   y1  the first point's y coordinate.
     * @param   x2  the second point's x coordinate.
     * @param   y2  the second point's y coordinate.
     */
    public abstract void drawLine(int x1, int y1, int x2, int y2);

x1,y1,x2,y2代表的是啥??时间久了特容易忘记。。做了个图片容易记住:

 

关于JAVA Graphics2D种drawLine方法参数说明_第1张图片

在通过几个示例说明下:

 

1.绘制一条横线:

graphics.drawLine(0, 0, 125, 0)

关于JAVA Graphics2D种drawLine方法参数说明_第2张图片

2.绘制一条竖线:

graphics.drawLine(0, 0, 0, 125);

关于JAVA Graphics2D种drawLine方法参数说明_第3张图片

3.绘制一条斜线:

graphics.drawLine(0, 0, 250, 300);

关于JAVA Graphics2D种drawLine方法参数说明_第4张图片

你可能感兴趣的:(Java)