operator / method

Vector2i operator /(
  1. Vector2i other
)

Implementation

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

  return n;
}