Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 544 Bytes

File metadata and controls

23 lines (13 loc) · 544 Bytes

shape.contours

Availability

Flash MX 2004.

Usage

shape.contours

Description

Read-only property; an array of Contour objects for the shape (see Contour object).

Example

The following example stores the first contour in the contours array in the c variable and then stores the HalfEdge object of that contour in the he variable:

var c = fl.getDocumentDOM().selection[0].contours[0]; 
var he = c.getHalfEdge();