使用 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);
    }
}