2014년/Processing.js1 Processing.js Start(1) processing.js Start ( 2분소요 ) -------------- 1. 웹에서 processing을 실행해보자 : html에서 processing의 기능을 javascript로 구현해놓은 processing.js를 실행시킬것이다. 2. open notepad type following codes ------------- void setup() { size(200,200); background(125); fill(255); noLoop(); PFont fontA = loadFont("courier"); textFont(fontA, 14); } void draw(){ text("Hello Web!",20,20); println("Hello ErrorLog!"); } ------------- op.. 2013. 9. 30. 이전 1 다음