a port of the Processing Visualization Language
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 PVector.get() method to copy into your own array.

Syntax
PVector.array()

Parameters
vec any variable of type PVector
Returns float[]
Usage Web & Application

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub