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