dbPointArrayAnd
dbPointArrayAnd(d_cellViewId l_pointList1 l_pointList2[x_maxPoints])=>l_pointList/ nil
Description
Returns a list of point lists derived from the overlap of shapes in the two input point lists. This function generates the areas common to both the input lists. The resulting point list is created in the specified cellview.
Arguments
|
Maximum number of points each point array in the output point list can contain. |
Value Returned
|
List of point lists derived from the overlap of shapes in the input lists. |
Examples
pointArray1 = '( ((0 0 ) (0 2) (2 2) (2 0)) ((5 5) (5 7) (7 7) (7 5)) )
pointArray2 = '( ((1 1) (1 6) (6 6) (6 1)) )
dbPointArrayAnd( geGetEditCellView() pointArray1 pointArray2)
Related Topics
Return to top