Vector3i operator *(Vector3i other) { Vector3i n = Clone(); n.X *= other.X; n.Y *= other.Y; n.Z *= other.Z; return n; }