Method: Angle.acsc

Defined in:
lib/angles.rb

.acsc(x) ⇒ Object



286
287
288
289
290
# File 'lib/angles.rb', line 286

def self.acsc(x)
  return nil if x == 0

  asin(1 / x)
end