Packagecom.degrafa.transform
Classpublic class RotateTransform
InheritanceRotateTransform Inheritance Transform Inheritance DegrafaObject

RotateTransform rotates an object in the two-dimensional plane by specifying an angle (property angle) and a center point expressed in the coordinate space of the element being transformed (properties centerX and centerY). Coming Soon.



Public Properties
 PropertyDefined by
  angle : Number
The rotation angle of the transform.
RotateTransform
 Inheritedbounds : Rectangle
The tight bounds of this element as represented by a Rectangle object.
Transform
  centerX : Number
The center point of the transform along the x-axis.
RotateTransform
  centerY : Number
The center point of the transform along the y-axis.
RotateTransform
 Inheriteddata : String
Transform
 Inheriteddocument : Object
The MXML document that created this object.
DegrafaObject
 InheritedenableEvents : Boolean
Enable events for this object.
DegrafaObject
 Inheritedgeometry : Array
A array of IGeometryComposition objects.
Transform
 InheritedgeometryCollection : GeometryCollection
Access to the Degrafa geometry collection object for this geometry object.
Transform
 InheritedhasEventManager : Boolean
Tests to see if a EventDispatcher instance has been created for this object.
DegrafaObject
 Inheritedid : String
The identifier used by document to refer to this object.
DegrafaObject
 Inheritedname : String
The name that refers to this object.
DegrafaObject
 InheritedsuppressEventProcessing : Boolean
Temporarily suppress event processing for this object.
DegrafaObject
Protected Properties
 PropertyDefined by
 InheritedeventDispatcher : EventDispatcher
EventDispatcher instance for this object.
DegrafaObject
Public Methods
 MethodDefined by
  
RotateTransform
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
DegrafaObject
  
apply(matrix:Matrix):void
RotateTransform
 Inherited
calcBounds():void
Calculates the bounds for this element.
Transform
 Inherited
dispatchEvent(evt:Event):Boolean
Dispatches an event into the event flow.
DegrafaObject
 Inherited
dispatchPropertyChange(bubbles:Boolean = false, property:Object = null, oldValue:Object = null, newValue:Object = null, source:Object = null):Boolean
Dispatches an property change event into the event flow.
DegrafaObject
 Inherited
draw(graphics:Graphics, rc:Rectangle):void
Begins the draw phase for geometry objects.
Transform
 Inherited
endDraw(graphics:Graphics):void
Ends the draw phase for geometry objects.
Transform
 Inherited
hasEventListener(type:String):Boolean
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
DegrafaObject
 Inherited
initChange(property:String, oldValue:Object, newValue:Object, source:Object):void
Helper function for dispatching property changes
DegrafaObject
 Inherited
initialized(document:Object, id:String):void
Called after the implementing object has been created and all component properties specified on the MXML tag have been initialized.
DegrafaObject
 Inherited
preDraw():void
Transform
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
DegrafaObject
 Inherited
willTrigger(type:String):Boolean
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
DegrafaObject
Events
 EventSummaryDefined by
 Inherited  DegrafaObject
 Inherited  DegrafaObject
Property detail
angleproperty
angle:Number  [read-write]

The rotation angle of the transform.

This property can be used as the source for data binding.

Implementation
    public function get angle():Number
    public function set angle(value:Number):void
centerXproperty 
centerX:Number  [read-write]

The center point of the transform along the x-axis.

This property can be used as the source for data binding.

Implementation
    public function get centerX():Number
    public function set centerX(value:Number):void
centerYproperty 
centerY:Number  [read-write]

The center point of the transform along the y-axis.

This property can be used as the source for data binding.

Implementation
    public function get centerY():Number
    public function set centerY(value:Number):void
Constructor detail
RotateTransform()constructor
public function RotateTransform()
Method detail
apply()method
public function apply(matrix:Matrix):voidParameters
matrix:Matrix