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


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


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

用法

  • .rotate(theta)

參數

  • theta (float) 旋轉角度

返回

  • PVector

說明

將向量旋轉一個角度(僅 2D 向量),幅度保持不變

例子

PVector v;

void setup() {
  v = new PVector(10.0, 20.0);
  println(v);  // Prints "[ 10.0, 20.0, 0.0 ]"
  v.rotate(HALF_PI);
  println(v);  // Prints "[ -20.0, 9.999999, 0.0 ]"
}

相關用法


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