max method

void max (Vector2 a, Vector2 b, Vector2 result)

Set the values of result to the maximum of a and b for each line.

Implementation

static void max(Vector2 a, Vector2 b, Vector2 result) {
  result
    ..x = math.max(a.x, b.x)
    ..y = math.max(a.y, b.y);
}