clone method

Vec3 clone()

Clone this vector and return a new vector

Implementation

Vec3 clone(){
  return Vec3(x, y, z);
}