2016년 1월 2일 토요일

Processing 기반 LED dot 매트릭스 그래픽 만들기

LED dot 매트릭스 그래픽을 프로세싱 기반으로 만들어 본다.



이 내용은 다음 레퍼런스를 참고하였다.



PGraphics circles;

void setup() {
  size(100, 100);
  circles = createGraphics(width, height); circles.beginDraw();
  circles.background(0);
  circles.noStroke();
  circles.fill(255, 100); circles.endDraw();
  noCursor();
} 

void draw() {
  image(circles, 0, 0);
  stroke(255);
  line(mouseX, 0, mouseX, height);
  line(0, mouseY, width, mouseY);
}

void mousePressed() {
  circles.beginDraw();
  circles.ellipse(mouseX, mouseY, 40, 40);
  circles.endDraw();
}

댓글 없음:

댓글 쓰기