Package | away3d.core.draw |
Class | public class PrimitiveArray |
Implements | IPrimitiveConsumer |
Property | Defined by | ||
---|---|---|---|
blockers : Array [write-only]
Defines the array of blocker primitives to be used on the drawing primitives.
| PrimitiveArray | ||
clip : Clipping
[write-only]
Defines the clipping object to be used on the drawing primitives.
| PrimitiveArray |
Method | Defined by | ||
---|---|---|---|
list():Array
A list of primitives that have been clipped and blocked.
| PrimitiveArray | ||
Adds a drawing primitive to the primitive consumer
| PrimitiveArray |
blockers | property |
blockers:Array
[write-only]Defines the array of blocker primitives to be used on the drawing primitives.
Implementation public function set blockers(value:Array):void
clip | property |
clip:Clipping
[write-only]Defines the clipping object to be used on the drawing primitives.
Implementation public function set clip(value:Clipping):void
list | () | method |
public function list():Array
A list of primitives that have been clipped and blocked.
ReturnsArray — An array containing the primitives to be rendered.
|
primitive | () | method |
public function primitive(pri:DrawPrimitive):void
Adds a drawing primitive to the primitive consumer
Parameterspri:DrawPrimitive — The drawing primitive to add.
|