| Package | com.somerandomdude.coordy.nodes.twodee |
| Class | public final class FlowNode |
| Inheritance | FlowNode Node2d Node |
| Implements | INode2d |
| Property | Defined by | ||
|---|---|---|---|
![]() | jitterX : Number
Mutator/accessor for node's x jitter value
| Node2d | |
![]() | jitterY : Number
Mutator/accessor for node's y jitter value
| Node2d | |
![]() | link : Object
Mutator/accessor for the node's DisplayObject link
| Node | |
| outsideBounds : Boolean
Property as to whether node's position exists outside of the layouts current bounds
| FlowNode | ||
![]() | rotation : Number
Mutator/accessor for node's rotational value
| Node2d | |
![]() | x : Number
Mutator/accessor for node's x position
| Node2d | |
![]() | y : Number
Mutator/accessor for node's y position
| Node2d | |
| Method | Defined by | ||
|---|---|---|---|
|
FlowNode(link:Object = null, x:Number = 0, y:Number = 0)
Node used for Flow layout
| FlowNode | ||
|
Creates an exact copy of node with link and position properties carried over
| FlowNode | ||
![]() |
toObject():Object
Packages the node as a generic object - mainly used for exporting layout data.
| Node2d | |
| outsideBounds | property |
outsideBounds:Boolean [read-write]Property as to whether node's position exists outside of the layouts current bounds
Implementation public function get outsideBounds():Boolean
public function set outsideBounds(value:Boolean):void
| FlowNode | () | constructor |
public function FlowNode(link:Object = null, x:Number = 0, y:Number = 0)Node used for Flow layout
Parameterslink:Object (default = null) — The node's target DisplayObject
|
|
x:Number (default = 0) — Node's x position
|
|
y:Number (default = 0) — Node's y position
|
See also
| clone | () | method |
public override function clone():INode2dCreates an exact copy of node with link and position properties carried over
ReturnsINode2d —
Cloned node
|