min method

V3 min(
  1. V3 o
)

Returns a new vector with each component being the component-wise minimum of this and o.

Implementation

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