Paquete | mx.geom |
Clase | public class CompoundTransform |
Herencia | CompoundTransform Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | 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 |
Método | Definido por | ||
---|---|---|---|
Constructor. | CompoundTransform | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Applies the delta to the transform's translation component. | CompoundTransform | ||
Devuelve el valor simple del objeto especificado. | Object |
matrix | propiedad |
matrix:Matrix
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Implementación
public function get matrix():Matrix
public function set matrix(value:Matrix):void
matrix3D | propiedad |
matrix3D:Matrix3D
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Implementación
public function get matrix3D():Matrix3D
public function set matrix3D(value:Matrix3D):void
rotationX | propiedad |
rotationY | propiedad |
rotationZ | propiedad |
scaleX | propiedad |
scaleY | propiedad |
scaleZ | propiedad |
transformX | propiedad |
transformX:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Implementación
public function get transformX():Number
public function set transformX(value:Number):void
transformY | propiedad |
transformY:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Implementación
public function get transformY():Number
public function set transformY(value:Number):void
transformZ | propiedad |
transformZ:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Implementación
public function get transformZ():Number
public function set transformZ(value:Number):void
x | propiedad |
y | propiedad |
z | propiedad |
CompoundTransform | () | Información sobre |
public function CompoundTransform()
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Constructor.
translateBy | () | método |
public function translateBy(x:Number, y:Number, z:Number = 0):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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'.
Parámetros
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:12 PM Z