All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vividsolutions.jts.util.NumberUtil Maven / Gradle / Ivy

The newest version!
package com.vividsolutions.jts.util;

public class NumberUtil
{

  public static boolean equalsWithTolerance(double x1, double x2, double tolerance)
  {
    return Math.abs(x1 - x2) <= tolerance;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy