max method

Q max(
  1. Q o
)

Implementation

Q max(Q o) => _q(
  math.max(x, o.x),
  math.max(y, o.y),
  math.max(z, o.z),
  math.max(w, o.w),
);