| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/contourpy/ |
Upload File : |
from __future__ import annotations
from contourpy._contourpy import FillType, LineType, ZInterp
def as_fill_type(fill_type: FillType | str) -> FillType:
"""Coerce a FillType or string value to a FillType.
Args:
fill_type (FillType or str): Value to convert.
Return:
FillType: Converted value.
"""
if isinstance(fill_type, str):
return FillType.__members__[fill_type]
else:
return fill_type
def as_line_type(line_type: LineType | str) -> LineType:
"""Coerce a LineType or string value to a LineType.
Args:
line_type (LineType or str): Value to convert.
Return:
LineType: Converted value.
"""
if isinstance(line_type, str):
return LineType.__members__[line_type]
else:
return line_type
def as_z_interp(z_interp: ZInterp | str) -> ZInterp:
"""Coerce a ZInterp or string value to a ZInterp.
Args:
z_interp (ZInterp or str): Value to convert.
Return:
ZInterp: Converted value.
"""
if isinstance(z_interp, str):
return ZInterp.__members__[z_interp]
else:
return z_interp