Pacchetto | mx.geom |
Classe | public class CompoundTransform |
Ereditarietà | CompoundTransform Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
matrix : Matrix
The 2D matrix either set directly by the user, or composed by combining the transform center, scale, rotation
and translation, in that order. | CompoundTransform | ||
matrix3D : Matrix3D
The 3D matrix either set directly by the user, or composed by combining the transform center, scale, rotation
and translation, in that order. | CompoundTransform | ||
rotationX : Number
The rotationX, in degrees, of the transform. | CompoundTransform | ||
rotationY : Number
The rotationY, in degrees, of the transform. | CompoundTransform | ||
rotationZ : Number
The rotationZ, in degrees, of the transform. | CompoundTransform | ||
scaleX : Number
The scaleX of the transform. | CompoundTransform | ||
scaleY : Number
The scaleY of the transform. | CompoundTransform | ||
scaleZ : Number
The scaleZ of the transform. | CompoundTransform | ||
transformX : Number
The x value of the transform center. | CompoundTransform | ||
transformY : Number
The y value of the tansform center. | CompoundTransform | ||
transformZ : Number
The z value of the tansform center. | CompoundTransform | ||
x : Number
The x value of the transform. | CompoundTransform | ||
y : Number
The y value of the transform. | CompoundTransform | ||
z : Number
The z value of the transform. | CompoundTransform |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | CompoundTransform | ||
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 | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
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 | ||
Applies the delta to the transform's translation component. | CompoundTransform | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
matrix | proprietà |
matrix:Matrix
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The 2D matrix either set directly by the user, or composed by combining the transform center, scale, rotation and translation, in that order.
Implementazione
public function get matrix():Matrix
public function set matrix(value:Matrix):void
matrix3D | proprietà |
matrix3D:Matrix3D
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The 3D matrix either set directly by the user, or composed by combining the transform center, scale, rotation and translation, in that order.
Implementazione
public function get matrix3D():Matrix3D
public function set matrix3D(value:Matrix3D):void
rotationX | proprietà |
rotationY | proprietà |
rotationZ | proprietà |
scaleX | proprietà |
scaleY | proprietà |
scaleZ | proprietà |
transformX | proprietà |
transformX:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The x value of the transform center. The transform center is kept fixed as rotation and scale are applied.
Implementazione
public function get transformX():Number
public function set transformX(value:Number):void
transformY | proprietà |
transformY:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The y value of the tansform center. The transform center is kept fixed as rotation and scale are applied.
Implementazione
public function get transformY():Number
public function set transformY(value:Number):void
transformZ | proprietà |
transformZ:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The z value of the tansform center. The transform center is kept fixed as rotation and scale are applied.
Implementazione
public function get transformZ():Number
public function set transformZ(value:Number):void
x | proprietà |
y | proprietà |
z | proprietà |
CompoundTransform | () | Funzione di costruzione |
public function CompoundTransform()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
translateBy | () | metodo |
public function translateBy(x:Number, y:Number, z:Number = 0):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Applies the delta to the transform's translation component. Unlike setting the x, y, or z properties directly, this method can be safely called without changing the transform's concept of 'the source of truth'.
Parametri
x:Number — The x value of the transform.
| |
y:Number — The y value of the transform.
| |
z:Number (default = 0 ) — The z value of the transform.
|
Tue Jun 12 2018, 02:44 PM Z