geIsPathReentrant
geIsPathReentrant(d_cellview l_points n_width[t_style] [n_beginExt] [n_endExt] ) => t / nil
Description
Determines whether a path is self-intersecting.
In a self-intersecting path, one part of the path overlaps another part of the path. The system calculates the outline of the path using the other arguments.
Arguments
|
String defining an optional path style. If no style is given, the default is truncateExtend. |
|
Value Returned
Examples
The following example returns t.
geIsPathReentrant( geGetEditCellView( ) list( 0:0 10:10 0:10 10:0 ) 3.0 "truncateExtend" 1.0 0 )
The following example returns nil.
geIsPathReentrant( geGetEditCellView( ) list( 0:0 10:10 0:10 3.0 )
Related Topics
Return to top