|
The plus sign "+" indicates the UNION operation also known as OR and also known as adding
two layers together. This operation can be performed on a single source layer in which case
any touching or overlapping polygons are combined.
It is also possible to unionize multiple input layers. In this case all polygons are combined
and the results are output on a single target layer.
Example 1
boolw32f in.gds out.gds TOP 3 +5
This reads the in.gds file and unionizes layer 5. The results are written to out.gds on
layer 3.
Example 2
boolw32f in.gds out.gds TOP 3 +5,9,22
This reads the in.gds file and unionizes layers 5, 9 and 22. The results are written to out.gds on
layer 3.
|