max method

Vector3D max(
  1. Vector3D o
)

Implementation

Vector3D max(Vector3D o) => .vec3(
  math.max(x, o.x),
  math.max(y, o.y),
  math.max(z, o.z),
);