operator / method

Vector3i operator /(
  1. Vector3i other
)

Implementation

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

  return n;
}