Math.sqrt( ) Method

ActionScript for Flash MX: The Definitive Guide, 2nd Edition
By Colin Moock
Chapter 18.  ActionScript Language Reference
Math.sqrt( ) Method Flash 5; can be used when exporting Flash 4 movies

calculate the square root of a number
Math.sqrt(x)

Arguments

x

A nonnegative integer.

Returns

The square root of x, or NaN if x is less than 0.

Description

The sqrt( ) method returns the positive root of its operand (even though there may also be a mathematically valid negative root). It is equivalent to:

Math.pow(x, 0.5)

Example

Math.sqrt(4);    // Returns 2, although -2 is also a valid root Math.sqrt(36);   // Returns 6, although -6 is also a valid root Math.sqrt(-20);  // Returns NaN     // Calculate the distance between two points, // the square root of (deltaX squared plus deltaY squared): var dist = Math.sqrt((deltaX * deltaX) + (deltaY * deltaY));

See Also

Math.pow( ), Math.SQRT2, Math.SQRT1_2



    ActionScript for Flash MX. The Definitive Guide
    ActionScript for Flash MX: The Definitive Guide, Second Edition
    ISBN: 059600396X
    EAN: 2147483647
    Year: 2002
    Pages: 780
    Authors: Colin Moock

    flylib.com © 2008-2017.
    If you may any questions please contact us: flylib@qtcs.net