Calculate hashcode of 3-dimensional coordinate.
@override int get hashCode { return x.hashCode ^ (y.hashCode * 17) ^ (z.hashCode * 29); }