Package | starling.display.graphics |
Class | public class RoundedRectangle |
Inheritance | RoundedRectangle ![]() ![]() ![]() ![]() |
Property | Defined By | ||
---|---|---|---|
![]() | alpha : Number The opacity of the object. | DisplayObject | |
![]() | base : DisplayObject [read-only] The topmost object in the display tree the object is part of. | DisplayObject | |
![]() | blendMode : String The blend mode determines how the object is blended with the objects underneath. | DisplayObject | |
bottomLeftRadius : Number | RoundedRectangle | ||
bottomRightRadius : Number | RoundedRectangle | ||
![]() | bounds : Rectangle [read-only] The bounds of the object relative to the local coordinates of the parent. | DisplayObject | |
cornerRadius : Number | RoundedRectangle | ||
![]() | filter : FragmentFilter The filter that is attached to the display object. | DisplayObject | |
height : Number [override] | RoundedRectangle | ||
![]() | is3D : Boolean [read-only] Indicates if this object or any of its parents is a 'Sprite3D' object. | DisplayObject | |
![]() | mask : DisplayObject The display object that acts as a mask for the current object. | DisplayObject | |
![]() | maskInverted : Boolean Indicates if the masked region of this object is set to be inverted. | DisplayObject | |
![]() | material : IMaterial | Graphic | |
![]() | name : String The name of the display object (default: null). | DisplayObject | |
![]() | parent : DisplayObjectContainer [read-only] The display object container that contains this display object. | DisplayObject | |
![]() | pivotX : Number The x coordinate of the object's origin in its own coordinate space (default: 0). | DisplayObject | |
![]() | pivotY : Number The y coordinate of the object's origin in its own coordinate space (default: 0). | DisplayObject | |
![]() | precisionHitTest : Boolean | Graphic | |
![]() | precisionHitTestDistance : Number | Graphic | |
![]() | requiresRedraw : Boolean [read-only] Indicates if the object needs to be redrawn in the upcoming frame, i.e. | DisplayObject | |
![]() | root : DisplayObject [read-only] The root object the display object is connected to (i.e. | DisplayObject | |
![]() | rotation : Number The rotation of the object in radians. | DisplayObject | |
![]() | scale : Number Sets both 'scaleX' and 'scaleY' to the same value. | DisplayObject | |
![]() | scaleX : Number The horizontal scale factor. | DisplayObject | |
![]() | scaleY : Number The vertical scale factor. | DisplayObject | |
![]() | skewX : Number The horizontal skew angle in radians. | DisplayObject | |
![]() | skewY : Number The vertical skew angle in radians. | DisplayObject | |
![]() | stage : Stage [read-only] The stage the display object is connected to, or null if it is not connected
to the stage. | DisplayObject | |
topLeftRadius : Number | RoundedRectangle | ||
topRightRadius : Number | RoundedRectangle | ||
![]() | touchable : Boolean Indicates if this object (and its children) will receive touch events. | DisplayObject | |
![]() | transformationMatrix : Matrix The transformation matrix of the object relative to its parent. | DisplayObject | |
![]() | transformationMatrix3D : Matrix3D [read-only] The 3D transformation matrix of the object relative to its parent. | DisplayObject | |
![]() | useHandCursor : Boolean Indicates if the mouse cursor should transform into a hand while it's over the sprite. | DisplayObject | |
![]() | uvMatrix : Matrix | Graphic | |
![]() | visible : Boolean The visibility of the object. | DisplayObject | |
width : Number [override] | RoundedRectangle | ||
![]() | x : Number The x coordinate of the object relative to the local coordinates of the parent. | DisplayObject | |
![]() | y : Number The y coordinate of the object relative to the local coordinates of the parent. | DisplayObject |
Method | Defined By | ||
---|---|---|---|
RoundedRectangle(width:Number = 100, height:Number = 100, topLeftRadius:Number = 10, topRightRadius:Number = 10, bottomLeftRadius:Number = 10, bottomRightRadius:Number = 10) | RoundedRectangle | ||
![]() | addEventListener(type:String, listener:Function):void [override] Registers an event listener at a certain object. | DisplayObject | |
![]() | alignPivot(horizontalAlign:String = center, verticalAlign:String = center):void Moves the pivot point to a certain position within the local coordinate system
of the object. | DisplayObject | |
![]() | dispatchEvent(event:Event):void Dispatches an event to all objects that have registered listeners for its type. | EventDispatcher | |
![]() | dispatchEventWith(type:String, bubbles:Boolean = false, data:Object = null):void Dispatches an event with the given parameters to all objects that have registered
listeners for the given type. | EventDispatcher | |
![]() | dispose():void [override] | Graphic | |
![]() | drawToBitmapData(out:BitmapData = null, color:uint = 0x0, alpha:Number = 0.0):BitmapData Draws the object into a BitmapData object. | DisplayObject | |
![]() | getBounds(targetSpace:DisplayObject, resultRect:Rectangle = null):Rectangle [override] | Graphic | |
getStrokePoints():Vector.<Number> | RoundedRectangle | ||
![]() | getTransformationMatrix(targetSpace:DisplayObject, out:Matrix = null):Matrix Creates a matrix that represents the transformation from the local coordinate system
to another. | DisplayObject | |
![]() | getTransformationMatrix3D(targetSpace:DisplayObject, out:Matrix3D = null):Matrix3D Creates a matrix that represents the transformation from the local coordinate system
to another. | DisplayObject | |
![]() | globalToLocal(globalPoint:Point, out:Point = null):Point Transforms a point from global (stage) coordinates to the local coordinate system. | DisplayObject | |
![]() | globalToLocal3D(globalPoint:Point, out:Vector3D = null):Vector3D Transforms a point from global (stage) coordinates to the 3D local coordinate system. | DisplayObject | |
![]() | hasEventListener(type:String, listener:Function = null):Boolean If called with one argument, figures out if there are any listeners registered for
the given event type. | EventDispatcher | |
![]() | hitTest(localPoint:Point):DisplayObject [override] Returns the object that is found topmost beneath a point in local coordinates, or nil if
the test fails. | Graphic | |
![]() | hitTestMask(localPoint:Point):Boolean Checks if a certain point is inside the display object's mask. | DisplayObject | |
![]() | local3DToGlobal(localPoint:Vector3D, out:Point = null):Point Transforms a 3D point from the local coordinate system to global (stage) coordinates. | DisplayObject | |
![]() | localToGlobal(localPoint:Point, out:Point = null):Point Transforms a point from the local coordinate system to global (stage) coordinates. | DisplayObject | |
![]() | removeEventListener(type:String, listener:Function):void [override] Removes an event listener from the object. | DisplayObject | |
![]() | removeEventListeners(type:String = null):void [override] Removes all event listeners with a certain type, or all of them if type is null. | DisplayObject | |
![]() | removeFromParent(dispose:Boolean = false):void Removes the object from its parent, if it has one, and optionally disposes it. | DisplayObject | |
![]() | [override] | Graphic | |
![]() | setRequiresRedraw():void Forces the object to be redrawn in the next frame. | DisplayObject | |
![]() | shapeHitTest(stageX:Number, stageY:Number):Boolean | Graphic | |
![]() | validateNow():void | Graphic |
Method | Defined By | ||
---|---|---|---|
![]() | applyUVMatrix():void | Graphic | |
buildGeometry():void [override] | RoundedRectangle | ||
![]() | onGraphicLostContext():void | Graphic | |
![]() | setGeometryInvalid():void | Graphic | |
![]() | shapeHitTestLocalInternal(localX:Number, localY:Number):Boolean | Graphic |
bottomLeftRadius | property |
bottomLeftRadius:Number
public function get bottomLeftRadius():Number
public function set bottomLeftRadius(value:Number):void
bottomRightRadius | property |
bottomRightRadius:Number
public function get bottomRightRadius():Number
public function set bottomRightRadius(value:Number):void
cornerRadius | property |
cornerRadius:Number
public function get cornerRadius():Number
public function set cornerRadius(value:Number):void
height | property |
height:Number
[override] public function get height():Number
public function set height(value:Number):void
topLeftRadius | property |
topLeftRadius:Number
public function get topLeftRadius():Number
public function set topLeftRadius(value:Number):void
topRightRadius | property |
topRightRadius:Number
public function get topRightRadius():Number
public function set topRightRadius(value:Number):void
width | property |
width:Number
[override] public function get width():Number
public function set width(value:Number):void
RoundedRectangle | () | Constructor |
public function RoundedRectangle(width:Number = 100, height:Number = 100, topLeftRadius:Number = 10, topRightRadius:Number = 10, bottomLeftRadius:Number = 10, bottomRightRadius:Number = 10)
width:Number (default = 100 )
| |
height:Number (default = 100 )
| |
topLeftRadius:Number (default = 10 )
| |
topRightRadius:Number (default = 10 )
| |
bottomLeftRadius:Number (default = 10 )
| |
bottomRightRadius:Number (default = 10 )
|
buildGeometry | () | method |
override protected function buildGeometry():void
getStrokePoints | () | method |
public function getStrokePoints():Vector.<Number>
ReturnsVector.<Number> |