2点間の距離を計算します。
4つのパラメータを持つdist()
のバージョンは、2次元での距離を計算します。
6つのパラメータを持つdist()
のバージョンは、3次元での距離を計算します。
2つのp5.Vectorオブジェクト間の距離を計算するには、 p5.Vector.dist()を使用してください。
実例
シンタックス
dist(x1, y1, x2, y2)
dist(x1, y1, z1, x2, y2, z2)
パラメーター
x1
Number:
1点目のx座標。
y1
Number:
1点目のy座標。
x2
Number:
2点目のx座標。
y2
Number:
2点目のy座標。
z1
Number:
1点目のz座標。
z2
Number:
2点目のz座標。
リターン
Number: 2点間の距離。
Notice any errors or typos? Please let us know. Please feel free to edit src/math/calculation.js and open a pull request!