指定されたテキスト文字列の境界ボックスを計算します。
境界ボックスは、テキストを含む最小の長方形です。 これは、テキストの配置や衝突検出に役立ちます。
返されるオブジェクトには以下のプロパティがあります:
x
:境界ボックスの左上隅のx座標。y
:境界ボックスの左上隅のy座標。w
:境界ボックスの幅。h
:境界ボックスの高さ。
実例
シンタックス
textBounds(str, x, y, fontSize, [options])
パラメーター
str
String:
境界を計算するテキスト。
x
Number:
テキストのx位置。
y
Number:
テキストのy位置。
fontSize
Number:
テキストのフォントサイズ。
options
Object:
追加のオプションを含むオブジェクト。
リターン
Object: テキストの境界を表すオブジェクト。
Notice any errors or typos? Please let us know. Please feel free to edit src/typography/p5.Font.js and open a pull request!