Skip to content

Commit

Permalink
Update fileiostructs.py (#936)
Browse files Browse the repository at this point in the history
Co-authored-by: pyansys-ci-bot <[email protected]>
  • Loading branch information
srpyprime and pyansys-ci-bot authored Nov 15, 2024
1 parent 793df24 commit d7b96cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions doc/changelog.d/936.documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update fileiostructs.py
16 changes: 11 additions & 5 deletions src/ansys/meshing/prime/autogen/fileiostructs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit d7b96cd

Please sign in to comment.