min method

Vector3D min(
  1. Vector3D o
)

Implementation

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