使用 Eclipse 处理

要在 Eclipse 中使用 Processing,首先要创建一个新的 Java 项目。然后,选择 File > Import 然后选择 General > File System 来定位 core.jar 文件。它可以在 PATH_TO_PROCESSING/core/library/ for Windows 或/Applications/Processing 3.app/Contents/Java/core/library/ for Mac 中找到。完成后,右键单击 core.jar 并将其添加到构建路径。

在 Eclipse 中使用 Processing 的样板如下:

import processing.core.PApplet;

public class UsingProcessing extends PApplet {

    // The argument passed to main must match the class name
    public static void main(String[] args) {
        PApplet.main("UsingProcessing");
    }

    // method used only for setting the size of the window
    public void settings(){
        
    }

    // identical use to setup in Processing IDE except for size()
    public void setup(){
        
    }

    // identical use to draw in Prcessing IDE
    public void draw(){

    }
}

settings() 方法用于设置窗口的大小。例如,要创建 400x400 窗口,请编写以下内容:

 public void settings(){
    size(400,400);   
 }

就使用 setup()draw() 而言, Hello World 文档中概述的所有其他内容均适用于此处。

作为最后一个例子,这里是使用 Eclipse 编写的 Drawing a Line 示例中的代码 :

import processing.core.PApplet;

public class UsingProcessing extends PApplet {

    // The argument passed to main must match the class name
    public static void main(String[] args) {
        PApplet.main("UsingProcessing");
    }

    // method for setting the size of the window
    public void settings(){
        size(500, 500);
    }

    // identical use to setup in Processing IDE except for size()
    public void setup(){
        background(0);
        stroke(255);
        strokeWeight(10);
    }

    // identical use to draw in Prcessing IDE
    public void draw(){
        line(0, 0, 500, 500);
    }
}