贝齐尔()不工作

时间:2015-04-14 12:05:42

标签: java processing

我目前正在尝试编写绘图应用程序。但是,我一直收到错误。

这是我写的代码:

void draw () {
    bezier(11, 11, 300, 60, 57, 551, 297, 543, 32, 43);
}

当我运行它时,它会抛出The method bezier (float, float, float, float, float, float, float, float, float, float) in the type PApplet is not applicable for the arguments (int, int, int, int, int, int, int, int, int, int)。当我删除32, 43时,它运行正常。

我做错了什么?

1 个答案:

答案 0 :(得分:3)

这是你试图打电话的方法吗? https://processing.org/reference/bezier_.html

如果是这样,它需要8个参数...而不是10.这可以解释为什么当你删除32和43时它起作用。