금천고등학교 로고이미지

컴퓨터프로그래밍

RSS 페이스북 공유하기 트위터 공유하기 카카오톡 공유하기 카카오스토리 공유하기 네이버밴드 공유하기 프린트하기
[프로세싱] 글자 움직이기
작성자 김용남 등록일 21.06.17 조회수 41
첨부파일
Verdana-48.zip (38.02KB) (다운횟수:18)

String word = "Pigtail";
PFont f;
char[] letters;

void setup(){
  size(200, 200);
  fill(255);
  f = loadFont("Verdana-48.vlw");
  textFont(f);
  letters = word.toCharArray();
}

void draw(){
  background(230, 170, 170);
  pushMatrix();
  translate(60, 80);
  for(int i=0; i<letters.length; i++){
   float angle = map(mouseX, 0, width, 0, QUARTER_PI);
   rotate(angle);
   textSize(32);
   text(letters[i], 0, 0);
  translate(textWidth(letters[i]), 0);
  }
 popMatrix();

이전글 [아두이노] 7세그먼트
다음글 [프로세싱] 마우스 인터렉션