Processing에서 글꼴 개요를 가져옵니다.

4227 단어 processing
Processing3.0.1 사용

FontShpe.pde
PFont font;
PShape pShape;

void setup() {
  size(300, 200);
  //まずはPFontを生成
  font = createFont("osaka", 100);
  //次にフォントからPShapeを取得
  pShape = font.getShape('P', 1);
  //取得したままのスタイルだと表示されないので設定
  pShape.beginShape();
  pShape.strokeWeight(1);
  pShape.stroke(0);
  pShape.fill(255);
  pShape.endShape();

  background(100);

  //まずはPShapeを使って描画
  translate(100, 100);
  shape(pShape, 0, 0);

  //次にvertexを取り出して描画
  translate(100, 0);
  beginShape();
  for (int i = 0; i < pShape.getVertexCount(); i++) {
    vertex(pShape.getVertex(i).x, pShape.getVertex(i).y);
  }
  endShape();
}

void draw() {
}

이런 느낌이 될 것 같아


스프링의 움직임을 넣으면 이런 느낌



그 밖에도 여러가지 사용할 수 있을 것 같다

좋은 웹페이지 즐겨찾기