add2 method
Vector3
add2(
- Vector3 vector,
- Vector3 target
Vector addition
Implementation
Vector3 add2(Vector3 vector, Vector3 target){
target.x = vector.x + x;
target.y = vector.y + y;
target.z = vector.z + z;
return target;
}