C# Class Jurassic.Library.MathObject

Mostra file Open project: paulbartrum/jurassic

Public Methods

Method Description
Hypot ( double number1, double number2 ) : double

Returns the square root of the sum of squares of the provided numbers.

Private Methods

Method Description
Abs ( double number ) : double
Acos ( double number ) : double
Acosh ( double number ) : double
Asin ( double number ) : double
Asinh ( double number ) : double
Atan ( double number ) : double
Atan2 ( double y, double x ) : double
Atanh ( double number ) : double
Cbrt ( double number ) : double
Ceil ( double number ) : double
Clz32 ( double number ) : double
Cos ( double angle ) : double
Cosh ( double number ) : double
Exp ( double number ) : double
Expm1 ( double number ) : double
Floor ( double number ) : double
Fround ( double number ) : double
GetDeclarativeProperties ( ScriptEngine engine ) : List
Hypot ( ) : double
IMul ( double number1, double number2 ) : int
Log ( double number ) : double
Log10 ( double number ) : double
Log1p ( double number ) : double
Log2 ( double number ) : double
MathObject ( ObjectInstance prototype ) : System

Creates a new Math object.

Max ( ) : double
Min ( ) : double
Pow ( double @base, double exponent ) : double
Random ( ) : double
Round ( double number ) : double
Sign ( double number ) : double
Sin ( double angle ) : double
Sinh ( double number ) : double
Sqrt ( double number ) : double
Tan ( double angle ) : double
Tanh ( double number ) : double
Trunc ( double number ) : double
__STUB__Abs ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Acos ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Acosh ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Asin ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Asinh ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Atan ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Atan2 ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Atanh ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Cbrt ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Ceil ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Clz32 ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Cos ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Cosh ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Exp ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Expm1 ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Floor ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Fround ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Hypot ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__IMul ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Log ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Log10 ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Log1p ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Log2 ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Max ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Min ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Pow ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Random ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Round ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Sign ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Sin ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Sinh ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Sqrt ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Tan ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Tanh ( ScriptEngine engine, object thisObj, object args ) : object
__STUB__Trunc ( ScriptEngine engine, object thisObj, object args ) : object

Method Details

Hypot() public static method

Returns the square root of the sum of squares of the provided numbers.
public static Hypot ( double number1, double number2 ) : double
number1 double The first number to operate on.
number2 double The second number to operate on.
return double