Pakiet | mx.geom |
Klasa | public class CompoundTransform |
Dziedziczenie | CompoundTransform Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | 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 |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor. | CompoundTransform | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Applies the delta to the transform's translation component. | CompoundTransform | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
matrix | właściwość |
matrix:Matrix
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get matrix():Matrix
public function set matrix(value:Matrix):void
matrix3D | właściwość |
matrix3D:Matrix3D
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get matrix3D():Matrix3D
public function set matrix3D(value:Matrix3D):void
rotationX | właściwość |
rotationY | właściwość |
rotationZ | właściwość |
scaleX | właściwość |
scaleY | właściwość |
scaleZ | właściwość |
transformX | właściwość |
transformX:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get transformX():Number
public function set transformX(value:Number):void
transformY | właściwość |
transformY:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get transformY():Number
public function set transformY(value:Number):void
transformZ | właściwość |
transformZ:Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get transformZ():Number
public function set transformZ(value:Number):void
x | właściwość |
y | właściwość |
z | właściwość |
CompoundTransform | () | Konstruktor |
public function CompoundTransform()
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor.
translateBy | () | metoda |
public function translateBy(x:Number, y:Number, z:Number = 0):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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'.
Parametry
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, 12:06 PM Z