PIXI. RoundedRectangle

new RoundedRectangle(x, y, width, height, radius)

The Rounded Rectangle object is an area defined by its position and has nice rounded corners, as indicated by its top-left corner point (x, y) and by its width and its height.

Parameters:
Name Type Description
x Number

The X coordinate of the upper-left corner of the rounded rectangle

y Number

The Y coordinate of the upper-left corner of the rounded rectangle

width Number

The overall width of this rounded rectangle

height Number

The overall height of this rounded rectangle

radius Number

Controls the radius of the rounded corners

Source - pixi/geom/RoundedRectangle.js, line 5

Members

height :Number

Default Value:
  • 0
Source - pixi/geom/RoundedRectangle.js, line 39

radius :Number

Default Value:
  • 20
Source - pixi/geom/RoundedRectangle.js, line 46

type :Number

The type of the object, should be one of the Graphics type consts, PIXI.Graphics.RRECT in this case

Default Value:
  • 0
Source - pixi/geom/RoundedRectangle.js, line 53

width :Number

Default Value:
  • 0
Source - pixi/geom/RoundedRectangle.js, line 32

x :Number

Default Value:
  • 0
Source - pixi/geom/RoundedRectangle.js, line 18

y :Number

Default Value:
  • 0
Source - pixi/geom/RoundedRectangle.js, line 25

Methods

clone() → {PIXI.RoundedRectangle}

Creates a clone of this Rounded Rectangle

Returns:

a copy of the rounded rectangle

Source - pixi/geom/RoundedRectangle.js, line 61

contains(x, y) → {Boolean}

Checks whether the x and y coordinates given are contained within this Rounded Rectangle

Parameters:
Name Type Description
x Number

The X coordinate of the point to test

y Number

The Y coordinate of the point to test

Returns:
Boolean -

Whether the x/y coordinates are within this Rounded Rectangle

Source - pixi/geom/RoundedRectangle.js, line 72
Phaser Copyright © 2012-2014 Photon Storm Ltd.
Documentation generated by JSDoc 3.3.0-dev on Tue Jan 06 2015 06:32:41 GMT-0000 (GMT) using the DocStrap template.