max method
V4
max(
- V4 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),
);
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),
);