equalsExact method

bool equalsExact(
  1. Geometry other,
  2. double tolerance
)

Implementation

bool equalsExact(Geometry other, double tolerance) {
  if (!isEquivalentClass(other)) {
    return false;
  }
  return super.equalsExactWithTol(other, tolerance);
}