Reference+
Name
copy()
Class
PVector
Description
Copies the components of the vector and returns the result as a PVector.
Examples
PVector v1, v2; void setup() { size(100, 100); v1 = new PVector(20.0, 30.0, 40.0); v2 = new PVector(); v2 = v1.copy(); println(v2.x); // Prints "20.0" println(v2.y); // Prints "30.0" println(v2.z); // Prints "40.0" }
Syntax
.copy()
Return
PVector
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.