Returns a hash code for this vector. @return hash code
()
| 95 | * @return hash code |
| 96 | */ |
| 97 | @Override |
| 98 | public int hashCode() { |
| 99 | return (Integer.valueOf((int) x).hashCode() >> 13) ^ (Integer.valueOf((int) y).hashCode() >> 7) ^ Integer.valueOf((int) z).hashCode(); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Get a new block vector. |