当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。