对于像fillOval这样的方法,'x'和'y'表示什么?它们的坐标是什么?

时间:2013-03-31 09:47:52

标签: java swing graphics

对于Graphics类:fillOval的方法,xy表示什么?文档说:

x - the x coordinate of the upper left corner of the oval to be filled.
y - the y coordinate of the upper left corner of the oval to be filled.

我不明白这一点。这是什么意思?

2 个答案:

答案 0 :(得分:13)

x - the x coordinate of the upper left corner of the oval to be filled.
y - the y coordinate of the upper left corner of the oval to be filled.

见图片:

enter image description here

答案 1 :(得分:3)

在一张纸上画一个矩形。然后在矩形内部绘制一个椭圆形,尽可能地填充矩形(椭圆形应该触摸矩形的所有4个边)。

方形的左上角是(x,y)