Class: Renderable

Renderable()

Represents a shape or other object that can be rendered. This is an abstract class and is not meant to be instantiated directly.

Constructor

new Renderable()

Constructs a base renderable.
Source:

Members

displayName :String

The display name of the renderable.
Type:
  • String
Default Value:
  • "Renderable"
Source:

enabled :Boolean

Indicates whether to display this renderable.
Type:
  • Boolean
Default Value:
  • true
Source:

pickDelegate :Object

Indicates the object to return as the userObject of this shape when picked. If null, then this shape is returned as the userObject.
Type:
  • Object
Default Value:
  • null
Source:
See:

userProperties :Object

An application defined object associated with this renderable. A typical use case is to associate application defined data with a picked renderable.
Type:
  • Object
Default Value:
  • An empty object
Source:

Methods

render(dc)

Render this renderable. Some shapes actually draw themselves during this call, others only add themselves to the draw context's ordered rendering list for subsequent drawing when their renderOrdered method is called. This method is intended to be called by layers such as RenderableLayer and not by applications.
Parameters:
Name Type Description
dc DrawContext The current draw context.
Source: