max method

Vector3 max(
  1. Vector3 v
)

Implementation

Vector3 max(Vector3 v) {
  x = Math.max(x, v.x);
  y = Math.max(y, v.y);
  z = Math.max(z, v.z);

  return this;
}