| IPathSegment | 
The ‘IPathSegment’ interface defines a common interface for all path segment objects.
| IPathSegment | The ‘IPathSegment’ interface defines a common interface for all path segment objects. | 
| Properties | |
| start | Gets the starting point of the path segment. | 
| end | Gets the end point of the path segment. | 
| control | Gets the control point of the path segment. | 
| Functions | |
| draw | Uses the data stored by this object to draw it into the specified graphics object. | 
| clone | Clones this object. | 
Gets the starting point of the path segment.
function get start():Point 
Gets the end point of the path segment.
function get end():Point 
Gets the control point of the path segment.
function get control():Point 
Uses the data stored by this object to draw it into the specified graphics object.
function draw( objGraphics: Graphics ):void 
Clones this object.
function clone():IPathSegment