-
processing3-프로세싱 기초1공부기록✎/processing3 2020. 9. 24. 14:27
망할 재수강으로 다시 processing 공부 시작;;ㅠㅠㅠㅠ이씨ㅣㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ
프로세싱 다운받기
Processing.org
Welcome to Processing 3! Dan explains the new features and changes; the links Dan mentions are on the Vimeo page. Download Processing Browse Tutorials Visit the Reference Processing is a flexible software sketchbook and a language for learning how to code
www.processing.org
다운받고 압축풀고 실행시키면
이런 화면이 뜸.
[예제1]
void setup() { size(300,300); background(30,30,100); noStroke(); } void draw() { fill(255); ellipse(150,150,200,150); fill(255,255,10); ellipse(150,150,80,80); fill(255); ellipse(160, 140, 15,15); text("delicious eggs",100,260); noLoop(); }
실행시키면
아주우 귀여운 계란 후라이가 생김ㅎㅎ
(사실 원 3개 그린 것)
'공부기록✎ > processing3' 카테고리의 다른 글
processing3-프로세싱 기초 2 (0) 2020.10.11