Paket | mx.geom |
Sınıf | public class CompoundTransform |
Miras Alma | CompoundTransform ![]() |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Özellik | Tanımlayan: | ||
---|---|---|---|
![]() | constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | 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 |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | CompoundTransform | ||
![]() |
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | |
![]() |
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | |
![]() |
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | |
![]() |
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | |
![]() |
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | |
![]() |
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | |
Applies the delta to the transform's translation component. | CompoundTransform | ||
![]() |
Belirtilen nesnenin temel değerini döndürür. | Object |
matrix | özellik |
matrix:Matrix
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get matrix():Matrix
public function set matrix(value:Matrix):void
matrix3D | özellik |
matrix3D:Matrix3D
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get matrix3D():Matrix3D
public function set matrix3D(value:Matrix3D):void
rotationX | özellik |
rotationY | özellik |
rotationZ | özellik |
scaleX | özellik |
scaleY | özellik |
scaleZ | özellik |
transformX | özellik |
transformX:Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get transformX():Number
public function set transformX(value:Number):void
transformY | özellik |
transformY:Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get transformY():Number
public function set transformY(value:Number):void
transformZ | özellik |
transformZ:Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get transformZ():Number
public function set transformZ(value:Number):void
x | özellik |
y | özellik |
z | özellik |
CompoundTransform | () | Yapıcı |
public function CompoundTransform()
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructor.
translateBy | () | yöntem |
public function translateBy(x:Number, y:Number, z:Number = 0):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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'.
Parametreler
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, 01:09 PM Z