Processing, 類PVector
中的y
用法介紹。
用法
.y
參數
說明
向量的 y 分量。該字段(變量)可用於獲取和設置值(參見上麵的示例。)
例子
PVector v;
void setup() {
size(100, 100);
v = new PVector(20.0, 30.0, 40.0);
println(v.x); // Prints "20.0"
println(v.y); // Prints "30.0"
println(v.z); // Prints "40.0"
v.y = 50.0;
println(v.y); // Prints "50.0"
}
相關用法
- Processing PVector.set()用法及代碼示例
- Processing PVector.mag()用法及代碼示例
- Processing PVector.normalize()用法及代碼示例
- Processing PVector.limit()用法及代碼示例
- Processing PVector.div()用法及代碼示例
- Processing PVector.cross()用法及代碼示例
- Processing PVector.random2D()用法及代碼示例
- Processing PVector.lerp()用法及代碼示例
- Processing PVector.heading()用法及代碼示例
- Processing PVector.dot()用法及代碼示例
- Processing PVector.magSq()用法及代碼示例
- Processing PVector.dist()用法及代碼示例
- Processing PVector.angleBetween()用法及代碼示例
- Processing PVector.fromAngle()用法及代碼示例
- Processing PVector.random3D()用法及代碼示例
- Processing PVector.z用法及代碼示例
- Processing PVector.x用法及代碼示例
- Processing PVector.setMag()用法及代碼示例
- Processing PVector.array()用法及代碼示例
- Processing PVector.rotate()用法及代碼示例
- Processing PVector.add()用法及代碼示例
- Processing PVector.sub()用法及代碼示例
- Processing PVector.copy()用法及代碼示例
- Processing PVector用法及代碼示例
- Processing Pulse用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PVector.y。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。