max method

V3 max(
  1. V3 o
)

Implementation

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