Class: Float

Inherits:
Object show all
Defined in:
lib/tuio-ruby/core_ext/float.rb

Instance Method Summary collapse

Instance Method Details

#approx_equal?(other, threshold = 0.00000000001) ⇒ Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/tuio-ruby/core_ext/float.rb', line 2

def approx_equal?(other,threshold=0.00000000001) 
  (self-other).abs < threshold  
end