From d7b96cd3734a639964f8a847fd658a4b2a9aac15 Mon Sep 17 00:00:00 2001 From: srpyprime <94401560+srpyprime@users.noreply.github.com> Date: Fri, 15 Nov 2024 16:06:51 +0530 Subject: [PATCH] Update fileiostructs.py (#936) Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- doc/changelog.d/936.documentation.md | 1 + src/ansys/meshing/prime/autogen/fileiostructs.py | 16 +++++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 doc/changelog.d/936.documentation.md diff --git a/doc/changelog.d/936.documentation.md b/doc/changelog.d/936.documentation.md new file mode 100644 index 0000000000..0efaf23535 --- /dev/null +++ b/doc/changelog.d/936.documentation.md @@ -0,0 +1 @@ +Update fileiostructs.py \ No newline at end of file diff --git a/src/ansys/meshing/prime/autogen/fileiostructs.py b/src/ansys/meshing/prime/autogen/fileiostructs.py index 8bf64f2e40..5a81035b69 100644 --- a/src/ansys/meshing/prime/autogen/fileiostructs.py +++ b/src/ansys/meshing/prime/autogen/fileiostructs.py @@ -78,7 +78,9 @@ class CadFaceter(enum.IntEnum): """Types of CAD faceter. """ ACIS = 0 - """Denotes CAD faceter is Acis.""" + """Denotes CAD faceter is Acis. + + Note: ACIS faceter is being deprecated from 2025R1.""" PARASOLID = 1 """Denotes CAD faceter is Parasolid.""" @@ -1306,7 +1308,8 @@ class CadRefacetingParams(CoreObject): model: Model Model to create a ``CadRefacetingParams`` object with default parameters. cad_faceter: CadFaceter, optional - Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1). + Specify the available choices for faceter. The available option is Parasolid. + Note: ACIS faceter is being deprecated from 2025R1. faceting_resolution: CadRefacetingResolution, optional Set the faceting resolution. custom_surface_deviation_tolerance: float, optional @@ -1359,7 +1362,8 @@ def __init__( model: Model Model to create a ``CadRefacetingParams`` object with default parameters. cad_faceter: CadFaceter, optional - Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1). + Specify the available choices for faceter. The available option is Parasolid. + Note: ACIS faceter is being deprecated from 2025R1. faceting_resolution: CadRefacetingResolution, optional Set the faceting resolution. custom_surface_deviation_tolerance: float, optional @@ -1428,7 +1432,8 @@ def set_default( Parameters ---------- cad_faceter: CadFaceter, optional - Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1). + Specify the available choices for faceter. The available option is Parasolid. + Note: ACIS faceter is being deprecated from 2025R1. faceting_resolution: CadRefacetingResolution, optional Set the faceting resolution. custom_surface_deviation_tolerance: float, optional @@ -1479,7 +1484,8 @@ def __str__(self) -> str: @property def cad_faceter(self) -> CadFaceter: - """Specify the available choices for faceter. The available option is Parasolid. (Note: ACIS faceter is being deprecated from 25R1). + """Specify the available choices for faceter. The available option is Parasolid. + Note: ACIS faceter is being deprecated from 2025R1. """ return self._cad_faceter