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


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


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

用法

  • .sub(v)
  • .sub(x, y)
  • .sub(x, y, z)
  • .sub(v1, v2)
  • .sub(v1, v2, target)

參數

  • v (PVector) PVector 類型的任何變量
  • x (float) 向量的 x 分量
  • y (float) 向量的 y 分量
  • z (float) 向量的 z 分量
  • v1 (PVector) PVector 對象的 x、y 和 z 分量
  • v2 (PVector) PVector 對象的 x、y 和 z 分量
  • target (PVector) 存儲結果的 PVector

返回

  • PVector

說明

從向量中減去 x、y 和 z 分量,從另一個向量中減去一個向量,或從兩個獨立向量中減去。減去兩個向量的方法版本是靜態方法並返回 PVector ,其他方法直接作用於向量。有關更多上下文,請參閱示例。在所有情況下,從第一個向量 (v1) 中減去第二個向量 (v2),得到 v1-v2。

例子

PVector v1, v2;

void setup() {
  noLoop();
  v1 = new PVector(40, 20, 0);
  v2 = new PVector(65, 70, 0); 
}

void draw() {
  ellipse(v1.x, v1.y, 12, 12);
  ellipse(v2.x, v2.y, 12, 12);
  v2.sub(v1);
  ellipse(v2.x, v2.y, 24, 24);
}
PVector v;

void setup() {
  noLoop();
  v = new PVector(65, 70, 0);
}

void draw() {
  ellipse(v.x, v.y, 12, 12);
  ellipse(40, 20, 12, 12);
  v.sub(40, 20, 0);
  ellipse(v.x, v.y, 24, 24);
}
PVector v1, v2;

void setup() {
  noLoop();
  v1 = new PVector(65, 70, 0);
  v2 = new PVector(40, 20, 0); 
}

void draw() {
  ellipse(v1.x, v1.y, 12, 12);
  ellipse(v2.x, v2.y, 12, 12);
  PVector v3 = PVector.sub(v1, v2);
  ellipse(v3.x, v3.y, 24, 24);
}

相關用法


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