Class AppMath::ArcSin
In: graph.rb
Parent: Object

Methods

at   new  

Public Class methods

[Source]

     # File graph.rb, line 261
261:   def initialize(n = R.prec)
262:     @precMem = R.prec
263:     @precLoc = n
264:   end

Public Instance methods

[Source]

     # File graph.rb, line 265
265:   def at(x)
266:     R.prec = @precLoc
267:     y = x.asin
268:     R.prec = @precMem; y
269:   end

[Validate]