diff --git a/src/lay/lay/doc/about/drc_ref_layer.xml b/src/lay/lay/doc/about/drc_ref_layer.xml index f2a1d8043..439fb74bd 100644 --- a/src/lay/lay/doc/about/drc_ref_layer.xml +++ b/src/lay/lay/doc/about/drc_ref_layer.xml @@ -96,6 +96,27 @@ polygons will be written to the output (labels: red, input2: blue):
+Usage:
++This method returns a two-element array containing one layer for the +AND result and one for the NOT result. +
+This method is available for polygon layers. +
+It can be used to initialize two variables with the AND and NOT results: +
+
+(and_result, not_result) = l1.andnot(l2) ++
+As the AND and NOT results are computed in the same sweep, calling this +method is faster than calling AND and NOT separately. +
Usage: