aCos( ) Function

Description:
  The aCos() function returns the angle whose trignometric cosine value is nValue, where nValue is in radians.

Syntax:
  retval = aCos( nValue )

Parameters:
  numeric: nValue Cosine value in radians to get angle of.
  numeric: retval The angle whose trignometric cosine is nValue.

Platforms:
  Windows, DOS, Internet Active Pages



Example:

	local var1, retval                     	// Variables				
	var1 = prompt( "Test Number", "", 15 )	// Obtain Input Data
	retval = acos( var1 )			// Returns the arc cosine of var1

	println( retval )			// Print results to screen

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved