이름 class 예제 // 클래스 HLine 으로부터 두 개의 객체(h1, h2)를 선언하고 만든다. HLine h1 = new HLine(20, 2.0); HLine h2 = new HLine(50, 2.5); void setup() { size(200, 200); frameRate(30); } void draw() { background(204); h1.update(); h2.update(); } class HLine { float ypos, speed; HLine (float y, float s) { ypos = y; speed = s; } void update() { ypos += speed; if (ypos > height) { ypos = 0; } line(0, ypos, width, ypos..
이름 catch 예제 BufferedReader reader; String line; void setup() { // creatWriter() 예제로부터 파일 불러오기 reader = createReader("positions.txt"); } void draw() { try { line = reader.readLine(); } catch (IOException e) { e.printStackTrace(); line = null; } if (line == null) { // 오류 또는 비어있는 파일로 인한 파일 읽기 종료 noLoop(); } else { String[] pieces = split(line, TAB); int x = int(pieces[0]); int y = int(pieces[1]); p..
이름 {} (중괄호) 예제 int[] a = { 5, 20, 25, 45, 70 }; void setup() { size(100, 100); } void draw() { for (int i=0; i < a.length; i++) { line(0, a[i], 50, a[i]); } } 설명 for 나 if 제어문 같은 함수 블록이나 문장 블록들의 시작과 끝을 지정합니다. 중괄호는 배열 선언의 초기값을 지정할 때 사용되기도 합니다. 문법 { statements } { ele0, ..., eleN } 매개변수 statements// 모든 가능한 문장의 나열 ele0, ..., eleN// 콤마로 구분되는 요소들의 집합 연관항목 () (parentheses)
- GUI
- GUI 프로그래밍
- java
- metaphysics
- Philosophy
- processing
- processing reference
- PyQT
- PySide6
- Pyside6 사용법
- Python
- Qt for Python
- StanfordEncyclopedia
- 스탠포드철학사전
- 철학
- 철학사전
- 프로그래밍
- 프로세싱
- 프로세싱 레퍼런스
- 프로세싱 레퍼런스 한국어판
- 프로세싱 레퍼런스 한글판
- 프로세싱 사용법
- 프로세싱 튜토리얼
- 형이상학
- Total
- Today
- Yesterday