min method

V3 min(
  1. V3 o
)

Implementation

V3 min(V3 o) => _v3(
  math.min(x, o.x),
  math.min(y, o.y),
  math.min(z, o.z),
);