Processing에서 글꼴 개요를 가져옵니다.
4227 단어 processing
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() {
}
이런 느낌이 될 것 같아
스프링의 움직임을 넣으면 이런 느낌
그 밖에도 여러가지 사용할 수 있을 것 같다
Reference
이 문제에 관하여(Processing에서 글꼴 개요를 가져옵니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/enkatsu/items/f4b60d23ef07d7f6fc00텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)