Paket | com.adobe.fiber.runtime.lib |
Sınıf | public class MathFunc |
Miras Alma | MathFunc Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Yöntem | Tanımlayan: | ||
---|---|---|---|
[statik]
The absolute value of a number. | MathFunc | ||
[statik]
Determines the closest integer that is greater than or equal to a specified number. | MathFunc | ||
[statik]
Converts a real number to an integer. | MathFunc | ||
[statik]
Calculates the closest integer that is less than or equal to a number. | MathFunc | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
[statik]
Returns the larger of two numbers. | MathFunc | ||
[statik]
Returns the smaller of two numbers. | MathFunc | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
[statik]
Rounds a number to the closest integer. | MathFunc | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
[statik]
Returns the sign of a number
| MathFunc | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
abs | () | yöntem |
ceiling | () | yöntem |
public static function ceiling(n:Number):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Determines the closest integer that is greater than or equal to a specified number.
Parametreler
n:Number — Number
|
Number — Ceiling of the number.
|
fix | () | yöntem |
public static function fix(n:Number):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Converts a real number to an integer. If number is greater than or equal to 0, the closest integer less than or equal to number. If number is less than 0, the closest integer greater than or equal to number.
Parametreler
n:Number — Number
|
Number — Input converted to an integer
|
floor | () | yöntem |
public static function floor(n:Number):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Calculates the closest integer that is less than or equal to a number.
Parametreler
n:Number — Number
|
Number — Floor of the number
|
max | () | yöntem |
public static function max(n1:Number, n2:Number):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the larger of two numbers.
Parametreler
n1:Number — Number
| |
n2:Number — Number
|
Number — Larger of the two input numbers
|
min | () | yöntem |
public static function min(n1:Number, n2:Number):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the smaller of two numbers.
Parametreler
n1:Number — Number
| |
n2:Number — Number
|
Number — Smaller of the two input numbers
|
round | () | yöntem |
public static function round(n:Number):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Rounds a number to the closest integer. Rounds numbers that end with .5 up to the nearest integer.
Parametreler
n:Number — Number
|
Number — Number rounded
|
sgn | () | yöntem |
public static function sgn(n:Number):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the sign of a number
Parametreler
n:Number — Number
|
int — -1 if num < 0, 0 if num = 0 and 1 if num > 0
|
Tue Jun 12 2018, 01:09 PM Z