mirror of https://github.com/KLayout/klayout.git
regenerating stubs and DRC/LVS doc.
This commit is contained in:
parent
ec2de288b4
commit
529d69c901
|
|
@ -481,6 +481,13 @@ outside:
|
|||
out = in.drc(primary.edges(convex))
|
||||
</pre>
|
||||
</p><p>
|
||||
In addition, "not_.." variants are available which selects edges
|
||||
not qualifying for the specific mode:
|
||||
</p><p>
|
||||
<pre>
|
||||
out = in.drc(primary.edges(not_convex))
|
||||
</pre>
|
||||
</p><p>
|
||||
The mode argument is ignored when translating other objects than
|
||||
polygons.
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -808,7 +808,14 @@ outside:
|
|||
out = in.edges(convex)
|
||||
</pre>
|
||||
</p><p>
|
||||
This feature is only available for polygon layers.
|
||||
In addition, "not_.." variants are available which selects edges
|
||||
not qualifying for the specific mode:
|
||||
</p><p>
|
||||
<pre>
|
||||
out = in.edges(not_convex)
|
||||
</pre>
|
||||
</p><p>
|
||||
The mode argument is only available for polygon layers.
|
||||
</p><p>
|
||||
The following images show the effect of the mode argument:
|
||||
</p><p>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -4994,12 +4994,12 @@ class LayoutViewBase:
|
|||
@overload
|
||||
def __eq__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares an enum with an integer value
|
||||
@brief Compares two enums
|
||||
"""
|
||||
@overload
|
||||
def __eq__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares two enums
|
||||
@brief Compares an enum with an integer value
|
||||
"""
|
||||
def __hash__(self) -> int:
|
||||
r"""
|
||||
|
|
@ -5032,12 +5032,12 @@ class LayoutViewBase:
|
|||
@overload
|
||||
def __ne__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares an enum with an integer for inequality
|
||||
@brief Compares two enums for inequality
|
||||
"""
|
||||
@overload
|
||||
def __ne__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares two enums for inequality
|
||||
@brief Compares an enum with an integer for inequality
|
||||
"""
|
||||
def __repr__(self) -> str:
|
||||
r"""
|
||||
|
|
@ -7230,12 +7230,12 @@ class Macro:
|
|||
@overload
|
||||
def __eq__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares an enum with an integer value
|
||||
@brief Compares two enums
|
||||
"""
|
||||
@overload
|
||||
def __eq__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares two enums
|
||||
@brief Compares an enum with an integer value
|
||||
"""
|
||||
def __hash__(self) -> int:
|
||||
r"""
|
||||
|
|
@ -7268,12 +7268,12 @@ class Macro:
|
|||
@overload
|
||||
def __ne__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares two enums for inequality
|
||||
@brief Compares an enum with an integer for inequality
|
||||
"""
|
||||
@overload
|
||||
def __ne__(self, other: object) -> bool:
|
||||
r"""
|
||||
@brief Compares an enum with an integer for inequality
|
||||
@brief Compares two enums for inequality
|
||||
"""
|
||||
def __repr__(self) -> str:
|
||||
r"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue