facosh static method

double facosh(
  1. double x
)

Implementation

static double facosh( double x ){
	return ClipMath.log( x + ClipMath.sqrt( x * x - 1.0 ) );
}