示例#1
0
  /** @return returns a unique code for this transform object based on its values. */
  @Override
  public int hashCode() {
    int result = 17;

    result += 31 * result + _myMatrix.hashCode();
    result += 31 * result + _myScale.hashCode();
    result += 31 * result + _myTranslation.hashCode();

    return result;
  }