當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js mag()用法及代碼示例


p5.j​​s中的mag()函數用於查找向量的大小或長度。由於矢量沒有起始位置,因此從位置(0,0)到(x,y)計算幅度。等效於使用dist(0,0,x,y)。

用法:

mag( a, b )

參數:該函數接受上述和以下所述的兩個參數:



  • a:它是代表第一個值的數字,即向量的“x”坐標。
  • b:它是代表第二個值的數字,即向量的“y”坐標。

返回值:它返回一個帶有向量大小的數字。

以下示例說明了p5.js中的mag()函數:

例:

function setup() { 
  createCanvas(650, 400); 
  strokeWeight(5); 
  rect(0, 0, width, height); 
  textSize(20); 
  
  text("Click on the area below to draw"
          + " a line and calculate its "
          + "magnitude", 20, 30); 
} 
  
function mousePressed() { 
  strokeWeight(1); 
  
  // Draw line to where the 
  // mouse is clicked 
  line(0, 0, mouseX, mouseY); 
  
  // Calculate the line magnitude 
  lineMag = mag(mouseX, mouseY); 
  
  // Draw the magnitude text on 
  // the end of the line 
  text(lineMag, mouseX, mouseY); 
}

輸出:
calculate-mag

在線編輯: https://editor.p5js.org/

環境設置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

參考: https://p5js.org/reference/#/p5/mag




相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 p5.js | mag() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。