OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Public Member Functions | List of all members
ossimUnaryOpASin Class Reference
Inheritance diagram for ossimUnaryOpASin:
ossimEquationCombiner::ossimUnaryOp

Public Member Functions

virtual double apply (double v) const
 
- Public Member Functions inherited from ossimEquationCombiner::ossimUnaryOp
virtual ~ossimUnaryOp ()
 

Detailed Description

Definition at line 280 of file ossimEquationCombiner.cpp.

Member Function Documentation

◆ apply()

virtual double ossimUnaryOpASin::apply ( double  v) const
inlinevirtual

Implements ossimEquationCombiner::ossimUnaryOp.

Definition at line 283 of file ossimEquationCombiner.cpp.

284  {
285  if(v > 1) v = 1;
286  if(v < -1) v = -1;
287  return asin(v);
288  }

The documentation for this class was generated from the following file: