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

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

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

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

 

在通过几个示例说明下:

 

1.绘制一条横线:

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

2.绘制一条竖线:

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

3.绘制一条斜线:

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

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值