Processing, 类PVector
中的random2D()
用法介绍。
用法
.random2D()
.random2D(parent)
.random2D(target)
.random2D(target, parent)
参数
parent
(PApplet)
当前的 PApplet 实例target
(PVector)
目标向量(如果为空,将创建一个新向量)
返回
PVector
说明
返回具有随机方向的新二维单位向量。如果您将this
作为参数传入,它将使用 PApplet 的随机数生成器。
例子
PVector v;
void setup() {
v = PVector.random2D();
println(v);
// May print something like:
// [ -0.75006354, -0.6613658, 0.0 ] or
// [ 0.13742635, 0.990512, 0.0 ] or
// [ -0.9456181, -0.32527903, 0.0 ]
}
相关用法
- Processing PVector.random3D()用法及代码示例
- Processing PVector.rotate()用法及代码示例
- Processing PVector.set()用法及代码示例
- Processing PVector.mag()用法及代码示例
- Processing PVector.normalize()用法及代码示例
- Processing PVector.limit()用法及代码示例
- Processing PVector.div()用法及代码示例
- Processing PVector.cross()用法及代码示例
- Processing PVector.lerp()用法及代码示例
- Processing PVector.heading()用法及代码示例
- Processing PVector.dot()用法及代码示例
- Processing PVector.magSq()用法及代码示例
- Processing PVector.dist()用法及代码示例
- Processing PVector.angleBetween()用法及代码示例
- Processing PVector.fromAngle()用法及代码示例
- Processing PVector.z用法及代码示例
- Processing PVector.y用法及代码示例
- Processing PVector.x用法及代码示例
- Processing PVector.setMag()用法及代码示例
- Processing PVector.array()用法及代码示例
- Processing PVector.add()用法及代码示例
- Processing PVector.sub()用法及代码示例
- Processing PVector.copy()用法及代码示例
- Processing PVector用法及代码示例
- Processing Pulse用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 PVector.random2D()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。