Parametric

Date
September 10, 2025
Memo

text path, clock

Number
1
Output format

Clock Projection

Public
Tags
Practice

  • Selecting the fonts
  • Import the font
let font;

function preload(){
  font = loadFont("data/Inter_28pt-Medium.ttf");
}
  • 点を抽出
  • 点を描画
image
beginShape(POINTS);
  for(let i = 0;i < points.length; i++){
    let p = points[i];
    vertex(p.x,p.y);
  }
  endShape();

Parametric

  • Sliderを追加、パラメトリックに
  • Textで説明を追加

PDF exporting

点のもっているangleによる変化

references