min method

Vector2D min(
  1. Vector2D o
)

Implementation

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