Pacote | mx.geom |
Classe | public class CompoundTransform |
Herança | CompoundTransform Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | 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 se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Applies the delta to the transform's translation component. | CompoundTransform | ||
Retorna o valor primitivo do objeto especificado. | Object |
matrix | propriedade |
matrix:Matrix
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Implementação
public function get matrix():Matrix
public function set matrix(value:Matrix):void
matrix3D | propriedade |
matrix3D:Matrix3D
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Implementação
public function get matrix3D():Matrix3D
public function set matrix3D(value:Matrix3D):void
rotationX | propriedade |
rotationY | propriedade |
rotationZ | propriedade |
scaleX | propriedade |
scaleY | propriedade |
scaleZ | propriedade |
transformX | propriedade |
transformX:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Implementação
public function get transformX():Number
public function set transformX(value:Number):void
transformY | propriedade |
transformY:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Implementação
public function get transformY():Number
public function set transformY(value:Number):void
transformZ | propriedade |
transformZ:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Implementação
public function get transformZ():Number
public function set transformZ(value:Number):void
x | propriedade |
y | propriedade |
z | propriedade |
CompoundTransform | () | Construtor |
public function CompoundTransform()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
translateBy | () | método |
public function translateBy(x:Number, y:Number, z:Number = 0):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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'.
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.
|
Wed Jun 13 2018, 11:10 AM Z