Polygon 类封装了坐标空间中封闭的二维区域的描述。此区域以任意条线段为边界,每条线段都是多边形的一条边。在内部,一个多边形包含一列 (x,y) 坐标对,其中每个坐标对(coordinate pair)定义多边形的一个顶点,且两个连续的坐标对是多边形一条边的端点。第一个和最后一个 (x,y) 坐标对通过一条线段相连,形成一个封闭的多边形。此 Polygon 是按奇-偶性旋绕规则来定义的。有关奇-偶性旋绕规则的定义,请参见 WIND_EVEN_ODD。此类的目标测试方法使用 Shape 类注释中描述的 insideness 定义,目标测试方法包括 contains、intersects 和 inside 方法。
public void drawTriangle(Graphics g,Color color,int x1,int y1,int x2,int y2,int x3,int y3)
{
Polygon filledPolygon=new Polygon();
filledPolygon.addPoint(x1,y1);
filledPolygon.addPoint(x2,y2);
filledPolygon.addPoint(x3,y3);
g.setColor(color);
g.drawPolygon(filledPolygon);
}
public void drawTriangle(Graphics g,Color color,int x1,int y1,int x2,int y2,int x3,int y3)
{
Polygon filledPolygon=new Polygon();
filledPolygon.addPoint(x1,y1);
filledPolygon.addPoint(x2,y2);
filledPolygon.addPoint(x3,y3);
g.setColor(color);
g.drawPolygon(filledPolygon);
}