공부기록✎
-
processing3-프로세싱 기초 2공부기록✎/processing3 2020. 10. 11. 14:57
"원 만들기 응용" 다음 주 중간 프로젝트 발표................................ 프로세싱 잘 할 줄도 모르는데ㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ 무튼 "원 만들기 응용" 기록 남기기 [소스코드] 이럼 벽에 닿으면 원이 튕겨지는 것 같은 효과를 볼 수 있다. int x=100; int speedX=3; void setup() { size(720,480); background(255); } void draw() { background(255); fill(255, 0, 255); ellipse(x,240, 100, 100); x=x+speedX; if(x>height-50 || x
-
processing3-프로세싱 기초1공부기록✎/processing3 2020. 9. 24. 14:27
망할 재수강으로 다시 processing 공부 시작;;ㅠㅠㅠㅠ이씨ㅣㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ 프로세싱 다운받기 www.processing.org/ 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 다운받고 압축풀고 실행시키면 이런 화면이 뜸. [예제..