Returns a hashcode for this Roi that typically changes if it is moved, even though it is still the same object.
()
| 2914 | /** Returns a hashcode for this Roi that typically changes |
| 2915 | if it is moved, even though it is still the same object. */ |
| 2916 | public int getHashCode() { |
| 2917 | return hashCode() ^ (Double.valueOf(getXBase()).hashCode()) ^ |
| 2918 | Integer.rotateRight(Double.valueOf(getYBase()).hashCode(),16); |
| 2919 | } |
| 2920 | |
| 2921 | public void setFlattenScale(double scale) { |
| 2922 | flattenScale = scale; |
no test coverage detected