2015-04-14 45 views
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它運行良好。

我在做什麼錯?

回答

3

這是你試圖調用的方法嗎? https://processing.org/reference/bezier_.html

如果是這樣,它需要8個論點......不10.這可以解釋爲什麼它的工作原理,當你刪除32和43

+0

愚蠢的我。當然,有10個參數的Bezier會被錯誤地指定;你需要一個整數個控制點。儘管OP得到的編譯錯誤是神祕的。 – Bathsheba