Vector2i operator /(Vector2i other) { Vector2i n = Clone(); n.X = (n.X / other.X).round(); n.Z = (n.Z / other.Z).round(); return n; }