0

我的目标是能够使用 Graphics 类绘制/填充三角形。我能够填写/绘制一个矩形和一个圆形,但是当我尝试编译我的代码时,我得到了下面的错误。

我知道填充多边形方法接受类型数组,但我不知道除了 .fillPologyon 之外还有什么其他方法可以接受我想要的参数。

还有另一种我没有尝试过的方法吗?有没有办法为我的 rttriangle 转换我的宽度和高度,同时又不会弄乱绘制矩形的代码。

DrawArea.java:62: error: no suitable method found for fillPolygon(int,int,int,int)
                    g.fillPolygon(100, 100, width, height);
                     ^
method Graphics.fillPolygon(int[],int[],int) is not applicable
  (actual and formal argument lists differ in length)
method Graphics.fillPolygon(Polygon) is not applicable
  (actual and formal argument lists differ in length)
  1 error

import java.awt.*;
import javax.swing.*;
public class DrawArea extends JComponent {
private int radius;
private int width; // base for rt trig
private int height;
//private int [] w = new int[]
//private int [] h = new int[];
private String shape;

/**
 * constructor for circle
 * @param shape string "circle"
 * @param r the radius the user entered
 */
public DrawArea(String shape, int r){
    this.shape = shape;
    radius = r;
}
/**
 * constructor for rectangle and right triangle
 * @param shape either the string "rectanlge" or "triangle"
 * @param w - either the width or the base
 * @param h - height of rect or tri
 */
public DrawArea(String shape, int w, int h){
    this.shape = shape;
    width = w;
    height = h;


}
/**
 * paint method that draws the selected shape
 */
public void paintComponent(Graphics g){ // Graphic g is and object allows you to set color to green
    removeAll();
    if(shape.equals("circle")){
        //Set color to green
        g.setColor(Color.green);
        // 100 pixels down 100 pixels over
        //How wide and how tall = radius *2 = diamter
        //There broth width and height
        g.fillOval(100, 100, radius * 2, radius * 2);   
    }else if(shape.equals("rectangle")){
        g.setColor(Color.green);
        g.fillRect(100, 100, width, height);   //change  **************************************
    //}else{

    }else if(shape.equals("rtTriangle")){
        g.setColor(Color.green);
        g.fillPolygon(100, 100, width, height);
    }
  }
}
4

1 回答 1

3

您可能希望将三角形定义为 a Polygon,并使用fillPolygon(Polygon)例如:

Polygon triangle = new Polygon();
triangle.addPoint(40, 55);
triangle.addPoint(60, 55);
triangle.addPoint(50, 35);

g.setColor(Color.green);
g.fillPolygon(triangle);

现在只需使用您的widthheight变量,根据需要定义三角形的三个点。

这是您可以使用的要点的示例:

triangle.addPoint(0, height); // bottom-left angle
triangle.addPoint(width, height); // bottom-right angle
triangle.addPoint(width / 2, 0); // top angle

在此处输入图像描述

于 2019-09-24T08:00:04.770 回答