0

私は処理が初めてで、現在使用していますNetBeans 8.1。を含め、core.jarそこからの構文を使用して、次の参照を受け取りました

When not using the PDE, size() can only be used inside settings().
Remove the size() method from setup(), and add the following:
public void settings() {
  size(600, 200);

settings()変更すると、動作させることができましたが、他に何を配置する必要があり、今何をすべきかわかりませんsetup()。これをググっIntelliJたところ、Processing Forum で 1 件のヒットがありました。応答は何かが変わったというものでしたが、詳細はわかりませんでした。

4

1 に答える 1

1

解決策は次のとおりです。

// Example by Diego cruz
// 26 Diciembre 2015

import processing.core.*;
public class Processing extends PApplet {

    public static void main(String[] args) {
        PApplet.main(new String[]{Processing.class.getCanonicalName()});
    }

    @Override
    public void settings() {
        size(500, 500); //
    }

    @Override
    public void setup() {

    }

    @Override
    public void draw() {
        rect(mouseX, mouseY, 20, 20);
    }
}
于 2015-12-26T22:02:35.677 に答える