regenerating stubs and DRC/LVS doc.

This commit is contained in:
Matthias Koefferlein 2024-03-28 22:11:47 +01:00
parent ec2de288b4
commit 529d69c901
4 changed files with 2934 additions and 118 deletions

View File

@ -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>

View File

@ -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

View File

@ -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"""