in commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/twod/AffineTransformMatrix2D.java [446:463]
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof AffineTransformMatrix2D)) {
return false;
}
final AffineTransformMatrix2D other = (AffineTransformMatrix2D) obj;
return Double.compare(this.m00, other.m00) == 0 &&
Double.compare(this.m01, other.m01) == 0 &&
Double.compare(this.m02, other.m02) == 0 &&
Double.compare(this.m10, other.m10) == 0 &&
Double.compare(this.m11, other.m11) == 0 &&
Double.compare(this.m12, other.m12) == 0;
}