トップ 差分 一覧 ソース 検索 ヘルプ PDF RSS ログイン

Processing

Processing

外部からの攻撃でこのページの内容は消えました…orz


授業課題の質問は、sugi◎fukuyama-media.jp まで。(◎をアットマークに変える)

 Processing(プロセッシング)とは?

アート・デザインのためのプログラミング言語
公式サイト(英語)
http://www.processing.org/

 リファレンス

関数などの一覧は、リファレンスを参照してください。
http://processing.org/reference/

日本語版
http://www.technotype.net/processing/reference/index.html

日本語版
http://hkpr.info/processing/reference/index_ext.html

 テンプレート

この内容をコピーペーストしてはじめるとよい。

//
// Title by Name
//
void setup() {
  size(400, 400);
  background(255);
  smooth();
}

void draw() {
}