public boolean equals()

in commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/EmbeddingPlane.java [220:234]


    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        } else if (obj == null || obj.getClass() != EmbeddingPlane.class) {
            return false;
        }

        final EmbeddingPlane other = (EmbeddingPlane) obj;

        return Objects.equals(this.getNormal(), other.getNormal()) &&
                Double.compare(this.getOriginOffset(), other.getOriginOffset()) == 0 &&
                Objects.equals(this.u, other.u) &&
                Objects.equals(this.v, other.v) &&
                Objects.equals(this.getPrecision(), other.getPrecision());
    }