dbCompressPointArray
dbCompressPointArray(l_pointArray x_isClosed[f_DBUPerUU] ) =>l_newPointArray
Description
Compresses collinear points in a list of points.
Arguments
|
Either |
|
|
Number of database units in one user unit. The default is |
Value Returned
Examples
l1 = list((0:0) (0:1) (0:2) (0:3))
l2 = dbCompressPointArray(l1 nil)
=> ((0:0) (0:3))
Related Topics
Return to top