Vector3Max function

Vector3 Vector3Max(
  1. Vector3 v1,
  2. Vector3 v2
)

Implementation

Vector3 Vector3Max(Vector3 v1, Vector3 v2) =>
    Vector3(math.max(v1.x, v2.x), math.max(v1.y, v2.y), math.max(v1.z, v2.z));