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