API Docs for: 0.3.0
Show:

Graphic.Rect Class

Extends Graphic.Shape
Module: Graphic

a Rect defined by it's x, y, width and height properties.

Constructor

Graphic.Rect

(
  • [params]
)

Parameters:

  • [params] Object optional

    params is given to Shape constructor.

Methods

draw

(
  • context
)

Inherited from Graphic.GraphicObject but overwritten in modules/Graphic/Rect.js:27

This overridden draw method allow the Rect class to draw a rectangle on the context given in parameter.

Parameters:

  • context CanvasRenderingContext2D

notifyParentChange

() protected

This method notify the parent that a change has been done, and that it should clear his cache.

rotate

(
  • angle
)
chainable

This method allow you to rotate the Graphical object around the center point of the GraphicalObject.

Parameters:

  • angle Number

    represent the angle of rotation, it's expressed in degree.

scale

(
  • x
  • y
)
chainable

this method allow you to do a scale on the GraphicObject.

Parameters:

  • x Number

    this is the x scale factor

  • y Number

    this is the y scale factor

setAttr

(
  • attrs
)
chainable

Setter availlable for updating attibuts and correctly clear the caches. You can set all attributes supported by this instance (see the GraphicObject constructor for common available properties)

Parameters:

  • attrs Object

    GraphicObject attributs. See the constructor for more details.

Example:

 object.setAttr({
     width: 20,
     height: 20
 });

 object.setAttr({
     pos: {
         x: 0,
         y: 0
     }
 });

skew

(
  • a
  • b
)
chainable

This method allow you to do a skew transform on the GraphicObject.

Parameters:

  • a Number

    the factor of skew on the y axis

  • b Number

    the factor of skew on the x axis

translate

(
  • x
  • y
)
chainable

This method allow you to translate the GraphicalObject, Internally this method modify the GraphicObject's matrix.

Parameters:

  • x Number

    this is the translation scalar of the x axis.

  • y Number

    this is the translation scalar of the y axis.

Properties

alpha

Number

value of opacity, between 0.0 (fully transparent) and 1.0 (opaque)

centerPoint

Object

default center of all matrix transformations.

values are exprimed depending on the size of the object. 0;0 is the up-left corner.

Sub-properties:

  • x Object
  • y Object

color

fill color to draw this object.

Note: should be modified with setAttr

matrix

Matrix

matrix applied to this object before draw.

mode

"WIRED" | "FILLED"

the draw mode of the current shape. Two modes are available "WIRED" and "FILLED".

Note: should be modified with setAttr

parent

Layer

parent containing this object.

strokeColor

color to apply to the stroke mode

Note: should be modified with setAttr

x

Number

position on X axis

y

Number

position on Y axis

zIndex

Number

zIndex, used to determine the drawing order. Hight zIndex are drawn first.