operator + method

Vector3i operator +(
  1. Vector3i other
)

Implementation

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

  return n;
}