pcFilterPoints
pcFilterPoints(l_pointList) =>l_pointList/nil
Description
Determines whether the specified list of coordinates represents a manhattan shape.
Arguments
|
List of coordinates in one of the following formats:
|
Value Returned
|
Returns the list of coordinates when it represents a manhattan shape. |
|
|
Returned if the list of coordinates does not represent a manhattan shape or the function did not complete successfully. |
Examples
pcFilterPoints( list( '( 0 0 ) '( 0 5 ) '( 5 5 ) '( 5 1 ) '( 7 1 ) '( 7 0 ) ) => ((0 0) (0 5) (5 5) (5 1) (7 1) (7 0))
The list of coordinates does represent a manhattan shape.
Return to top