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


Processing PVector.normalize()用法及代碼示例


Processing, 類PVector中的normalize()用法介紹。

用法

  • .normalize()
  • .normalize(target)

參數

  • target (PVector) 設置為 null 以創建新向量

返回

  • PVector

說明

將向量標準化為長度 1(使其成為單位向量)。

例子

PVector v = new PVector(10, 20, 2);
v.normalize();
println(v);  // Prints "[ 0.4454354, 0.8908708, 0.089087084 ]"

相關用法


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