Changes between Version 9 and Version 10 of rock/note/processing


Ignore:
Timestamp:
Jan 20, 2010, 5:45:53 PM (14 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • rock/note/processing

    v9 v10  
    3939= 【1.Processing 簡介】 =
    4040
     41----
     42= 【2.Processing 使用】 =
     43|| 使用和操作類似 Arduino IDE,這邊就不重複了,只針對他比較有趣的使用介紹 ||
     44 * 專案路徑 - 若開啟的專名稱為 !MoveEye,則會再設定的路徑下開啟一個 !MoveEye 目錄和 !MoveEye.pde 的主程式,若專案中有使用到圖片,需放在 data 目錄下。
     45 * Export 功能:(以專案 !MoveEye 為範例)
     46   * Export - 匯出成 applet
     47{{{
     48$ cd MoveEye
     49$ ls
     50applet/  MoveEye.pde
    4151
     52$ cd applet
     53$ ls
     54index.html  loading.gif  MoveEye.jar  MoveEye.java  MoveEye.pde
     55}}}
     56   * Export Application - 可匯出 Linux(sh檔)、Windows(exe)、MAC OS X(app) 可執行的檔案
     57{{{
     58$ cd MoveEye
     59$ ls
     60application.linux/  application.macosx/  application.windows/  MoveEye.pde
     61
     62$ cd application.linux
     63$ ls
     64lib/  MoveEye  source/
     65
     66$ ./MoveEye
     67}}}
    4268[[BR]]