Extending Flash |
|
|
|
| Objects > HalfEdge object > halfEdge.getNext() | |||
Flash MX 2004.
halfEdge.getNext()
None.
A HalfEdge object.
Method; gets the next half edge on the current contour.
|
NOTE |
Although half edges have a direction and a sequence order, edges do not. |
The following example stores the next half edge of the specified contour in the nextHalfEdge variable:
var shape = fl.getDocumentDOM().selection[0]; var hEdge = shape.edges[0].getHalfEdge( 0 ); var nextHalfEdge = hEdge.getNext();
|
|
|
|