geCompressPointArray
geCompressPointArray(d_cellview l_points g_closedList) =>l_pointList/ nil
Description
Searches a point list in a cellview for collinear points and deletes the intermediate collinear points.
Arguments
|
Either |
Value Returned
|
A list of coordinates representing the compressed point array. |
|
Examples
Deletes the vertex at the point 10:0 from the closed list in the cellview returned by geGetEditCellView.
geCompressPointArray( geGetEditCellView( ) list(0:0 10:0 20:0 20:20 0:20 0:0) t )
=> ((0.0 0.0)(20.0 0.0)(20.0 20.0)(0.0 20.0))
Related Topics
Return to top