Method: Processing::GraphicsContext#atan

Defined in:
lib/processing/graphics_context.rb

#atan(value) ⇒ Numeric

Returns the inverse of tan().

Parameters:

  • value (Numeric)

    value for valculation

Returns:

  • (Numeric)

    the arc tangent

See Also:



2870
2871
2872
# File 'lib/processing/graphics_context.rb', line 2870

def atan(value)
  Math.atan value
end