a port of the Processing Visualization Language
Class PVector
Name

get()

Examples
	
PVector v1, v2;

void setup() {
  size(100, 100);
  v1 = new PVector(20.0, 30.0, 40.0);
  v2 = new PVector();
  v2 = v1.get();
  println(v2.x);  // Prints "20.0"
  println(v2.y);  // Prints "30.0"
  println(v2.z);  // Prints "40.0"
}
Description

Gets a copy of the vector, returns a PVector object.

Syntax
vec.get()
Parameters
vec any variable of type PVector
Returns PVector
Usage Web & Application

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

Creative Commons License
Fork me on GitHub