dbLayerAnd
dbLayerAnd(d_cellViewId t_layerName l_dbIdList1 l_dbIdList2[x_numVertices] [g_mfgGrid]) =>l_dbIdList
Description
Returns a list of objects derived from the overlap of objects on the input lists. This function generates the areas common to both input lists. The resulting objects are created in the specified layer and cellview.
Arguments
|
Target vertex count of output objects. If you do not specify this number, the default vertex count (195) is used. |
|
Value Returned
|
List of objects derived from the overlap of objects on the input lists. |
Examples
Finds the overlap of objects in list1 and list2 and creates the results in layer "metal3" in cellview cvId. The list of output objects is also returned in m3Out.
list1 = geGetSelSet(cvId1)
list2 = geGetSelSet(cvId2)
m3Out = dbLayerAnd(cvId "metal3" list1 list2)
Related Topics
Return to top