This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Class

PVector

Name

array()

Examples
PVector v = new PVector(10.0, 20.0, 30.0);
float[] f = v.array();
println(f[0]);  // Prints "10.0"
println(f[1]);  // Prints "20.0"
println(f[2]);  // Prints "30.0"
Description Return a representation of this vector as a float array. This is only for temporary use. If used in any other fashion, the contents should be copied by using the copy() method to copy into your own array.
Syntax
.array()
Returnsfloat[]
Updated on January 1, 2021 03:38:09am EST