2
我正在嘗試編寫一個繪圖應用程序。但是,我不斷收到錯誤。Bezier()不工作
這是我寫的代碼:
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
它運行良好。
我在做什麼錯?
愚蠢的我。當然,有10個參數的Bezier會被錯誤地指定;你需要一個整數個控制點。儘管OP得到的編譯錯誤是神祕的。 – Bathsheba