namespace Robust.Shared.Maths { /// /// Approximate equality checking, to handle floating point errors. /// public interface IApproxEquatable { bool EqualsApprox(T other); bool EqualsApprox(T other, double tolerance); } }