max method

Vector2D max(
  1. Vector2D o
)

Implementation

Vector2D max(Vector2D o) => .vec2(
  math.max(x, o.x),
  math.max(y, o.y),
);