min method

Vector4 min(
  1. Vector4 v
)

Implementation

Vector4 min(Vector4 v) {
  x = math.min(x, v.x);
  y = math.min(y, v.y);
  z = math.min(z, v.z);
  w = math.min(w, v.w);

  return this;
}