min method
V4
min(
- V4 o
Returns a new vector with each component being the component-wise minimum of this and o.
Implementation
V4 min(V4 o) => _v4(
math.min(x, o.x),
math.min(y, o.y),
math.min(z, o.z),
math.min(w, o.w),
);