Pacchetto | com.adobe.fiber.runtime.lib |
Classe | public class MathFunc |
Ereditarietà | MathFunc Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Metodo | Definito da | ||
---|---|---|---|
[statico]
The absolute value of a number. | MathFunc | ||
[statico]
Determines the closest integer that is greater than or equal to a specified number. | MathFunc | ||
[statico]
Converts a real number to an integer. | MathFunc | ||
[statico]
Calculates the closest integer that is less than or equal to a number. | MathFunc | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
[statico]
Returns the larger of two numbers. | MathFunc | ||
[statico]
Returns the smaller of two numbers. | MathFunc | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
[statico]
Rounds a number to the closest integer. | MathFunc | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
[statico]
Returns the sign of a number
| MathFunc | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
abs | () | metodo |
ceiling | () | metodo |
public static function ceiling(n:Number):Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Determines the closest integer that is greater than or equal to a specified number.
Parametri
n:Number — Number
|
Number — Ceiling of the number.
|
fix | () | metodo |
public static function fix(n:Number):Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | 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.
Parametri
n:Number — Number
|
Number — Input converted to an integer
|
floor | () | metodo |
public static function floor(n:Number):Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Calculates the closest integer that is less than or equal to a number.
Parametri
n:Number — Number
|
Number — Floor of the number
|
max | () | metodo |
public static function max(n1:Number, n2:Number):Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the larger of two numbers.
Parametri
n1:Number — Number
| |
n2:Number — Number
|
Number — Larger of the two input numbers
|
min | () | metodo |
public static function min(n1:Number, n2:Number):Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the smaller of two numbers.
Parametri
n1:Number — Number
| |
n2:Number — Number
|
Number — Smaller of the two input numbers
|
round | () | metodo |
public static function round(n:Number):Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Rounds a number to the closest integer. Rounds numbers that end with .5 up to the nearest integer.
Parametri
n:Number — Number
|
Number — Number rounded
|
sgn | () | metodo |
public static function sgn(n:Number):int
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the sign of a number
Parametri
n:Number — Number
|
int — -1 if num < 0, 0 if num = 0 and 1 if num > 0
|
Tue Jun 12 2018, 02:44 PM Z